An introduction to curl using GitHub's API
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
// Native selectors. | |
(function(window, document) { | |
'use strict'; | |
var noop = function() { | |
}; | |
// DOCUMENT LOAD EVENTS | |
// not needed at the bottom of the page | |
document.addEventListener('DOMContentLoaded', noop); |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
"scripts": { | |
"clean": "rimraf dist/*", | |
"prebuild": "npm run clean -s", | |
"build": "npm run build:scripts -s && npm run build:styles -s && npm run build:markup -s", | |
"build:scripts": "browserify -d assets/scripts/main.js -p [minifyify --compressPath . --map main.js.map --output dist/main.js.map] | hashmark -n dist/main.js -s -l 8 -m assets.json 'dist/{name}{hash}{ext}'", | |
"build:styles": "stylus assets/styles/main.styl -m -o dist/ && hashmark -s -l 8 -m assets.json dist/main.css 'dist/{name}{hash}{ext}'", | |
"build:markup": "jade assets/markup/index.jade --obj assets.json -o dist", | |
"test": "karma start --singleRun", | |
"watch": "parallelshell 'npm run watch:test -s' 'npm run watch:build -s'", | |
"watch:test": "karma start", |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Last updated March 13, 2024
This Gist explains how to sign commits using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.
Additionally, 1Password now supports signing Git commits with SSH keys and makes it pretty easy-plus you can easily configure Git Tower to use it for both signing and ssh.
For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.
from django.core.urlresolvers import reverse | |
from django.test import TestCase, Client | |
from django.contrib.admin.sites import AdminSite | |
from gloodny.models import * | |
from django.forms.models import model_to_dict | |
class ChangeHistoryTests(TestCase): | |
fixtures = ['init_gloodny.json'] |
FROM ubuntu:18.04 | |
RUN apt-get update && apt-get install -y wget git curl | |
RUN apt-get update && apt-get install -y --no-install-recommends openjdk-8-jdk | |
RUN apt-get update && apt-get install -y maven ant ruby rbenv make | |
RUN wget -q -O - http://pkg.jenkins-ci.org/debian-stable/jenkins-ci.org.key | apt-key add - | |
RUN echo deb http://pkg.jenkins-ci.org/debian-stable binary/ >> /etc/apt/sources.list | |
RUN apt-get update && apt-get install -y jenkins | |
RUN mkdir -p /var/jenkins_home && chown -R jenkins /var/jenkins_home | |
ADD init.groovy /tmp/WEB-INF/init.groovy |
Type | Emoji | code |
---|---|---|
feat | β¨ | :sparkles: |
fix | π | :bug: |
docs | π | :books: |
style | π | :gem: |
refactor | π¨ | :hammer: |
perf | π | :rocket: |
test | π¨ | :rotating_light: |
build | π¦ | :package: |