๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How can I get the console logs from the iOS Simulator

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Ios Console 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

Thumbnail for Posts

How can I have multiple working directories with Git

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git Git-Worktree

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

Thumbnail for Posts

How do I increase the scrollback buffer in a running screen session

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Linux Gnu-Screen

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

Thumbnail for Posts

How do I prevent a Gateway Timeout with FastCGI on Nginx

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Configuration Nginx Fastcgi

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

Thumbnail for Posts

How do I set the selected item in a comboBox to match my string using C

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Winforms Combobox

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

Thumbnail for Posts

How do I set up Visual Studio Code to compile C code

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Visual-Studio-Code Vscode-Tasks

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

Thumbnail for Posts

How do you remove a specific revision in the git history

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Git

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

Thumbnail for Posts

How do you tell if caps lock is on using JavaScript

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Keyboard Capslock

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

Thumbnail for Posts

How to convert a string of numbers to an array of numbers

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Arrays

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