๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

Turning a Comma Separated string into individual rows

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Sql-Server Csv T-Sql Split

I have a SQL Table like this SomeID OtherID Data abcdef cdef123 182022 abcdef 4554a24 1719 987654 12324a2 131920 Is there a query where I can perform a query

Thumbnail for Posts

Type hinting a collection of a specified type

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

Using Python 3s function annotations it is possible to specify the type of items contained within a homogeneous list or other collection for the purpose of

Thumbnail for Posts

TypeScript ES6 import module File is not a module error

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Typescript Ecmascript-6

I am using TypeScript 16 with ES6 modules syntax My files are testts module App export class SomeClass getName string return name maints import App from test

Thumbnail for Posts

TypeScript Looping through a dictionary

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

In my code I have a couple of dictionaries as suggested here which is String indexed Due to this being a bit of an improvised type I was wondering if there any

Thumbnail for Posts

unexpected token import in Nodejs5 and babel

๐Ÿ“‚ Categories: Javascript

In js file i used import to instead of require import co from co And tried to run it directly by nodejs since it said import is shipping features and support

Thumbnail for Posts

Upgrade python packages from requirementstxt using pip command

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Pip Package Requirements.Txt

How do I upgrade all my python packages from requirementstxt file using pip command tried with below command pip install upgrade r requirementstxt Since the

Thumbnail for Posts

Uses for Optional

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

Having been using Java 8 now for 6 months or so Im pretty happy with the new API changes One area Im still not confident in is when to use Optional I seem to

Thumbnail for Posts

Using a dictionary to count the items in a list

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: List Count Histogram

Suppose I have a list of items like apple red apple red red pear I want a dictionary that counts how many times each item appears in the list So for the list

Thumbnail for Posts

Using semicolon vs plus with exec in find

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

Why is there a difference in output between using find exec ls and find exec ls I got find exec ls file1 file2 file1 file2 testdir1 testdir1 testdir2