Skip to content

Instantly share code, notes, and snippets.

@DarkPark
DarkPark / csvfile.py
Created January 6, 2014 18:43
Fix for Anki to increase cards size limit on import
# /usr/share/anki/anki/importing/csvfile.py
import sys
csv.field_size_limit(sys.maxsize)
@DarkPark
DarkPark / tips.mysql.sh
Created December 20, 2013 16:04
mysql db management
# set pass in command line (non-interactive)
mysqladmin -u root password "some_new_password"
# set pass in command line (interactive)
mysqladmin -u root password
# login
mysql -u[name] -p[pass] [database]
# create backup
@DarkPark
DarkPark / tips.linux.sh
Last active December 31, 2015 21:28
set of useful commands
# turn off the given monitor
xrandr --output LVDS --off
# enable/disable composting
xfconf-query --channel=xfwm4 --property=/general/use_compositing --type=bool --toggle
# exit the script if try to use an uninitialized variable
set -u
# exit the script if any statement returns a non-true return value
@DarkPark
DarkPark / mk.java.sh
Created November 24, 2013 14:20
How to install oracle JRE on Ubuntu.
#!/bin/bash
# step 1
# download tar.gz from oracle site http://www.oracle.com/technetwork/java/javase/downloads/index.html
# for example jre-7u45-linux-i586.tar.gz
# step 2
# prepare build tools
sudo apt-get install java-package