๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How to change colors of a Drawable in Android

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

Im working on an android application and I have a drawable that Im loading up from a source image On this image Id like to convert all of the white pixels to a

Thumbnail for Posts

How to check if a string in Python is in ASCII

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: String Unicode Ascii

I want to I check whether a string is in ASCII or not I am aware of ord however when I try ord I have TypeError ord expected a character but string of length 2

Thumbnail for Posts

How to compile Tensorflow with SSE42 and AVX instructions

๐Ÿ“‚ Categories: Programming

This is the message received from running a script to check if Tensorflow is working I tensorflowstreamexecutordsoloadercc125 successfully opened CUDA library

Thumbnail for Posts

How to configure git log to show commit date

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

How can I configure git log to show commit date instead of author

Thumbnail for Posts

How to convert a double to long without casting

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Type-Conversion

What is the best way to convert a double to a long without casting For example double d 394000 long l new DoubledlongValue Systemoutprintlndouble d long

Thumbnail for Posts

How to copy text to clipboardpasteboard with Swift

๐Ÿ“‚ Categories: Swift

Im looking for a clean example of how to copy text to iOS clipboard that can then be usedpasted in other apps The benefit of this function is that the text can

Thumbnail for Posts

How to count the number of occurrences of an element in a List

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Arraylist Collections

I have an ArrayList a Collection class of Java as follows ArrayListltStringgt animals new ArrayListltStringgt animalsaddbat animalsaddowl animalsaddbat

Thumbnail for Posts

How to do Mercurials hg remove for all missing files

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

I use this to remove a file from the repo hg remove ltfull file pathgt What command can you use to do an hg remove on all files that have been deleted locally

Thumbnail for Posts

How to dynamically build a JSON object

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Json

I am new to Python and I am playing with JSON data I would like to dynamically build a JSON object by adding some keyvalue to an existing JSON object I tried