Meaning of numbers in "col-md-4"," col-xs-1", "col-lg-2" in Bootstrap
I am confused with the grid system in the new Bootstrap, particularly these classes: ``` col-lg-* col-md-* col-xs-* ``` (where * represents some number). Can anyone please explain the following: ...
- Modified
- 26 Jan at 13:39
Oracle SQL, concatenate multiple columns + add text
So I basically wanna display this (whole row in ONE column): I like [type column] cake with [icing column] and a [fruit column]. The result should be: ``` Cake_Column ---------------- I like choc...
- Modified
- 30 May at 07:41
Font size of TextView in Android application changes on changing font size from native settings
I want to specify my own text size in my application, but I am having a problem doing this. When I change the font size in the device settings, the font size of my application `TextView` also change...
- Modified
- 1 Oct at 20:17
How to solve Object reference not set to an instance of an object.?
In my asp.net program.I set one protected list.And i add a value in list.But it shows Object reference not set to an instance of an object error ``` protected List<string> list; protected void Page_L...
- Modified
- 22 Nov at 08:26
How to calculate date difference in JavaScript?
I want to calculate date difference in days, hours, minutes, seconds, milliseconds, nanoseconds. How can I do it?
- Modified
- 17 Aug at 18:44
Center content in responsive bootstrap navbar
I'm having trouble centering my content in the bootstrap navbar. I'm using bootstrap 3. I've read many posts, but the CSS or methods used will not work with my code! I'm really frustrated, so this is ...
- Modified
- 15 Aug at 08:5
C# Equivalent of SQL Server DataTypes
For the following SQL Server datatypes, what would be the corresponding datatype in C#? ``` bigint numeric bit smallint decimal smallmoney int tinyint money ``` --- ``` float real ``` --...
- Modified
- 5 Nov at 15:59
How to delete an item in a list if it exists?
I am getting `new_tag` from a form text field with `self.response.get("new_tag")` and `selected_tags` from checkbox fields with ``` self.response.get_all("selected_tags") ``` I combine them like t...
Strange OutOfMemory issue while loading an image to a Bitmap object
I have a `ListView` with a couple of image buttons on each row. When the user clicks the list row, it launches a new activity. I have had to build my own tabs because of an issue with the camera layou...
- Modified
- 20 May at 05:19
How to push both key and value into an Array in Jquery
I am reading and pushing both Title and Link into an Array in . What i did is ``` var arr = []; $.getJSON("displayjson.php",function(data){ $.each(data.news, function(...
What are the differences between NP, NP-Complete and NP-Hard?
What are the differences between , and ? I am aware of many resources all over the web. I'd like to read your explanations, and the reason is they might be different from what's out there, or there ...
- Modified
- 7 Jan at 09:20
How do I bind to list of checkbox values with AngularJS?
I have a few checkboxes: ``` <input type='checkbox' value="apple" checked> <input type='checkbox' value="orange"> <input type='checkbox' value="pear" checked> <input type='checkbox' value="naartjie">...
- Modified
- 7 Jan at 15:16
What is TypeScript and why would I use it in place of JavaScript?
Can you please describe what the TypeScript language is? What can it do that JavaScript or available libraries cannot do, that would give me reason to consider it?
- Modified
- 11 May at 13:36
How to run 'sudo' command in windows
How would I run the following command in windows: ``` $ sudo django-admin.py startproject NEW ``` ?
- Modified
- 23 Jun at 13:55
What is the difference between a field and a property?
In C#, what makes a field different from a property, and when should a field be used instead of a property?
- Modified
- 20 Jul at 04:54
How do I change the color of radio buttons?
I mean, a radio button itself consists of a round shape and a dot at the center (when the button is selected). What I want to change is the color of both. Can this be done using CSS?
- Modified
- 20 Jun at 03:56
How to export DataTable to Excel
How can I export a `DataTable` to Excel in C#? I am using Windows Forms. The `DataTable` is associated with a `DataGridView` control. I have to export records of `DataTable` to Excel.
MySQL select where column is not empty
In MySQL, can I select columns only where something exists? For example, I have the following query: ``` select phone, phone2 from jewishyellow.users where phone like '813%' and phone2 ``` I'm tr...
How to show text on image when hovering?
I'm trying to show a description when hovering over an image. I've already done it in a less than desirable way, using image sprites and hovers here: I want it to look exactly like how I have it, but ...
Clearing all cookies with JavaScript
How do you delete all the cookies for the current domain using JavaScript?
- Modified
- 3 Dec at 13:31
What exactly is Apache Camel?
I don't understand what exactly [Camel](http://camel.apache.org/index.html) does. If you could give in 101 words an introduction to Camel: - - - -
- Modified
- 28 Jan at 15:25
Remove xticks in a matplotlib plot?
I have a semilogx plot and I would like to remove the xticks. I tried: ``` plt.gca().set_xticks([]) plt.xticks([]) ax.set_xticks([]) ``` The grid disappears (ok), but small ticks (at the place of t...
- Modified
- 30 May at 23:14
Change size of axes title and labels in ggplot2
I have a really simple question, which I am struggling to find the answer to. I hoped someone here might be able to help me. An example dataframe is presented below: ``` a <- c(1:10) b <- c(10:1) d...
I want to get Year, Month, Day, etc from Java Date to compare with Gregorian Calendar date in Java. Is this possible?
I have a Date object in Java stored as Java's Date type. I also have a Gregorian Calendar created date. The gregorian calendar date has no parameters and therefore is an instance of today's date (and...
- Modified
- 16 Mar at 03:32