Replaced by https://github.com/Jonhoo/seriex
🤦♂️
This file contains 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
(require 'generic-x) ;; we need this | |
(define-generic-mode | |
'atg-mode ;; name of the mode to create | |
'("---") ;; comments start with '!!' | |
'("Path" "Step") ;; some keywords | |
'(("=" . 'font-lock-function-name-face)) ;; '=' is an operator | |
'("\\.atg$") ;; files for which to activate this mode | |
nil ;; other functions to call | |
"A mode for SRI SAL ATG generated files" ;; doc string for this mode |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Graphical directory listing of <?php echo basename ( realpath ( '.' ) ); ?></title> | |
<meta charset="utf-8" /> | |
<style type="text/css"> | |
* { | |
margin: 0; | |
padding: 0; | |
border: none; |
This file contains 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
A simple script that estimates the progress, speed and probable completion time of a copy operation. | |
It was originally written for a QNAP NAS running busybox, but should be compatible with any busybox install. | |
Should also work for most Linux systems, but the options to du and df will have to be modified since the busybox uses a simplified syntax (The -m for both of them is to get the output in MB). | |
The script is called with the same arguments given to cp | |
The script estimates by using: | |
- Difference in df-used for speed | |
- Difference in du for percentage | |
- A combination of the above for ETC (Estimated Time to Completion) |
This file contains 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
#!/bin/bash | |
if [ -n "$1" ]; | |
then | |
if [ -e "$HOME/.openvpn/$1.ovpn" ] | |
then | |
sudo openvpn --cd ~/.openvpn --config "$1.ovpn" --daemon | |
STATUS=$? | |
if [ $STATUS -eq 0 ] | |
then | |
echo "Connected to VPN network $1" |
Replaced by this repository https://github.com/Jonhoo/netcfg-wifi-scan
This file contains 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
try{ | |
document.createEvent("TouchEvent"); | |
// Here we're ensured touch capabilities | |
var scroll = document.getElementById('myid'); | |
var start = null; | |
var clickIfEnd = true; | |
scroll.addEventListener('touchstart', function (e) { | |
start = e.touches[0].pageX; | |
clickIfEnd = true; |
This file contains 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
"getElementsByClassName"in document||(document.getElementsByClassName=document.evaluate?function(a){var a="[contains(concat(' ', @class, ' '), ' "+a+" ')]",d="http://www.w3.org/1999/xhtml"===document.documentElement.namespaceURI?"http://www.w3.org/1999/xhtml":null,b;try{b=document.evaluate(".//*"+a,document,d,0,null)}catch(c){b=document.evaluate(".//*"+a,document,null,0,null)}return b}:function(a){for(var a=RegExp("(^|\\s)"+a+"(\\s|$)"),d=document.all||document.getElementsByTagName("*"),b=[],c=0,e= | |
d.length;c<e;c+=1)a.test(d[c].className)&&b.push(d[c]);return b}); |
This file contains 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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use IMDB::Film; | |
my $promptDelete = 0; | |
if (@ARGV > 0 and $ARGV[0] eq "-d") { | |
$promptDelete = 1; | |
shift @ARGV; | |
} |
This file contains 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
#!/bin/bash | |
cat $1 \ | |
| tr '\r\n' ' ' \ | |
| perl -pe 's:/\*.*?\*/::g' \ | |
| sed \ | |
-e 's/\s\+/ /g' \ | |
-e 's/\([#\.:]\)\s\?/\1/g' \ | |
-e 's/\s\?\([;{}]\)\s\?/\1/g' \ | |
-e 's/\s\?\([,!+~>]\)\s\?/\1/g' \ | |
-e 's/;}/}/g' \ |
OlderNewer