export OBS_USERNAME=M0ses
| DATAFILE="${HOME}/random.data" | |
| SCRIPT=" | |
| { | |
| /* simulate some processing */ | |
| for(i = 0; i < rand()*1000; ++i) | |
| acc += i; | |
| } | |
| " | |
| for n in {00..99}; do |
| #!/bin/sh | |
| # | |
| # Test several regex patterns against the characters in the ASCII printable range | |
| # Related to https://twitter.com/freebsdfrau/status/1245253969447809024?s=20 | |
| # | |
| seq 33 126 | awk ' | |
| BEGIN { | |
| split("[-_[:alpha:]] [-[:alpha:]_] [_[:alpha:]-] [[:alpha:]_-]", tests, "[[:blank:]]+") |
| #!/bin/bash | |
| # Produces all {0..1} combinations of a given length | |
| # | |
| # This program is provided AS-IS with the sole purpose of | |
| # demonstrating the use of functions and recursion in Bash | |
| # | |
| # Usage: | |
| # | |
| # sh$ ./bin.sh 3 | |
| # 000 |
| #!/bin/bash | |
| # | |
| # Usage: | |
| # sudo Build [test-file.adoc] > result.csv | |
| # | |
| set -e | |
| TESTFILE="${1:-test-file.adoc}" # the test file |
Copywork is a technique to practice writing by copying parts of text from authors you admire. It is not plagiarisme since you only copy fragment of text, and you do not publish these copies. It's an exercise aiming at training your brain to see writing as a no-pressure practice. It makes you in position of thinking and writing like someone you like. It also force your mind to take attention and interiorize the small details of structure, style, vocabulary and text articulation that makes a great writing.
Read more about copywork here:
The resources below were choosen for the excellence of their writing, their style and vocabulary, regardless of the technical quality of the content. Since the goal here is to improve our writing skills, native English writers are
| import sys | |
| from pprint import pprint | |
| import requests | |
| from html import escape | |
| DISCUSSION=24 | |
| FIRST_COMMENT=700 | |
| def download(discution, first): | |
| users = {} |