iPad Multitasking support requires these orientations
I'm trying to submit my universal iOS 9 apps to Apple (built with Xcode 7 GM) but I receive this error message for the bundle in iTunes Connect, just when I select : > Invalid Bundle. iPad Multitaskin...
- Modified
- 23 Oct at 03:22
Difference between JSON.stringify and JSON.parse
I have been confused over when to use these two parsing methods. After I echo my json_encoded data and retrieve it back via ajax, I often run into confusion about when I should use and . I get `[ob...
- Modified
- 4 Jan at 21:2
Angular ng-repeat Error "Duplicates in a repeater are not allowed."
I am defining a custom filter like so: ``` <div class="idea item" ng-repeat="item in items" isoatom> <div class="section comment clearfix" ng-repeat="comment in item.comments | range:1:2"> ...
- Modified
- 16 Jun at 16:29
updating table rows in postgres using subquery
I have this table in a postgres 8.4 database: ``` CREATE TABLE public.dummy ( address_id SERIAL, addr1 character(40), addr2 character(40), city character(25), state character(2), zip chara...
- Modified
- 10 Jan at 00:29
Why does DEBUG=False setting make my django Static Files Access fail?
Am building an app using Django as my workhorse. All has been well so far - specified db settings, configured static directories, urls, views etc. But trouble started sneaking in the moment I wanted t...
- Modified
- 4 Jun at 11:31
Clone only one branch
I would like to know how I could clone only one branch instead of cloning the whole Git repository.
Download a file by jQuery.Ajax
I have a Struts2 action in the server side for file downloading. ``` <action name="download" class="com.xxx.DownAction"> <result name="success" type="stream"> <param name="contentType">te...
- Modified
- 28 Dec at 13:48
Git: "Corrupt loose object"
Whenever I pull from my remote, I get the following error about compression. When I run the manual compression, I get the same: ``` $ git gc error: Could not read 3813783126d41a3200b35b6681357c213352...
- Modified
- 10 Apr at 18:6
how can I Update top 100 records in sql server
I want to update the top 100 records in SQL Server. I have a table `T1` with fields `F1` and `F2`. `T1` has 200 records. I want to update the `F1` field in the top 100 records. How can I update based...
- Modified
- 8 Mar at 06:53
How do I parse a URL into hostname and path in javascript?
I would like to take a string ``` var a = "http://example.com/aa/bb/" ``` and process it into an object such that ``` a.hostname == "example.com" ``` and ``` a.pathname == "/aa/bb" ```
- Modified
- 21 Jan at 11:2
Vim and Ctags tips and tricks
I have just installed [Ctags](http://en.wikipedia.org/wiki/Ctags) (to help with C++ development) with my Vim (or rather gVim), and would like to find out your favorite commands, macros, shortcuts, tip...
- Modified
- 2 Feb at 12:53
What is a Python equivalent of PHP's var_dump()?
When debugging in PHP, I frequently find it useful to simply stick a [var_dump()](http://php.net/var-dump) in my code to show me what a variable is, what its value is, and the same for anything that i...
Practical uses for the "internal" keyword in C#
Could you please explain what the practical usage is for the `internal` keyword in C#? I know that the `internal` modifier limits access to the current assembly, but when and in which circumstance sh...
- Modified
- 19 Jul at 13:13
Getting Unexpected Token Export
I am trying to run some ES6 code in my project but I am getting an unexpected token export error. ``` export class MyClass { constructor() { console.log("es6"); } } ```
- Modified
- 11 Jul at 07:32
Adding script tag to React/JSX
I have a relatively straightforward issue of trying to add inline scripting to a React component. What I have so far: ``` 'use strict'; import '../../styles/pages/people.scss'; import React, { Compo...
- Modified
- 3 Jan at 09:19
How to clean node_modules folder of packages that are not in package.json?
Assume I install project packages with `npm install` that looks into `package.json` for modules to be installed. After a while I see that I don't need some specific module and remove its dependency fr...
How to assign multiple classes to an HTML container?
Is it possible to assign multiple classes to a single `HTML` container? Something like: ``` <article class="column, wrapper"> ```
Python unittest - opposite of assertRaises?
I want to write a test to establish that an Exception is not raised in a given circumstance. It's straightforward to test if an Exception raised ... ``` sInvalidPath=AlwaysSuppliesAnInvalidPath() ...
- Modified
- 30 Nov at 23:34
How to "properly" create a custom object in JavaScript?
I wonder about what the best way is to create an JavaScript object that has properties and methods. I have seen examples where the person used `var self = this` and then uses `self.` in all functions...
- Modified
- 29 Dec at 10:59
How to define an empty object in PHP
with a new array I do this: ``` $aVal = array(); $aVal[key1][var1] = "something"; $aVal[key1][var2] = "something else"; ``` Is there a similar syntax for an object ``` (object)$oVal = ""; $oVal-...
Selecting text in an element (akin to highlighting with your mouse)
I would like to have users click a link, then it selects the HTML text in another element ( an input). By "select" I mean the same way you would select text by dragging your mouse over it. This has b...
- Modified
- 27 Sep at 06:54
How to format a float in javascript?
In JavaScript, when converting from a float to a string, how can I get just 2 digits after the decimal point? For example, 0.34 instead of 0.3445434.
- Modified
- 9 Oct at 08:6
jQuery $(document).ready and UpdatePanels?
I'm using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in `$(document).ready` . For example: ``` $(function() { $('div._Foo').bind...
- Modified
- 7 Apr at 15:51
SQL Client for Mac OS X that works with MS SQL Server
How can I connect to a remote SQL server using Mac OS X? I don't really need a GUI, but it would be nice to have for the color coding and resultset grid. I'd rather not have to use a VM. Is there a S...
- Modified
- 29 Nov at 16:16