Questions

How to implement custom JsonConverter in JSON.NET?

I am trying to extend the JSON.net example given here [http://james.newtonking.com/projects/json/help/CustomCreationConverter.html](http://james.newtonking.com/projects/json/help/CustomCreationConver...

3 Sep at 11:0

How do I drop a foreign key constraint only if it exists in sql server?

I can drop a table if it exists using the following code but do not know how to do the same with a constraint: ``` IF EXISTS(SELECT 1 FROM sys.objects WHERE OBJECT_ID = OBJECT_ID(N'TableName') AND ty...

1 Feb at 03:38

What's the difference between git reset --mixed, --soft, and --hard?

I'm looking to split a commit up and not sure which reset option to use. I was looking at the page [In plain English, what does "git reset" do?](https://stackoverflow.com/questions/2530060/can-you-ex...

18 Mar at 10:2

What is the difference between git clone and checkout?

What is the difference between `git clone` and `git checkout`?

13 Sep at 03:15

How to link an image and target a new window

I have a picture, if I click onto that picture, how can I build an image reference so another page opens in a new tab or a new window of my browser displaying the picture?

3 Aug at 07:1

Detecting Enter keypress on VB.NET

I am using .NET 3.5 framework of VB.NET 2008. I have some textboxes in my form. I want the tab-like behavior when my user presses ENTER on one of my textboxes. I used the following code: ``` Private...

23 Aug at 02:22

Convert Dictionary to JSON in Swift

I have create the next Dictionary: ``` var postJSON = [ids[0]:answersArray[0], ids[1]:answersArray[1], ids[2]:answersArray[2]] as Dictionary ``` and I get: ``` [2: B, 1: A, 3: C] ``` So, how can...

17 Oct at 11:32

How to convert rdd object to dataframe in spark

How can I convert an RDD (`org.apache.spark.rdd.RDD[org.apache.spark.sql.Row]`) to a Dataframe `org.apache.spark.sql.DataFrame`. I converted a dataframe to rdd using `.rdd`. After processing it I want...

Overriding interface property type defined in Typescript d.ts file

Is there a way to change the type of interface property defined in a `*.d.ts` in typescript? for example: An interface in `x.d.ts` is defined as ``` interface A { property: number; } ``` I wan...

Rotating axis labels in R

How do I make a (bar) plot's y axis labels parallel to the X axis instead of parallel to the Y axis?

18 Oct at 08:30

JSON.parse unexpected character error

I get this error: > JSON.parse: unexpected character when I run this statement in firebug: ``` JSON.parse({"balance":0,"count":0,"time":1323973673061,"firstname":"howard","userId":5383,"localid":1,...

11 Jul at 09:18

How can I align one item right with flexbox?

[https://jsfiddle.net/vhem8scs/](https://jsfiddle.net/vhem8scs/) Is it possible to have two items align left and one item align right with flexbox? The link shows it more clearly. The last example is...

2 Mar at 14:57

How do I check if the mouse is over an element in jQuery?

Is there a quick & easy way to do this in jQuery that I'm missing? I don't want to use the mouseover event because I'm already using it for something else. I just need to know if the mouse is over a...

13 Aug at 18:2

Form Validation With Bootstrap (jQuery)

Can someone please help me with this code? I am using bootstrap for the form and trying to validate it with jQuery. Unfortunately, the form validation isn't telling me what I'm doing wrong. I got the ...

Is it possible to have placeholders in strings.xml for runtime values?

Is it possible to have placeholders in string values in `string.xml` that can be assigned values at run time? Example: > some string some more string

Remove all elements contained in another array

I am looking for an efficient way to remove all elements from a javascript array if they are present in another array. ``` // If I have this array: var myArray = ['a', 'b', 'c', 'd', 'e', 'f', 'g']; ...

14 Apr at 11:23

PHP, get file name without file extension

I have this PHP code: ``` function ShowFileExtension($filepath) { preg_match('/[^?]*/', $filepath, $matches); $string = $matches[0]; $pattern = preg_split('/\./', $string, -1, PREG_SPLIT...

17 Dec at 22:42

How to generate a random string of a fixed length in Go?

I want a random string of characters only (uppercase or lowercase), no numbers, in Go. What is the fastest and simplest way to do this?

13 Jul at 21:38

How to sort a HashSet?

For lists, we use the `Collections.sort(List)` method. What if we want to sort a `HashSet`?

24 Nov at 07:45

GCC -fPIC option

I have read about [GCC's Options for Code Generation Conventions](http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options), but could not understand what "Generate position-independen...

16 Jul at 11:39

How to get exit code when using Python subprocess communicate method?

How do I retrieve the exit code when using Python's `subprocess` module and the `communicate()` method? Relevant code: ``` import subprocess as sp data = sp.Popen(openRTSP + opts.split(), stdout=sp....

11 Nov at 20:3

Cannot resolve symbol 'AppCompatActivity'

I've just tried to use Android Studio. I've created blank project and tried to create `Activity` which extends `AppCompatActivity`. Unfortunalty Android Studio "says" that it > Cannot resolve symbol ...

How to add property to a class dynamically?

The goal is to create a mock class which behaves like a db resultset. So for example, if a database query returns, using a dict expression, `{'ab':100, 'cd':200}`, then I would like to see: ``` >>>...

Mocking member variables of a class using Mockito

I am a newbie to development and to unit tests in particular . I guess my requirement is pretty simple, but I am keen to know others thoughts on this. Suppose I have two classes like so - ``` pu...

24 Jan at 23:8

Best way to unselect a <select> in jQuery?

``` <select size="2"> <option selected="selected">Input your option</option> <option>Input your option</option> </select> ``` What is the best way, using jQuery, to elegantly unselect the option?

27 Sep at 21:28