๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How to run shell script on host from docker container

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

How to control host from docker container For example how to execute copied to host bash

Thumbnail for Posts

How to tell at runtime whether an iOS app is running through a TestFlight Beta install

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

Is it possible to detect at runtime that an application has been installed through TestFlight Beta submitted through iTunes Connect vs the App Store You can

Thumbnail for Posts

How to use RETURNING with ON CONFLICT in PostgreSQL

๐Ÿ“‚ Categories: Sql

I have the following UPSERT in PostgreSQL 95 INSERT INTO chats user contact name VALUES 1 2 3 2 1 NULL ON CONFLICTuser contact DO NOTHING RETURNING id If there

Thumbnail for Posts

I dont understand -Wl-rpath -Wl

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Gcc Ld Rpath

For convenience I added the relevant manpages below My misunderstanding first If I need to separate options with that means that the second Wl is not another

Thumbnail for Posts

If selector is an Angular component then verify that it is part of this module

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

I am new in Angular2 I have tried to create a component but showing an error This is the appcomponentts file import Component from angularcore import

Thumbnail for Posts

In CMake how can I test if the compiler is Clang

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: C Cmake Clang

We have a set of crossplatform CMake build scripts and we support building with Visual C and GCC Were trying out Clang but I cant figure out how to test

Thumbnail for Posts

In Python how does one catch warnings as if they were exceptions

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

A thirdparty library written in C that I use in my python code is issuing warnings I want to be able to use the try except syntax to properly handle these

Thumbnail for Posts

Intellij shortcut to convert code to upper or lower case

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Intellij-Idea Keyboard-Shortcuts

What is the Intellij shortcut to convert code to upper or lower

Thumbnail for Posts

Is it better in C to pass by value or pass by reference-to-const

๐Ÿ“‚ Categories: C++

Is it better in C to pass by value or pass by referencetoconst I am wondering which is better practice I realize that pass by referencetoconst should provide