I hereby claim:
- I am vicnicius on github.
- I am vicnicius (https://keybase.io/vicnicius) on keybase.
- I have a public key ASCDEtSYb5ByT6MbDO8mOo2I1S7hUcWnNjfayr78dK2_qQo
To claim this, I am signing this object:
Verifying that "vicnicius.id" is my Blockstack ID. https://onename.com/vicnicius |
I hereby claim:
To claim this, I am signing this object:
fuser -k 8080/tcp |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { | |
// no easing, no acceleration | |
linear: function (t) { return t }, | |
// accelerating from zero velocity | |
easeInQuad: function (t) { return t*t }, | |
// decelerating to zero velocity |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
sudo ifconfig lo0 alias 10.0.0.1 && echo "rdr pass on lo0 inet proto tcp from any to 10.0.0.1 port 80 -> 127.0.0.1 port 3000" | sudo pfctl -ef - |
sudo ipfw add 100 fwd 127.0.0.1,80 tcp from any to any 8080 in |
find /opt/lampp/htdocs -type d -exec chmod 755 {} \; | |
find /opt/lampp/htdocs -type f -exec chmod 644 {} \; |
function Animal(name){ | |
this.name = name; | |
} | |
Animal.prototype.getName = function(){ | |
return this.name; | |
} | |
function Dog(name){ | |
Animal.call(this, name); |
find ~/path-to-your-folder/* -type f -name *.jpg | xargs jpegoptom --all-progressive *.jpg |