Skip to content

Instantly share code, notes, and snippets.

@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active March 27, 2025 08:16
A badass list of frontend development resources I collected over time.
#! /usr/bin/env python
"""
Script that checks all uncommented domains in a nginx or apache config directory.
The domain is checked for the HTTP return code and
if the there is a DNS record for the domain.
Optionaly you can provide the ip of you server and the script will check
if the domain is hosted on your server or not.
@senko
senko / gist:2988592
Created June 25, 2012 13:31
Easy VirtualBox VM handling for the command line
#!/bin/bash -e
#
# Easy VirtualBox VM handling from the command line
BASE_TEMPLATE="<uid-of-template-vm>"
function show_help() {
echo "Usage: $0 [cmd]"
echo "Valid commands:"
echo " list List available virtual machines"
@jordanorelli
jordanorelli / fabextras.py
Created February 19, 2012 00:00
runtime-generated fabric connection functions, yay
from fabric.api import env
import os
import string
_conf_root = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'conf')
_conf_dirs = [x for x in os.listdir(_conf_root)
if os.path.isdir(os.path.join(_conf_root, x))
and x != 'base']
def _mk_sethost_fn(host_dicts, context):