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
function git-sshurl() { | |
local OldUrl=`git remote -v | sed -E -n 's/origin\s*(.*) \(push\)/\1/p'` | |
local NewUrl=`echo $OldUrl | sed -E 's#https://(.*)/(.*)/(.*)#git@\1:\2/\3#'` | |
echo "old url:" $OldUrl | |
echo "new url:" $NewUrl | |
git remote set-url origin $NewUrl | |
} |
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(bench). | |
-compile(export_all). | |
%% Luke Gorrie's favourite profiling macro. | |
-define(TIME(Tag, Expr), | |
(fun() -> | |
%% NOTE: timer:tc/4 does an annoying 'catch' so we | |
%% need to wrap the result in 'ok' to be able to | |
%% detect an unhandled exception. | |
{__TIME, __RESULT} = |
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
virtualenv env --no-site-packages | |
. env/bin/activate | |
pip install pytest==2.6.1 | |
pip install git+https://github.com/pysimplesoap/[email protected] | |
pip install requests==2.3.0 | |
pip install xmltodict==0.9.0 | |
pip install hexdump==2.0 |
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
virtualenv env --no-site-packages | |
. env/bin/activate | |
pip install pytest==2.6.1 | |
pip install requests==2.3.0 | |
pip install git+https://github.com/ten0s/oneapi-python.git@my_changes |
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/env python | |
import json | |
import sys, subprocess | |
def get_history_ids(image_id): | |
p = subprocess.Popen("docker history -q " + image_id, | |
stdout=subprocess.PIPE, | |
shell=True) | |
(out, _err) = p.communicate() |
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/env escript | |
% -*- mode: erlang -*- | |
main([BeamFile]) -> | |
{ok,{_,[{abstract_code,{_,AC}}]}} = beam_lib:chunks(BeamFile,[abstract_code]), | |
io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]). |
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
1. Download and Install VirtuaBox 4.3.20 | |
---------------------------------------- | |
Windows | |
http://download.virtualbox.org/virtualbox/4.3.20/VirtualBox-4.3.20-96997-Win.exe | |
Linux | |
https://www.virtualbox.org/wiki/Linux_Downloads | |
2. Start Virtualbox UI and make sure you are able to create 64-bit guests | |
------------------------------------------------------------------------- | |
Enable virtualization in BIOS otherwise. |
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 | |
if [[ $# -lt 1 ]]; then | |
echo "Usage: mono-publish-tar VERSION" | |
exit 1 | |
fi | |
ver=$1 | |
dir_name=poweralleyui-${ver} | |
tar_name=${dir_name}.tar.gz |
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
virtualenv env --no-site-packages | |
. env/bin/activate | |
pip install pytest==2.6.1 | |
pip install requests==2.3.0 | |
pip install xmltodict==0.9.0 | |
pip install hexdump==2.0 | |
pip freeze > requirements.txt |
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
read_lines(Acc) -> | |
case file:read_line(standard_io) of | |
{ok, Line} -> | |
Line2 = string:strip(Line, right, $\n), | |
read_lines([Line2 | Acc]); | |
eof -> | |
lists:reverse(Acc) | |
end. |
OlderNewer