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
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
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
| jake@macbook ~/dev/soundnode-app ±mpris⚡ » debuild | |
| This package has a Debian revision number but there does not seem to be | |
| an appropriate original tar file or .orig directory in the parent directory; | |
| (expected one of soundnodeapp_0.6.1.orig.tar.gz, soundnodeapp_0.6.1.orig.tar.bz2, | |
| soundnodeapp_0.6.1.orig.tar.lzma, soundnodeapp_0.6.1.orig.tar.xz or soundnode-app.orig) | |
| continue anyway? (y/n) y | |
| dpkg-buildpackage -rfakeroot -D -us -uc -I -i | |
| dpkg-buildpackage: source package soundnodeapp | |
| dpkg-buildpackage: source version 0.6.1-1 | |
| dpkg-buildpackage: source distribution wily |
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
| Install Snort and Barnyard2 virtualbox ubuntu 12.04 and 14.04 | |
| Aug 2014: | |
| Snort: | |
| ... in virtualbox set Network + Advanced 'Promiscuous Mode' to 'Allow All' | |
| sudo apt-get install snort | |
| ps aux | grep -i snort | |
| sudo service snort stop | |
| sudo nano /etc/snort/snort.conf |
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
| using Gtk; | |
| class program : Gtk.Window { | |
| public program() { | |
| var headerbar = new Gtk.HeaderBar(); | |
| headerbar.show_close_button = true; | |
| var window = new Gtk.Window(); | |
| window.window_position = WindowPosition.CENTER; | |
| window.set_default_size(200, 200); |