gsettings set com.canonical.desktop.interface scrollbar-mode normal
Install cinnamon.
| { | |
| "segments": { | |
| "left": [ | |
| { | |
| "function": "powerline.segments.shell.mode" | |
| }, | |
| { | |
| "function": "powerline.segments.common.net.hostname", | |
| "priority": 10, | |
| "args": { |
| sudo python -m smtpd -n -c DebuggingServer localhost:25 |
| --- | |
| # ^^^ YAML documents must begin with the document separator "---" | |
| # | |
| #### Example docblock, I like to put a descriptive comment at the top of my | |
| #### playbooks. | |
| # | |
| # Overview: Playbook to bootstrap a new host for configuration management. | |
| # Applies to: production | |
| # Description: | |
| # Ensures that a host is configured for management with Ansible. |
| #https://www.digitalocean.com/community/tutorials/how-to-build-android-apps-with-jenkins | |
| #https://github.com/thecodepath/android_guides/wiki/Building-Gradle-Projects-with-Jenkins-CI | |
| #http://www.snap-interactive.com/blog/automating-our-android-app-with-gradle-and-deploygate/ | |
| ANDROID_SDK=android-sdk_r22.6.2-linux.tgz | |
| wget http://dl.google.com/android/$ANDROID_SDK | |
| tar zxvf $ANDROID_SDK | |
| #Make sure the Android tools are on the PATH |
| #!/bin/sh | |
| # This script runs a configure script with the Android NDK toolchain | |
| # You may need to adjust the COMPILE_TARGET and ANDROID_API variables | |
| # depending on your requirements. | |
| # | |
| # Call this script in a directory with a valid configure script. | |
| # Example: PREFIX=${PWD}/bin android-configure.sh | |
| # Set the ANDROID_NDK variable to the root |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft] | |
| "SPONSORS"="DISABLE" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft] | |
| "SPONSORS"="DISABLE" |
| #!/bin/bash | |
| lame_opts=" --vbr-new -V 2 -B 256 " | |
| for x in "${@}" | |
| do | |
| FLAC=${x} | |
| MP3="${FLAC%.flac}.mp3" | |
| [ -r "$FLAC" ] || { echo can not read file \"$FLAC\" >&1 ; exit 1 ; } ; |
| import socket | |
| def netcat(hostname, port, content): | |
| s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| s.connect((hostname, port)) | |
| s.sendall(content) | |
| s.shutdown(socket.SHUT_WR) | |
| while 1: | |
| data = s.recv(1024) | |
| if data == "": |
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| (our $Prog) = ($0 =~ m%([^/]+)$%); | |
| use Getopt::Long; | |
| use File::Slurp; | |
| use Net::Amazon::EC2; | |
| my $aws_access_key_id_file = $ENV{AWS_ACCESS_KEY_ID}; |