๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

What is the difference between pushdefault matching and simple

๐Ÿ“‚ Categories: Programming

I have been using Git for a while now but I have never had to set up a new remote repo myself and I have been curious to do so I have been reading tutorials

Thumbnail for Posts

What is the difference between server side cookie and client side cookie

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Http Cookies Session-Cookies

What is the difference between creating cookies on the server and on the client Are these called server side cookies and client side cookies Is there a way to

Thumbnail for Posts

What is the result type of ternaryconditional operator

๐Ÿ“‚ Categories: C++

Why does the first conditional operator result in a reference int x 1 int y 2 x gt y x y 100 However the second does not int x 1 long y 2 x gt y x y 100

Thumbnail for Posts

What is the role of src and dist folders

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Jquery Jquery-Plugins Gruntjs

Im looking at a Git repository for a jQuery plugin I want to make a few changes for use in my own project but when I opened up the repository it had a

Thumbnail for Posts

Whats the difference between xsdinclude and xsdimport

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

Whats the difference between xsdinclude and xsdimport When would you use one instead of the other and when might it not

Thumbnail for Posts

Whats the purpose of using braces ie for a single-line if or loop

๐Ÿ“‚ Categories: C++

Im reading some lecture notes of my C lecturer and he wrote the following Use Indentation OK Never rely on operator precedence Always use parentheses OK Always

Thumbnail for Posts

Why does Git treat this text file as a binary file

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

I wonder why git tells me this git diff MyFiletxt diff git aMyFiletxt bMyFiletxt index d41a4f315dcfa2 100644 Binary files aMyFiletxt and bMyFiletxt differ

Thumbnail for Posts

Why does Lua have no continue statement

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Loops Lua Language-Design

I have been dealing a lot with Lua in the past few months and I really like most of the features but Im still missing something among those Why is there no

Thumbnail for Posts

Why does MYSQL higher LIMIT offset slow the query down

๐Ÿ“‚ Categories: Mysql
๐Ÿท๏ธ Tags: Performance Sql-Order-By Limit

Scenario in short A table with more than 16 million records 2GB in size The higher LIMIT offset with SELECT the slower the query becomes when using ORDER BY