Questions

CSS customized scroll bar in div

How can I customize a scroll bar via CSS (Cascading Style Sheets) for one `div` and not the whole page?

11 Jan at 20:59

Is there a concurrent List in Java's JDK?

How can I create a concurrent List instance, where I can access elements by index? Does the JDK have any classes or factory methods I can use?

15 Feb at 22:55

What to use instead of "addPreferencesFromResource" in a PreferenceActivity?

I just noticed the fact that the method `addPreferencesFromResource(int preferencesResId)` is marked in Android's documentation ([Reference Entry](http://developer.android.com/reference/android/prefe...

3 Feb at 08:51

How to test if a dictionary contains a specific key?

What's the cleanest way to test if a dictionary contains a key? ``` x = {'a' : 1, 'b' : 2} if (x.contains_key('a')): .... ```

2 Feb at 13:36

Using HTML5/JavaScript to generate and save a file

I've been fiddling with WebGL lately, and have gotten a Collada reader working. Problem is it's pretty slow (Collada is a very verbose format), so I'm going to start converting files to a easier to us...

21 Apr at 16:18

Interface or an Abstract Class: which one to use?

Please explain when I should use a PHP `interface` and when I should use an `abstract class`? How I can change my `abstract class` in to an `interface`?

24 May at 16:11

Logical XOR operator in C++?

Is there such a thing? It is the first time I encountered a practical need for it, but I don't see one listed [in Stroustrup](https://en.wikipedia.org/wiki/The_C%2B%2B_Programming_Language). I intend ...

12 May at 15:22

Double Iteration in List Comprehension

In Python you can have multiple iterators in a list comprehension, like ``` [(x,y) for x in a for y in b] ``` for some suitable sequences a and b. I'm aware of the nested loop semantics of Python's...

29 Jul at 08:30

Things possible in IntelliJ that aren't possible in Eclipse?

I have heard from people who have switched either way and who swear by the one or the other. Being a huge Eclipse fan but having not had the time to try out IntelliJ, I am interested in hearing from ...

6 Jan at 05:17

Get integer value of the current year in Java

I need to determine the current year in Java as an integer. I could just use `java.util.Date()`, but it is deprecated.

19 Dec at 14:58

How to undo local changes to a specific file

I'm trying to undo local changes to a specific file. Nothing has been committed. When I want to revert all changes, I can perform `git revert --reset HEAD`. However, in this case, I don't want to rev...

23 May at 12:26

Simulate a specific CURL in PostMan

I am using Postman to test some Curl requests to an API server. The API developers gave us the curl command, but I can't send it from the Postman. How to make such a request from the Postman? ``` cur...

7 Aug at 11:7

Laravel - Eloquent or Fluent random row

How can I select a random row using Eloquent or Fluent in Laravel framework? I know that by using SQL, you can do order by RAND(). However, I would like to get the random row doing a count on the nu...

16 Jun at 04:38

Difference between wait and sleep

What is difference between `wait` and `sleep`?

1 Feb at 11:16

"message failed to fetch from registry" while trying to install any module

I can't install any node module from the npm. ``` npm install socket.io ``` The above command resulted to below output, it is not able to install socket.io ``` npm http GET https://registry.npmjs....

20 Dec at 20:22

Test if remote TCP port is open from a shell script

I'm looking for a quick and simple method for properly testing if a given TCP port is open on a remote server, from inside a Shell script. I've managed to do it with the telnet command, and it works ...

21 Mar at 08:41

How to determine whether an object has a given property in JavaScript

How can I determine whether an object `x` has a defined property `y`, regardless of the value of `x.y`? I'm currently using ``` if (typeof(x.y) !== 'undefined') ``` but that seems a bit clunky. Is...

27 Jul at 00:25

Get the current first responder without using a private API

I submitted my app a little over a week ago and got the dreaded rejection email today. It tells me that my app cannot be accepted because I'm using a non-public API; specifically, it says, > The non-...

How should I validate an e-mail address?

What's a good technique for validating an e-mail address (e.g. from a user input field) in Android? [org.apache.commons.validator.routines.EmailValidator](http://commons.apache.org/validator/apidocs/o...

15 Aug at 07:47

Using Transactions or SaveChanges(false) and AcceptAllChanges()?

I have been investigating transactions and it appears that they take care of themselves in EF as long as I pass `false` to `SaveChanges()` and then call `AcceptAllChanges()` if there are no errors: `...

20 Mar at 11:20

How to split a string literal across multiple lines in C / Objective-C?

I have a pretty long sqlite query: ``` const char *sql_query = "SELECT statuses.word_id FROM lang1_words, statuses WHERE statuses.word_id = lang1_words.word_id ORDER BY lang1_words.word ASC"; ``` H...

23 Jul at 03:59

What are the performance characteristics of sqlite with very large database files?

, about 11 years after the question was posted and later closed, preventing newer answers. [Official limitations are listed here](https://www.sqlite.org/limits.html). It works well with dataset large...

1 Oct at 09:36

How to add an image to a JPanel?

I have a [JPanel](http://download.oracle.com/javase/1.4.2/docs/api/javax/swing/JPanel.html) to which I'd like to add JPEG and PNG images that I generate on the fly. All the examples I've seen so far ...

9 Jan at 15:21

Dynamic SELECT TOP @var In SQL Server

How can I have a dynamic variable setting the amount of rows to return in SQL Server? Below is not valid syntax in SQL Server 2005+: ``` DECLARE @count int SET @count = 20 SELECT TOP @count * FROM S...

26 Jan at 23:41

How to apply filters to *ngFor?

Apparently, Angular 2 will use pipes instead of filters as in Angular1 in conjunction with ng-for to filter results, although the implementation still seems to be vague, with no clear documentation. ...

19 Feb at 18:14