๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How to replace part of string by position

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: String Replace

I have this string ABCDEFGHIJ I need to replace from position 4 to position 5 with the string ZX It will look like this ABCZXFGHIJ But not to use with

Thumbnail for Posts

How to see which flags -marchnative will activate

๐Ÿ“‚ Categories: Programming

Im compiling my C app using GCC 43 Instead of manually selecting the optimization flags Im using marchnative which in theory should add all optimization flags

Thumbnail for Posts

How to view or edit localStorage

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Google-Chrome Local-Storage

I created a Chrome extension and am using localStorage for storing data I am accessing localStorage through backgroundpage It works fine but how can I manually

Thumbnail for Posts

Ignore outliers in ggplot2 boxplot

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

How would I ignore outliers in ggplot2 boxplot I dont simply want them to disappear ie outliersize0 but I want them to be ignored such that the y axis scales

Thumbnail for Posts

Impact of Xcode build options Enable bitcode YesNo

๐Ÿ“‚ Categories: Programming

Yesterday I recognized a ton of warnings regarding the parsecom library URGENT all bitcode will be dropped because pathParseframeworkParsePFAnalyticso was

Thumbnail for Posts

Implement paging skip take functionality with this query

๐Ÿ“‚ Categories: Sql
๐Ÿท๏ธ Tags: Sql-Server Join Pagination

I have been trying to understand a little bit about how to implement custom paging in SQL for instance reading articles like this one I have the following

Thumbnail for Posts

Includeimport a file in gitconfig

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

I want to include a file in my gitconfig Is something like the following possible core include pathtofile Motivation I want to keep my private credentials in a

Thumbnail for Posts

Instead change the require of indexjs to a dynamic import which is available in all CommonJS modules

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Node.Js Nft

Trying to work with nodejavascriptnfts I am a noob and followed along a tutorial but I get this error error ERRREQUIREESM require of ES Module is not supported

Thumbnail for Posts

Is it possible to write data to file using only JavaScript

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

I want to write data to an existing file using JavaScript I dont want to print it on console I want to actually write data to abctxt I read many answered