- [att^=val] – the “begins with” selector
- [att$=val] – the “ends with” selector
- [att=val]* – the “contains” selector
<a href=http://github.com>GitHub</a> |
Most active GitHub users (git.io/top)
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
if environment == :production | |
on_stylesheet_saved do |file| | |
# pretty logging output when making a gzipp'ed file | |
gz_file = Pathname.new("#{file}.gz").relative_path_from(Pathname.new(project_path)) | |
Compass::Logger.new.record(:create, gz_file) | |
# This generates a file of the same name but ending in .gz | |
`gzip -f #{file}` | |
end | |
end |
{ | |
"files": { | |
"jQuery min": "http://code.jquery.com/jquery.min.js", | |
"Eric Meyer's reset": "http://meyerweb.com/eric/tools/css/reset/reset.css", | |
"normalize.css": "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
"Backbone.js": "http://documentcloud.github.com/backbone/backbone-min.js", | |
"Underscore.js": "http://documentcloud.github.com/underscore/underscore-min.js", | |
"Prefix free": "https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.min.js", | |
"jQuery Transit": "https://raw.github.com/rstacruz/jquery.transit/master/jquery.transit.js", | |
"plinejs": "http://labs.svn.octaveoctave.com/mathias/plinejs/build/plinejs-0.4-n.js", |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
Below is how I am currently structuring my CSS to be more object-oriented (with a little assistence from Sass):
- Base
- Helpers
- Variables (see my Guide to Sass)
- Mixins (careful and limited usage - see my Guide to Sass)
- Extensions (careful and limited usage - see my Guide to Sass)
- Layout
#Overview - setting up our git workflow
This set-up works for our team as we don't mind pushing directly to a development
branch, but this wouldn't work for other companies as the development branch could potentially get broken fairly quickly and with multiple developers working on this singular branch would be awkward to locate issues and fix - but for a small team this seems to work fine.
##Initial User Set-Up The first developer to work on the new project will go through this process:
-
<github>
Create repository on GitHub company account -
``