Compare commits

...

6 Commits

Author SHA1 Message Date
Tayyab
20fc7f25d7 Merge 0de5e8fef1 into 10872e02d1 2024-06-13 11:27:00 +00:00
Julien Le Coupanec
10872e02d1 Merge pull request #385 from WPRobson/master
add docker init command to docker cheatsheet
2024-06-07 23:35:19 +02:00
Julien Le Coupanec
365b4f72b7 Merge pull request #390 from MagedMohamedTurk/patch-1
Update C.txt
2024-06-07 23:34:57 +02:00
Maged Turkoman
0f74ebe37b Update C.txt 2024-06-01 09:07:47 +03:00
Will Robson
bf4c0379f2 add docker init command to docker cheatsheet 2024-05-12 20:01:26 +01:00
Tayyab-R
0de5e8fef1 added shortcuts to send current session to the background and get them back
added what is 'f-string' and one example
2023-07-17 21:49:39 +05:00
4 changed files with 17 additions and 4 deletions

View File

@@ -149,6 +149,7 @@ Operators
^= bitwise exclusive or and store
|= bitwise or and store
, separator as in ( y=x,z=++x )
; statement terminator.
Operator precedence

View File

@@ -47,7 +47,8 @@ CTRL+X then ) # finish recording keyboard macro
CTRL+X then E # recall last recorded keyboard macro
CTRL+X then CTRL+E # invoke text editor (specified by $EDITOR) on current command line then execute resultes as shell commands
CTRL+A then D # logout from screen but don't kill it, if any command exist, it will continue
CTRL+T then Z # Minimizes the current session or sends the current session to the background.
fg(foreground) # Maxmizes the current session
BACKSPACE # deletes one character backward
DELETE # deletes one character under cursor

View File

@@ -380,3 +380,14 @@ function_name()
* We need not to specify the return type of the function.
* Functions by default return `None`
* We can return any datatype.
### f strings
* Short of "formatted string".
* Allow us to to embed expressions inside string literals.
* f-strings are denoted by "f" or "F" prefix before the string
* Expressions are closed by curly braces '{}' with the f-string
```
name = "Alice"
print(f"Hello, I am {name} and I am a programmer.")
```

View File

@@ -2,7 +2,7 @@
# DOCKER
##############################################################################
docker init # Creates Docker-related starter files
docker build -t friendlyname . # Create image using this directory's Dockerfile
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode