All Posts
How can I get the console logs from the iOS Simulator
I want to see what happens in the iOS Simulator if Im not testing the app in Xcode For example if I open a link in the Safari simulator see what happens in the
How can I have multiple working directories with Git
Im not sure if this is something supported by Git but in theory it seems like it should work to me My workflow often involves my editing of files in multiple
How do I increase the scrollback buffer in a running screen session
Lets say I have a currently running screen session I am interacting with through putty Ive realized that the scrollback buffer is too small and would like to
How do I prevent a Gateway Timeout with FastCGI on Nginx
I am running Django FastCGI and Nginx I am creating an api of sorts that where someone can send some data via XML which I will process and then return some
How do I set the selected item in a comboBox to match my string using C
I have a string test1 and my comboBox contains test1 test2 and test3 How do I set the selected item to test1 That is how do I match my string to one of the
How do I set up Visual Studio Code to compile C code
Microsofts Visual Studio Code editor is quite nice but it has no default support for building C projects How do I configure it to do
How do you remove a specific revision in the git history
Suppose your git history looks like this 1 2 3 4 5 15 are separate revisions You need to remove 3 while still keeping 1 2 4 and 5 How can this be done Is there
How do you tell if caps lock is on using JavaScript
How do you tell if caps lock is on using JavaScript One caveat though I did google it and the best solution I could find was to attach an onkeypress event to
How to convert a string of numbers to an array of numbers
I have below string var a 1234 when I do var b asplit I get b as 1 2 3 4 can I do something to get b as 1 2 3