- Shall i implement it?
- No ...
| #!/bin/bash | |
| ######################################################################################## | |
| # Requires: | |
| # shuf - install on a mac with `brew install coreutils` | |
| # Args: | |
| # -d | --source-dir source dir to copy wav files from | |
| # -f | --find find a word ignoring case ie. kick | |
| # -s | --samples number of samples to copy to a new random dir | |
| # -r | --repeat number of times to create a random sample dir | |
| # -x | --max-size maximum file size ie. 2MB |
I was following this blog to install python 3.7.3 on my MX-linux 18.1 machine. Step by step procedure is as follows
sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev \
libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev
| # install_certifi.py | |
| # | |
| # sample script to install or update a set of default Root Certificates | |
| # for the ssl module. Uses the certificates provided by the certifi package: | |
| # https://pypi.python.org/pypi/certifi | |
| import os | |
| import os.path | |
| import ssl | |
| import stat |
Advanced tool-set to streamline administrative tasks for Microsoft® Windows®.
The Microsoft® Windows® Resource Kit Tools (RK-Tools) are a set of tools to help System-Administrators, Developers, and Powerusers streamline a wide range of common, administrative tasks for the Microsoft® Windows® Operating System (OS).
Title: Simple Sabotage Field Manual Author: Strategic Services Office of Strategic Services
These examples are presented in an attempt to show how each coding styles attempts to or does not attempt to isolate side-effects. There are only 2 semantic elements in a barebone "Hello World" implementation:
- Invocation of
console.log - Declaration of
HELLO_WORLD
Since every coding style can abstract away data into a parameter or variable, there is no point for us to show that. All implementations assume HELLO_WORLD is a constant that is always inlined. This way it reduces the variations we need to present. (To make an anology, if we were to implement incrementByOne, would we need to inline the number 1 or pass it in as parameter?)
CAVEAT/LIMITATION: All implementations also assume console is static global. In case of functional programming, console.log is asumed to be a function that can be passed around without further modification. (This is not the case in the browser, but that can be resolved with console.log.bind(console))
| If you want to achieve greatness stop asking for permission. ~Anonymous | |
| Things work out best for those who make the best of how things work out. ~John Wooden | |
| To live a creative life, we must lose our fear of being wrong. ~Anonymous | |
| If you are not willing to risk the usual you will have to settle for the ordinary. ~Jim Rohn | |
| Trust because you are willing to accept the risk, not because it's safe or certain. ~Anonymous | |
| Take up one idea. Make that one idea your life - think of it, dream of it, live on that idea. Let the brain, muscles, nerves, every part of your body, be full of that idea, and just leave every other idea alone. This is the way to success. ~Swami Vivekananda | |
| All our dreams can come true if we have the courage to pursue them. ~Walt Disney | |
| Good things come to people who wait, but better things come to those who go out and get them. ~Anonymous | |
| If you do what you always did, you will get what you always got. ~Anonymous | |
| Success is walking from failure to failure with no loss of enthusiasm. ~Winston Chu |
| #!/bin/bash | |
| # | |
| # Copy data from a Time Machine volume mounted on a Linux box. | |
| # | |
| # Usage: copy-from-time-machine.sh <source> <target> | |
| # | |
| # source: the source directory inside a time machine backup | |
| # target: the target directory in which to copy the reconstructed | |
| # directory trees. Created if it does not exists. | |
| # |
| [skin] | |
| description=Ajnasz Blue Theme. Midnight Commander skin from Ajnasz. | |
| [Lines] | |
| horiz=─ | |
| vert=│ | |
| lefttop=┌ | |
| righttop=┐ | |
| leftbottom=└ | |
| rightbottom=┘ |