๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

Increase number of axis ticks

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

Im generating plots for some data but the number of ticks is too small I need more precision on the reading Is there some way to increase the number of axis

Thumbnail for Posts

Iterating Through a Dictionary in Swift

๐Ÿ“‚ Categories: Swift
๐Ÿท๏ธ Tags: Dictionary

I am a little confused on the answer that Xcode is giving me to this experiment in the Swift Programming Language Guide Use a forin to iterate through a

Thumbnail for Posts

Java integer to byte array

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Arrays Integer Byte

I got an integer 1695609641 when I use method String hex IntegertoHexString1695609641 systemoutprintlnhex gives 6510f329 but I want a byte array byte bytearray

Thumbnail for Posts

JavaScript ES6 promise for loop

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Es6-Promise

for let i 0 i lt 10 i const promise new Promiseresolve reject gt const timeout Mathrandom 1000 setTimeout gt consolelogi timeout TODO Chain this promise to the

Thumbnail for Posts

Javascript Regex How to put a variable inside a regular expression duplicate

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

This question already has answers here How do you use a variable in a regular expression 29 answers Closed 4 years ago So for example functioninput var testVar

Thumbnail for Posts

jQuery Validate - Enable validation for hidden fields

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Jquery-Validate

In the new version of jQuery validation plugin 19 by default validation of hidden fields ignored Im using CKEditor for textarea input field and it hides the

Thumbnail for Posts

Local function vs Lambda C 70

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Function Lambda C#-7.0

I am looking at the new implementations in C 70 and I find it interesting that they have implemented local functions but I cannot imagine a scenario where a

Thumbnail for Posts

log4j logging hierarchy order

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

What is the hierarchy of log4j logging DEBUG INFO WARN ERROR FATAL Which one provides the highest logging which would be helpful to troubleshoot issues Can any

Thumbnail for Posts

Method to add new or update existing item in C Dictionary

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: Dictionary Containskey

In some legacy code I have seen the following extension method to facilitate adding a new keyvalue item or updating an existing value Method1 legacy code