๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

Performance surprise with as and nullable types

๐Ÿ“‚ Categories: C#

Im just revising chapter 4 of C in Depth which deals with nullable types and Im adding a section about using the as operator which allows you to write object o

Thumbnail for Posts

Purpose of Unions in C and C

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: C Unions Type-Punning

I have used unions earlier comfortably today I was alarmed when I read this post and came to know that this code union ARGB uint32t colour struct componentsTag

Thumbnail for Posts

Read only the first line of a file

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

How would you get only the first line of a file as a string with

Thumbnail for Posts

Replace all elements of NumPy array that are greater than some value

๐Ÿ“‚ Categories: Python

I have a 2D NumPy array How do I replace all values in it greater than a threshold T 255 with a value x 255 A slow forloop based method would be arr arrcopy

Thumbnail for Posts

Resetting generator object in Python

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

I have a generator object returned by multiple yield Preparation to call this generator is rather timeconsuming operation That is why I want to reuse the

Thumbnail for Posts

Ruby Easiest Way to Filter Hash Keys

๐Ÿ“‚ Categories: Ruby
๐Ÿท๏ธ Tags: Ruby

I have a hash that looks something like this params irrelevant gt A String choice1 gt Oh look another one choice2 gt Even more strings choice3 gt But wait

Thumbnail for Posts

RuntimeError on windows trying python multiprocessing

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

I am trying my very first formal python program using Threading and Multiprocessing on a windows machine I am unable to launch the processes though with python

Thumbnail for Posts

Setting custom UITableViewCells height

๐Ÿ“‚ Categories: Programming

I am using a custom UITableViewCell which has some labels buttons and image views to be displayed There is one label in the cell whose text is a NSString

Thumbnail for Posts

Setting table column width

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

Ive got a simple table that is used for an inbox as follows lttable border1gt lttrgt ltthgtFromltthgt ltthgtSubjectltthgt ltthgtDateltthgt lttrgt lttablegt How