Questions

How to concatenate text from multiple rows into a single text string in SQL Server

Consider a database table holding names, with three rows: ``` Peter Paul Mary ``` Is there an easy way to turn this into a single string of `Peter, Paul, Mary`?

How to replace a character by a newline in Vim

I'm trying to replace each `,` in the current file by a new line: ``` :%s/,/\n/g ``` But it inserts what looks like a `^@` instead of an actual newline. The file is not in DOS mode or anything. Wh...

12 Apr at 13:18

"implements Runnable" vs "extends Thread" in Java

From what time I've spent with threads in `Java`, I've found these two ways to write threads: With `Runnable` ``` public class MyRunnable implements Runnable { public void run() { //Code ...

Importing files from different folder

I have this folder structure: ``` application ├── app │   └── folder │   └── file.py └── app2 └── some_folder └── some_file.py ``` How can I import a function from `file.py`, from wit...

28 Aug at 02:26

PostgreSQL: Show tables in PostgreSQL

What's the equivalent to `show tables` (from MySQL) in PostgreSQL?

31 May at 14:55

Iterate through object properties

``` var obj = { name: "Simon", age: "20", clothing: { style: "simple", hipster: false } } for(var propt in obj){ console.log(propt + ': ' + obj[propt]); } ``` H...

13 Mar at 10:58

What is the copy-and-swap idiom?

What is the copy-and-swap idiom and when should it be used? What problems does it solve? Does it change for C++11? Related: - [What are your favorite C++ Coding Style idioms: Copy-swap](https://stacko...

Showing which files have changed between two revisions

I want to merge two branches that have been separated for a while and wanted to know which files have been modified. Came across this link: [http://linux.yyz.us/git-howto.html](https://web.archive.org...

28 Dec at 17:17

How do I set a variable to the output of a command in Bash?

I have a pretty simple script that is something like the following: ``` #!/bin/bash VAR1="$1" MOREF='sudo run command against $VAR1 | grep name | cut -c7-' echo $MOREF ``` When I run this script ...

11 Apr at 11:54

How do I escape curly-brace ({}) characters in a string while using .format (or an f-string)?

Non-working example: ``` print(" \{ Hello \} {0} ".format(42)) ``` Desired output: ``` {Hello} 42 ```

JavaScript check if variable exists (is defined/initialized)

Which method of checking if a variable has been initialized is better/correct? (Assuming the variable could hold anything (string, int, object, function, etc.)) ``` if (elem) { // or !elem ``` or ```...

How do you parse and process HTML/XML in PHP?

How can one parse HTML/XML and extract information from it?

24 Dec at 15:45

What is a JavaBean exactly?

I understood, I think, that a "Bean" is a Java-class with properties and getters/setters. As much as I understand, it is the equivalent of a C `struct`. Is that true? Also, is there a real differenc...

Vim clear last search highlighting

After doing a search in Vim, I get all the occurrences highlighted. How can I disable that? I now do another search for something gibberish that can't be found. Is there a way to just temporarily di...

8 Jun at 20:42

What is the best way to give a C# auto-property an initial value?

How do you give a C# auto-property an initial value? I either use the constructor, or revert to the old syntax. ``` class Person { public Person() { Name = "Initial Name"; } ...

Get int value from enum in C#

I have a class called `Questions` (plural). In this class there is an enum called `Question` (singular) which looks like this. ``` public enum Question { Role = 2, ProjectFunding = 3, Tot...

20 Feb at 10:42

How to write a switch statement in Ruby

How do I write a `switch` statement in Ruby?

Limiting floats to two decimal points

I want `a` to be rounded to . I tried using [round](https://docs.python.org/2/library/functions.html#round), but I get: ``` >>> a 13.949999999999999 >>> round(a, 2) 13.949999999999999 ``` --- [How...

Are double and single quotes interchangeable in JavaScript?

Consider the following two alternatives: - `console.log("double");`- `console.log('single');` The former uses double quotes around the string, whereas the latter uses single quotes around the string. ...

27 Jan at 05:37

How to convert a string to an integer in JavaScript

How do I convert a string to an integer in JavaScript?

How to exit in Node.js

What is the command that is used to exit? (i.e terminate the Node.js process)

14 Aug at 03:9

Remove duplicate values from JS array

I have a very simple JavaScript array that may or may not contain duplicates. ``` var names = ["Mike","Matt","Nancy","Adam","Jenny","Nancy","Carl"]; ``` I need to remove the duplicates and put the un...

What is 'Context' on Android?

In Android programming, what exactly is a `Context` class and what is it used for? I read about it on the [developer site](https://d.android.com/reference/android/content/Context), but I am unable to...

4 Nov at 11:11

How do I get the number of elements in a list (length of a list) in Python?

How do I get the number of elements in the list `items`? ``` items = ["apple", "orange", "banana"] # There are 3 items. ```

13 Oct at 18:5

Interfaces vs Types in TypeScript

What is the difference between these statements (`interface` vs `type`) in TypeScript? ``` interface X { a: number b: string } type X = { a: number b: string }; ```