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
| # You will need to make this file executable (chmod u+x) and run it with sudo | |
| apt-get update | |
| apt-get --fix-missing -y install build-essential m4 libncurses5-dev libssh-dev unixodbc-dev libgmp3-dev libwxgtk2.8-dev libglu1-mesa-dev fop xsltproc default-jdk | |
| mkdir -p /src/erlang | |
| cd /src/erlang | |
| wget http://www.erlang.org/download/otp_src_R15B01.tar.gz | |
| tar -xvzf otp_src_R15B01.tar.gz | |
| chmod -R 777 otp_src_R15B01 | |
| cd otp_src_R15B01 | |
| ./configure |
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
| ab -n 10000 -c 100 http://localhost:8010/web/project/spll/app.php/profiling/datalist?table=user | |
| This is ApacheBench, Version 2.3 <$Revision: 1528965 $> | |
| Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
| Licensed to The Apache Software Foundation, http://www.apache.org/ | |
| Benchmarking localhost (be patient) | |
| Completed 1000 requests | |
| Completed 2000 requests | |
| Completed 3000 requests | |
| Completed 4000 requests |
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 apt-get update | |
| sudo apt-get install git-core gcc autoconf make | |
| sudo apt-get install php5-dev php5-mysql | |
| #http://stackoverflow.com/questions/22555561/error-building-fatal-error-pcre-h-no-such-file-or-directory | |
| sudo apt-get install libpcre3-dev | |
| git clone git://github.com/phalcon/cphalcon.git | |
| cd cphalcon/build | |
| sudo ./install |
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
| http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers |
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
| http://www.thingiverse.com/ | |
| AGC-VR (Another Google Cardboard VR Goggles) | |
| http://www.thingiverse.com/thing:719080 | |
| http://www.hongkiat.com/blog/download-free-stl-3d-models/ |
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
| html { | |
| background: url(src/images/bg5.jpg) no-repeat center center fixed; | |
| -webkit-background-size: cover; | |
| -moz-background-size: cover; | |
| -o-background-size: cover; | |
| background-size: cover; | |
| } |
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
| http://jsfiddle.net/3J25M/2/ | |
| ostrali http://www.seek.com.au/job |
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 newScope = scope.$new(); // create a new scope from the current scope | |
| var content = $compile(template)(newScope); // compile and link to the new scope | |
| element.append(content); // add to the DOM | |
| // .. then later, we want to update the content of the element ... | |
| newScope.$destroy(); // destroy the scope and all child scopes | |
| var newScope2 = scope.$new(); // create a new scope | |
| var content2 = $compile(template2)(newScope2); // compile and link | |
| content.replaceWith(content2); // replace the html content with the new content |
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
| function closeOnLoad(myLink) | |
| { | |
| var newWindow = window.open(myLink); | |
| setTimeout( | |
| function() | |
| { | |
| newWindow.close(); | |
| }, | |
| 5000 | |
| ); |
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
| http://www.asteriskdocs.org/en/3rd_Edition/asterisk-book-html-chunk/installing_configuring_odbc.html |