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
| # Git branch auto-clone script | |
| # https://gist.github.com/kenaniah/7af6efe09df138a8a2b9 | |
| # BASE should point to a bare git repo | |
| # DEST should point to a directory for branches to be checked out into | |
| # Define where things are pulled from | |
| BASE=$1 | |
| DEST=$2 | |
| # Fetch to the source repo |
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
| fswatch -r . --exclude "/target/" -o | xargs -n1 -I{} cargo test |
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
| <# | |
| .SYNOPSIS | |
| Manages Shadow Groups in Active Directory | |
| .DESCRIPTION | |
| This script automatically manages the member users of groups placed in | |
| "OU=Shadow Groups,DC=contoso,DC=com". Users and computers that are contained | |
| by OUs that match the name of a shadow group are automatically added to that group, | |
| and users that are no longer contained by a matching OU are removed from | |
| the group. |
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
| <# | |
| .SYNOPSIS | |
| Manages Shadow Groups in Active Directory | |
| .DESCRIPTION | |
| This script automatically manages the member users of groups placed in | |
| "OU=Shadow Groups,DC=mydomain,DC=local". Users and computers that are contained | |
| by OUs that match the name of a shadow group are automatically added to that group, | |
| and users that are no longer contained by a matching OU are removed from | |
| the group. |
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
| #!/bin/bash | |
| # This isn't really a git hook, but it's manually called it after every fetch run. | |
| # This script essentially wraps the actual post-receive hook. | |
| # Build the standard input for the post-receive hook | |
| cat refs/heads/* | paste TRAC_HEAD - > post-fetch.tmp | |
| find refs/heads/* | paste post-fetch.tmp - | awk '{print $1, $2, $3}' > post-fetch.stdin | |
| # Call the post-receive hook just like the commits were pushed |
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
| #!/usr/bin/env ruby | |
| require 'colorize' | |
| require 'sequel' | |
| DB = Sequel.connect "postgres:///ospd" | |
| # Helper method | |
| class String | |
| def counts |
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
| module Versioned | |
| module V0 | |
| def method_missing name | |
| puts "#{name} not found".red | |
| end | |
| end | |
| module V1 | |
| def foo | |
| puts "foo 1" |
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
| class Related < Sequel::Model; end | |
| class Parent < Sequel::Model | |
| plugin( | |
| :class_table_inheritance, | |
| key: :type, | |
| table_map: { | |
| :Child => :children | |
| } | |
| ) |
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
| -- | |
| -- PostgreSQL database dump | |
| -- | |
| SET statement_timeout = 0; | |
| SET lock_timeout = 0; | |
| SET client_encoding = 'UTF8'; | |
| SET standard_conforming_strings = on; | |
| SET check_function_bodies = false; | |
| SET client_min_messages = warning; | |
| -- |
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
| const reactComponent = React.createClass({ | |
| mixins: [], | |
| propTypes: {}, | |
| // Initial defaults | |
| //getDefaultProps: function(){}, | |
| //getInitialState: function(){}, | |
| // Property change lifecycle |
NewerOlder