๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How to get Spinner value

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

In Android I am trying to get the selected Spinner value with a listener What is the best way to get the spinners

Thumbnail for Posts

How to only find files in a given directory and ignore subdirectories using bash

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Unix

Im running the find command to find certain files but some files in subdirectories have the same name which I want to ignore Im interested in filespatterns

Thumbnail for Posts

How to rollback just one step using rake dbmigrate

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Ruby-On-Rails Rake Dbmigrate

After adding migration files in the dbmigrate folder and running rake dbmigrate I want get back to the previous step I think using VERSIONn is the right way to

Thumbnail for Posts

How to save the output of a consolelogobject to a file

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Json Google-Chrome

I tried using JSONstringifyobject but it doesnt go down on the whole structure and hierarchy On the other hand consolelogobject does that but I cannot save it

Thumbnail for Posts

How to use querySelectorAll only for elements that have a specific attribute set

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Css-Selectors Selectors-Api

Im trying to use documentquerySelectorAll for all checkboxes that have the value attribute set There are other checkboxes on the page that do not have value

Thumbnail for Posts

How to use underscorejs as a template engine

๐Ÿ“‚ Categories: Javascript

Im trying to learn about new usages of javascript as a serverside language and as a functional language Few days ago I heard about nodejs and express framework

Thumbnail for Posts

How to vertically center a span inside a div duplicate

๐Ÿ“‚ Categories: Html
๐Ÿท๏ธ Tags: Css Center

This question already has answers here How to center an element horizontally and vertically 29 answers Closed 9 years ago The code ltdiv idtheMainDiv style

Thumbnail for Posts

Is it better to specify source files with GLOB or each file individually in CMake

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

CMake offers several ways to specify the source files for a target One is to use globbing documentation for example FILEGLOB MYSRCS dir Another method is to

Thumbnail for Posts

Is Meyers implementation of the Singleton pattern thread safe

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: Multithreading Design-Patterns

Is the following implementation using lazy initialization of Singleton Meyers Singleton thread safe static Singletonamp instance static Singleton s return s If