%A - %T - %n - %a - %t
Example: Various Artists - Tony Hawk's Pro Skater 2 (The Album) - 13 - Fu Manchu - Evil Eye.m4a
| #!/usr/bin/env python | |
| """ | |
| nsb_entropy.py | |
| June, 2011 written by Sungho Hong, Computational Neuroscience Unit, Okinawa Institute of | |
| Science and Technology | |
| May, 2019 updated to Python 3 by Charlie Strauss, Los Alamos National Lab | |
| This script is a python version of Mathematica functions by Christian Mendl |
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <root testAttr="testValue"> | |
| <result> | |
| <child>data1</child> | |
| <child>A1343358848.646</child> | |
| <child> | |
| <internal> | |
| <data>one</data> | |
| <data>two</data> | |
| <unique>Z1343358848.646</unique> |
| #!/bin/bash | |
| oldifs=$IFS | |
| IFS=' | |
| ' | |
| [ $# -ne 2 ] && { echo "Usage: $0 sourceDirectory destinationDirectory" ; exit 1; } | |
| [ ! -d "$1" ] && { echo "$1 is not a valid directory"; exit 1; } | |
| [ ! -d "$2" ] && { mkdir -p "$2"; } | |
| src=$(cd "$1" ; pwd) | |
| dst=$(cd "$2" ; pwd) | |
| find "$src" -type d | |
| # This is the sshd server system-wide configuration file. See | |
| # sshd_config(5) for more information. | |
| # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin | |
| # The strategy used for options in the default sshd_config shipped with | |
| # OpenSSH is to specify options with their default value where | |
| # possible, but leave them commented. Uncommented options change a | |
| # default value. |
| Country | Alpha-2 code | Alpha-3 code | Numeric code | Latitude (average) | Longitude (average) | |
|---|---|---|---|---|---|---|
| Afghanistan | AF | AFG | 4 | 33 | 65 | |
| Åland Islands | AX | ALA | 248 | 60.116667 | 19.9 | |
| Albania | AL | ALB | 8 | 41 | 20 | |
| Algeria | DZ | DZA | 12 | 28 | 3 | |
| American Samoa | AS | ASM | 16 | -14.3333 | -170 | |
| Andorra | AD | AND | 20 | 42.5 | 1.6 | |
| Angola | AO | AGO | 24 | -12.5 | 18.5 | |
| Anguilla | AI | AIA | 660 | 18.25 | -63.1667 | |
| Antarctica | AQ | ATA | 10 | -90 | 0 |
| # Reliable persistent SSH-Tunnel via systemd (not autossh) | |
| # https://gist.github.com/guettli/31242c61f00e365bbf5ed08d09cdc006#file-ssh-tunnel-service | |
| [Unit] | |
| Description=Tunnel for %i | |
| After=network.target | |
| [Service] | |
| User=tunnel | |
| ExecStart=/usr/bin/ssh -o "ExitOnForwardFailure yes" -o "ServerAliveInterval 60" -N tunnel@%i |
| /* | |
| * In embedded systems, the C programming language is most often the language of choice. For more intensive | |
| * elements in the system, assembly can be used. Embedded C is distinct from typical C programming in its | |
| * requirements for efficiency, its limited resources, and its unique hardware problems which are much less common in | |
| * the majority of C programs. Even still, the language itself is the same, so check out K&R's The C Programming | |
| * Language and other reference books. | |
| * | |
| * Some of the problems central to embedded systems programming: | |
| * - Memory management | |
| * - Register access and manipulation |