๐Ÿš€ UllrichLumina

All Posts

Thumbnail for Posts

How can I set a proxy for Wget

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Linux Proxy Wget

I want to download something with Wget using a proxy HTTP Proxy 127001 Port 8080 The proxy does not need a username and password How can I do

Thumbnail for Posts

How can I ssh directly to a particular directory

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Shell Scripting Ssh

I often have to login to one of several servers and go to one of several directories on those machines Currently I do something of this sort localhost ssh

Thumbnail for Posts

How do class members get initialized if I dont do it explicitly

๐Ÿ“‚ Categories: C++

Suppose I have a class with private memebers ptr name pname rname crname and age What happens if I dont initialize them myself Here is an example class Example

Thumbnail for Posts

How do I apply the for-each loop to every character in a String

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: String Loops Foreach Char

So I want to iterate for each character in a string So I thought for char c xyz but I get a compiler error MyClassjava20 foreach not applicable to expression

Thumbnail for Posts

How do I get monitor resolution in Python

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

What is the simplest way to get monitor resolution preferably in a

Thumbnail for Posts

How do I mock an open used in a with statement using the Mock framework in Python

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Mocking With-Statement

How do I test the following code with unittestmock def testmefilepath with openfilepath as f return

Thumbnail for Posts

How do inline variables work

๐Ÿ“‚ Categories: C++
๐Ÿท๏ธ Tags: C++17 Inline-Variable

At the 2016 Oulu ISO C Standards meeting a proposal called Inline Variables was voted into C17 by the standards committee In laymans terms what are inline

Thumbnail for Posts

How do malloc and free work

๐Ÿ“‚ Categories: C++

I want to know how malloc and free work int main unsigned char p unsigned charmalloc4sizeofunsigned char memsetp04 strcpycharpabcdabcd deliberately storing

Thumbnail for Posts

How do you find the sum of all the numbers in an array in Java

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: Arrays Sum

Im having a problem finding the sum of all of the integers in an array in Java I cannot find any useful method in the Math class for