Skip to content

Instantly share code, notes, and snippets.

View peterjwest's full-sized avatar

Peter West peterjwest

  • Oxford, UK
View GitHub Profile
@peterjwest
peterjwest / selector.css
Created January 28, 2015 13:29
The longest CSS selector I've ever seen
html .cmsms_color_scheme_fourth h1,
html .cmsms_color_scheme_fourth h2,
html .cmsms_color_scheme_fourth h3,
html .cmsms_color_scheme_fourth h4,
html .cmsms_color_scheme_fourth h5,
html .cmsms_color_scheme_fourth h6,
html .cmsms_color_scheme_fourth h1 a,
html .cmsms_color_scheme_fourth h2 a,
html .cmsms_color_scheme_fourth h3 a,
html .cmsms_color_scheme_fourth h4 a,
@peterjwest
peterjwest / dna.py
Created August 6, 2014 09:51
DNA python
from __future__ import division
print '\nExample 1'
# Input DNA 1
dna = "ACTGATCGATTACGTATAGTATTTGCTATCATACATATATATCGATGCGTTCAT"
print 'DNA:', dna
# Calculate AT count
A_count = dna.count("A")
@peterjwest
peterjwest / prune.sh
Last active August 29, 2015 14:03
Delete merged branches
# Removes deleted branches on remote, locally deletes all merged branches which are not the current branch or master or develop
git checkout develop && git fetch --prune && git branch --merged | grep -E -v "^((\* )|\s*(develop|master)$)" | xargs git branch -d
@peterjwest
peterjwest / pad.js
Last active August 29, 2015 14:02
Left pad a string in javascript
var pad = function(string, length, char) {
return (new Array(length).join(char[0] || '0') + string).slice(-Math.max(string.toString().length, length));
};
@peterjwest
peterjwest / 0-README.md
Last active August 29, 2015 13:59
Intercepting a request Rails, express.js and Symfony2

How to intercept any request that matches a route (in this case '/admin') in three different languages/frameworks.

@peterjwest
peterjwest / gist:6540612
Created September 12, 2013 16:47
Understanding blocks in ruby
# Normally a block is passed after the arguments
[1,2,3].map(){ |i| i.next }
# & passes the argument as a block
[1,2,3].map(&:next)
# & arguments are cast to a Proc
[1,2,3].map(&:next.to_proc)
# Procs are already procs
@peterjwest
peterjwest / gist:5459304
Last active August 26, 2023 23:29
var_dump() sucks

Better variable dumping for PHP

  • debug($variable) prints html and source code friendly variable information
  • inspect($variable) returns the variable information as a string

Associative arrays are printed as:

{
  key: 'value'

'key 2': 'value 2'

@peterjwest
peterjwest / gist:5169077
Last active December 14, 2015 23:58
Highlighting Chrome HTML5 validation bug (now fixed)
<!DOCTYPE html>
<html>
<head><title>Novalidate bug test</title></head>
<style>
button {
border: 0 background: red;
}
button span {
background: green;
}
@peterjwest
peterjwest / specifity.md
Last active March 4, 2016 13:47
CSS Specificity

Some html:

<a id="redLink" class="red link" href="#">Click me!</a>

CSS specifity, low to high:

a { color: red; }
body a { color: red; }
a.red { color: red; }

body a.red { color: red; }

@peterjwest
peterjwest / gist:3713112
Created September 13, 2012 09:16
Mandango embedded woes
public function setSegments($segments)
{
$mandango = $this->getMandango();
$segments = array_map(function($name) use ($mandango) {
return $mandango->create('Model\Intervention\InterventionSetSegment')->setName($name);
}, $segments);
$segmentGroup = parent::getSegments();
$segmentGroup->remove($segmentGroup->all());