Skip to content

Instantly share code, notes, and snippets.

@Mrkisha
Mrkisha / gist:5461388
Created April 25, 2013 17:07
mount win partition and remove hibernate file
mount -t ntfs-3g -o remove_hiberfile /dev/sda2 /media/lenovo/
@Mrkisha
Mrkisha / SublimeText User Settings
Last active June 10, 2023 00:30
Preferences.sublime-settings C:\Users\%USERNAME%\AppData\Roaming\Sublime Text 3\Packages\User
{
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"font_face": "Droid Sans Mono",
"font_size": 10,
"ignored_packages":
[
"Vintage"
],
"soda_classic_tabs": false,
"soda_folder_icons": true,
@Mrkisha
Mrkisha / gist:4f9e7b1ac02f2e625134
Created May 20, 2014 20:25
Ubuntu APC install and config
sudo apt-get install php-pear php5-dev make libpcre3-dev
sudo pecl install apc
#dit the php.ini file and add a line at the end
sudo nano /etc/php5/apache2/php.ini
#Add the following line to the bottom of it:
extension = apc.so
@Mrkisha
Mrkisha / gist:e1dae37c2775ab63ceef
Created June 25, 2014 13:03
Symfony2 custom Constraint Validation import existing constraints
<?php
use Symfony\Component\Validator\Constraints\Email;
use Symfony\Component\Validator\Constraints\EmailValidator;
class RequireWorkInfoValidator extends ConstraintValidator
{
[
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": { "single_line": false } },
{ "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} }
]
{
"color_scheme": "Packages/Color Scheme - Default/iPlastic.tmTheme",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"font_size": 11,
"ignored_packages":
[
"Vintage"
],
PS1='\[\e[0;32m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] \[\e[1;32m\]\$\[\e[m\] \[\e[1;37m\]'
@Mrkisha
Mrkisha / .gitconfig
Created August 19, 2014 22:25 — forked from pksunkara/config
[user]
name = Pavan Kumar Sunkara
email = [email protected]
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
How To Install Java on Ubuntu with Apt-Get
TAGGED IN: MISCELLANEOUS, UBUNTU, JAVA • DIFFICULTY: BEGINNER
Introduction
As a lot of articles and programs require to have Java installed, this article will guide you through the process of installing and managing different versions of Java.
Installing default JRE/JDK
This is the recommended and easiest option. This will install OpenJDK 6 on Ubuntu 12.04 and earlier and on 12.10+ it will install OpenJDK 7.
Installing Java with apt-get is easy. First, update the package index:
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer