This file contains hidden or 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
| sudo dnf install make automake gcc gcc-c++ kernel-devel |
This file contains hidden or 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
| # --------------------------------------------- | |
| # list images, containers | |
| # --------------------------------------------- | |
| docker images | |
| docker ps -a | |
| # --------------------------------------------- | |
| # Delete all containers | |
| # --------------------------------------------- | |
| docker rm $(docker ps -a -q) |
This file contains hidden or 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
| winpty docker run -it --rm --net=host -v /dev/shm:/dev/shm -v $(pwd):/protractor webnicer/protractor-headless protractor.conf.js |
This file contains hidden or 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
| https://medium.com/javascript-scene/the-two-pillars-of-javascript-ee6f3281e7f3#.8z6euaknv | |
| https://medium.com/javascript-scene/the-two-pillars-of-javascript-pt-2-functional-programming-a63aa53a41a4#.s35bvil9x | |
| https://medium.com/javascript-scene/common-misconceptions-about-inheritance-in-javascript-d5d9bab29b0a#.u64l67weh | |
| https://vimeo.com/69255635 | |
| https://www.youtube.com/watch?v=8aGhZQkoFbQ | |
| https://www.youtube.com/watch?v=wfMtDGfHWpA |
This file contains hidden or 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
| ## source: http://www.if-not-true-then-false.com/2012/install-postgresql-on-fedora-centos-red-hat-rhel/ ## | |
| ## Add exclude to /etc/yum.repos.d/fedora.repo file ## | |
| $ nano /etc/yum.repos.d/fedora.repo | |
| [fedora] | |
| ... | |
| exclude=postgresql* | |
| ## Add exclude to /etc/yum.repos.d/fedora-updates.repo ## |
This file contains hidden or 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
| dnf update | |
| hostnamectl set-hostname --static "YOUR_HOST_NAME" | |
| rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm | |
| dnf install unzip | |
| dnf install pidgin | |
| dnf install VirtualBox | |
| dnf config-manager --add-repo=http://negativo17.org/repos/fedora-spotify.repo | |
| dnf install spotify-client |
This file contains hidden or 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
| git apply --ignore-space-change --ignore-whitespace in-memory-views.patch |
This file contains hidden or 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
| Shitty Java execs which override path settings on windows...: | |
| - windows/system32 | |
| - windows/syswow64 | |
| - programData/Oracle | |
| - anything in the path |
This file contains hidden or 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
| var Singleton = (function () { | |
| function Singleton() { | |
| this.asd = 'SSSSSS'; | |
| } | |
| Singleton.prototype.Singleton = function () { }; | |
| Singleton.getInstance = function () { | |
| return Singleton.INSTANCE; | |
| }; | |
| Singleton.prototype.sayWhat = function (attr) { | |
| return attr; |
This file contains hidden or 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
| git checkout feature_branch | |
| git rebase master | |
| git checkout master | |
| git merge --squash feature_branch | |
| # ------------------- | |
| git checkout feature/foo | |
| git pull --all | |
| git rebase develop |