DevDocs API Documentation
DevDocs combines multiple API documentations in a fast, organized, and searchable interface. Source: DevDocs API Documentation
DevDocs combines multiple API documentations in a fast, organized, and searchable interface. Source: DevDocs API Documentation
Put this at the bottom of your ~/.bashrc if [ ! -f /tmp/.sshauthsock ]; then eval $(ssh-agent -s) echo “export SSH_AUTH_SOCK=$SSH_AUTH_SOCK” > /tmp/.sshauthsock else source /tmp/.sshauthsock fi
DNSYO is a tool to help keep track of DNS propagation. In short, it’s dig, if dig queried over 1000 servers and collated their results. Source: samarudge/dnsyo: Check your DNS against over 1000 global DNS servers
use EVALFILE ‘test.p6’
Red is both an imperative and functional programming language introduced in 2011 by Nenad Rakocevic. Its syntax and general usage directly overlaps with that of the interpreted Rebol language (which was introduced in 1997). Yet the implementation choices of Red were geared specifically to overcoming limitations of Rebol, creating what Rakocevic calls a “full stack …
Just install this from the emacs package manager, add (ido-yes-or-no-mode) to your .emacs and you will never again have to laboriously type “yes” in response to “are you sure?” type queries from emacs.
If for some reason postfix isn’t resolving reverse DNS (and giving “unknown” in headers) then you might have configured some of your daemons to run in a chroot without copying the necessary configuration files in, do this by running the appropriate script for your platform under examples/chroot-setup.
The DCS-932LB1 webcam from D-Link is a very naughty webcam that pretends it has turned off upnp when it hasn’t. This is a security hole, opening up your webcam to the world and D-Link don’t seem to care. The best thing to do is disable upnp completely in your router, however you might need it. …
Continue reading ‘Disabling upnp for specific hosts in dd-wrt / openwrt routers’ »
Put this in your .emacs to automatically make your scripts (bash, python, perl, ruby, etc) executable: (add-hook ‘after-save-hook ‘executable-make-buffer-file-executable-if-script-p)
Hopefully you are already using ido or something similar to enhance emacs tab completion. I only use ido-switch-buffer ((ido-mode ‘buffer) in .emacs) as I dislike ido-find-file. What I don’t like is accidentally typing \C-x\C-b for buffer-menu-other-window (or whatever it is) when I meant \C-x b. So I put this in .emacs: (global-set-key “\C-x\C-b” ‘ido-switch-buffer)