Hey my name is Sascha.

On this website I will show you how I automate our e-commerce business.

Regular Expressions - If only they were not so practical

For a long time, I’ve been avoiding regular expressions. Every time I got into the subject, the instinctive reaction was flight. I have tried again and again to approach this topic. But all the people who use regular expressions can not be completely wrong. I took all courage together and fought my way through. To be honest, I’m still not the biggest fan of regular expression. Still, they save a lot of time.

Pointer in Go

A pointer in Go or pointer points to the memory address at which a value is saved. To output the memory address for a variable, use the & character: 1 2 3 4 5 6 7 8 func main() { x := 10 fmt.Println(x) fmt.Println(&x) fmt.Printf("%T\n", x) fmt.Printf("%T\n", &x) } If you enter the type of the memory address, it is \int. Since \ is the operator for a pointer, that is, the memory address is a pointer to an int.

EN Shopify Unlocking Your Store’s Potential: A Beginner’s Journey with Shopify API Introduction Running a Shopify store involves much more than just showcasing pretty product images and crafting persuasive sales copy. To become successful in your own terms, it’s crucial to be efficient and quick on your feet. One of the savviest moves I’ve made for my Shopify store was to delve deeper into the Shopify API and learn how to harness its power.
0%