Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

244 total results found

C Notes

Programming Languages

Object reference vs pointer

C Notes

Pointer variable Let's start from the beginning, computer memory location are layered out in addresses, each particular location have an address and holds some kind of content. The address is a numerical number usually in hex for easier expression. To help p...

Python

Cheat Sheet

Bash Shell

What is *? In Regular Expression?

Python

https://stackoverflow.com/questions/3075130/what-is-the-difference-between-and-regular-expressions

Bash Shell

JavaScript Roadmap Journey

NodeJs/JavaScript

Difference between single (' ') quote vs double (" ") quote

Bash Shell

Single Quote Using single quote in bash script will preserve the literal value of each characters in the single quotes. It will not do any variable interpolation but instead treat it as it is. Basically what you entered is what you will see. None of that esca...

Ruby

Regex Escape Characters

Ruby

Backslash in /regex/ Expression When you are trying to create a literal backslash match in Ruby, if you use the /regex/ expression, the backslash parsing are only done once. Meaning that \\ will become \ string literal. For example: /\\h/ will be matching th...

Linux Module/Kernel Programming

Zero to Hero Beginner Udemy Course

AWS Solution Architect Notes

NodeJs/JavaScript

Rust Programming Language

Rust

find glob expansion

Bash Shell

When using regular expression in find, you have to quote the name parameter to prevent glob expansion (the name expansion done by the shell) find . -name *.java vs find . name "*.java" The first method will expand to the files you have at the current d...

AWS Overview Course

AWS Solution Architect Notes

https://explore.skillbuilder.aws/learn/course/9496/play/32556/welcome-to-solutions-architect-associate-exam-prep

Bash Cheatsheet

Bash Shell Cheat Sheet

Multi-line Command To execute multi-line command in bash script simple put a \ after breaking up your commands. There should be no white spaces after the backslash, else it will fail! Every single line should be followed by a \ until you finished typing the ...

AWS Solution Architect Notes

Ultimate AWS Certified Solutions Architect Associate Course

AWS Solution Architect Notes