This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function unzip_intodirs | |
| for zipfile in *.zip ; | |
| set fdir (basename $zipfile .zip) | |
| mkdir $fdir | |
| unzip -d $fdir $zipfile | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (steam:3329): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Modified extract from my db combining the two below */ | |
| BEGIN TRANSACTION; | |
| CREATE TABLE project ( | |
| serial CHAR(7) PRIMARY KEY DEFAULT ( SUBSTR('0000000' || ABS(RANDOM() % 9999999), -7) ) | |
| ); | |
| INSERT INTO project DEFAULT VALUES; | |
| INSERT INTO project DEFAULT VALUES; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # systemd main unit file for btrfs incremental snapshotting | |
| [Unit] | |
| Description=Execute btrfs snapshot routine for given volumes | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/usr/local/bin/btrfs_backup /home 48 # Choose partition mount point and num backups to keep here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| include system.gist(); | |
| void gist1(){ | |
| Print("Herro, I am a gist!"); | |
| } |
NewerOlder