$ sudo chmod -R 777 /usr/local/var/mysql/$ sudo /usr/local/mysql/support-files/mysql.server start
Credit : http://stackoverflow.com/questions/22227445/cannot-change-java-version-on-windows-8
- Goto
C:\ProgramData\Oracle\Java\javapath - Delete symlinks
- goto cmd and run
java -version
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
| rem // credit - https://blogs.oracle.com/pranav/entry/switch_between_different_jdk_v | |
| @echo off | |
| echo Setting JAVA_HOME | |
| set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_79 | |
| echo setting PATH | |
| set PATH=C:\Program Files\Java\jdk1.7.0_79\bin;%PATH% | |
| echo Display java version | |
| java -version |
Remove all java.exe, javaw.exe and javaws.exe from
- Windows\System32 and
- Windows\SysWOW64 folder. [Try step 2 if you have x64 system (Win 7 64 bits)]
http://stackoverflow.com/questions/32892117/osx-el-captain-apache-403-forbidden
- cd /etc/apache2/
- sudo mv httpd.conf httpd.conf.OLD
- sudo mv httpd.conf~previous httpd.conf
- sudo apachectl restart
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
| /* | |
| Animate.css by Daniel Eden (https://daneden.github.io/animate.css) | |
| is a collection of amazing css animations. On the other hand, Bootstrap | |
| transition(.js/.css) offers only few choices. So here is a work around | |
| found from SO/Google and little trial and error. The Solution is based | |
| on setTimeout function, that kickstarts a function after a specific period of time. | |
| */ | |
| (function($) { | |
| $(window).load(function(){ |
NewerOlder