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 guide | |
| 1.) gitconfig | |
| cd | |
| .gitconfig | |
| nano .gitconfig | |
| 2.) внутрь .gitconfig |
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
| see all update rc | |
| find /etc/rc*.d | |
| add to update rc | |
| update-rc.d apache2 defaults | |
| remove from update rc |
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 install sendmail | |
| sudo service sendmail 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
| you need to edit /etc/default/apport | |
| # Graphical | |
| gksu gedit /etc/default/apport | |
| or | |
| # Command line | |
| sudo nano /etc/default/apport |
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
| gsettings set com.canonical.Unity.Panel systray-whitelist "['all']" | |
| sudo killall -9 skype | |
| restart skype on your machine |
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
| Go to Preferences -> Settings -> More -> Syntax Specific -> User and add these settings: | |
| { | |
| "tab_size": 2, | |
| "translate_tabs_to_spaces": true | |
| } | |
| Restarting should not be necessary, although in some instances it can be. |
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://graph.facebook.com/id/picture?type=small | |
| http://graph.facebook.com/id/picture?type=square | |
| http://graph.facebook.com/id/picture?type=large | |
| http://graph.facebook.com/id/picture?type=normal |
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://github.com/wesbos/aprilFools.css |
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
| Port jQuery.live to jQuery 1.9+ while you wait for your application to migrate. Add this to your JavaScript file. | |
| // Borrowed from jQuery 1.8.3's source code | |
| jQuery.fn.extend({ | |
| live: function( types, data, fn ) { | |
| if( window.console && console.warn ) { | |
| console.warn( "jQuery.live is deprecated. Use jQuery.on instead." ); | |
| } | |
| jQuery( this.context ).on( types, this.selector, data, fn ); |
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
| Check your */etc/ssh/sshd_config* file. There, find the line which says | |
| PasswordAuthentication no | |
| That line needs to be modified to say yes instead of no. Also, restart the sshd server afterwards. | |
| sudo /etc/init.d/ssh restart | |