- Update HISTORY.md
- Commit the changes:
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
- Update version number (can also be minor or major)
bumpversion patch
# Ignored by AndroidStudio | |
*.iws | |
# Folders related to builds | |
.gradle/ | |
*/build/ | |
# Local settings (regenerated by Android Studio) | |
.idea/workspace.xml | |
local.properties |
#!/bin/bash | |
# Parameters | |
socket="/run/foo.sock" | |
dump="/tmp/capture.pcap" | |
# Extract repetition | |
port=9876 | |
source_socket="$(dirname "${socket}")/$(basename "${socket}").orig" |
git add HISTORY.md
git commit -m "Changelog for upcoming release 0.1.1."
bumpversion patch
include RELEASE-VERSION | |
include version.py | |
# Anything else you normally use | |
include RELEASE-VERSION | |
include version.py | |
# Anything else you normally use | |
It seems that graphcis and fonts look rather blurry on some monitors when hooked up to a MacBook Pro (Retina). This might fix the issue for you:
Download patch-edid.rb from http://embdev.net/attachment/168316/patch-edid.rb
Execute in Terminal (without the $):
$ ruby patch-edid.rb
Copy produced folder (example: DisplayVendorID-22f0) to /System/Library/Displays/Overrides (authorize if needed, if the folder exists, backup it before)
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
# -*- coding: utf-8 -*- | |
import argparse | |
import random | |
import os | |
import cherrypy | |
from ws4py.server.cherrypyserver import WebSocketPlugin, WebSocketTool | |
from ws4py.websocket import WebSocket | |
from ws4py.messaging import TextMessage |
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import "fmt" | |
import "runtime" | |
import "strings" | |
func identifyPanic() string { | |
var name, file string |
#!/bin/sh -e | |
mkdir -p /usr/share/ca-certificates/cacert.org/ | |
curl http://www.cacert.org/certs/root.crt > /usr/share/ca-certificates/cacert.org/cacert.org.crt | |
curl http://www.cacert.org/certs/class3.crt >> /usr/share/ca-certificates/cacert.org/cacert.org.crt | |
sed -i 's/^\!\(cacert\)/\1/' /etc/ca-certificates.conf | |
update-ca-certificates |