A Pen by Evan Donovan on CodePen.
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/sh | |
# get entire website via wget | |
# from https://www.linuxjournal.com/content/downloading-entire-web-site-wget | |
# replace EXAMPLE.COM with your site | |
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ |
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
// Override addressfield_tokens themeing function | |
// Requires addressfield_tokens module as well as addressfield | |
// Add to template.php and change THEMENAME to name of your theme, then clear cache | |
function THEMENAME_addressfield_formatter__components($vars) { | |
$loc = $vars['address']; | |
$out = ''; | |
// Note added RDFa microdata - https://schema.org/PostalAddress | |
// Organization name if present (nothing in first or last name fields) |
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/expect -f | |
# exp_internal 1 ;# uncomment to turn on expect debugging | |
set timeout -1 | |
USER="user" | |
HOST="127.0.0.1" | |
SRC="/src/dir/here" | |
DST="/dst/dir/here" | |
# creates an rsync process that will rsync with excluded directories |
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 | |
# set user | |
USER="usr" | |
# set port | |
PORT="22" | |
# set remote IP (put yours here) | |
HOST="127.0.0.1" |
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
module DMOZ | |
FIELDS = { | |
"dmoz.csv" => [ | |
Class.new(Object) do | |
def name | |
:title | |
end | |
end.new, | |
Class.new(Object) do | |
def name |
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
class JobExecutor | |
attr_reader :data_store, :fields | |
def initialize(fields) | |
@jobs = [] | |
@threads_working = 0 | |
@lock = Mutex.new | |
@data_store = DataStore.new(fields) | |
@fields = fields |
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
## Task class | |
require 'mysql' | |
module OrgSocGraph | |
FIELDS = { | |
"orgs.csv" => [ | |
Class.new(Object) do | |
def name | |
:description | |
end |
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
// leadsRoundRobin.trigger: | |
trigger leadRoundRobin on Lead (before insert, before update) { | |
// | |
//Check if assignment owner has changed | |
// | |
Map<Integer,Id> queueIds = new Map<Integer,Id>(); //Trigger index --> Queue ID | |
Integer idx = 0; | |
for (Lead l : Trigger.new) |
NewerOlder