(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
#!/bin/sh | |
# Modified by [email protected] | |
# | |
# A sample /etc/unicorn/my_app.conf | |
# RAILS_ENV=production | |
# RAILS_ROOT=/var/apps/www/my_app/current | |
. /etc/rc.subr | |
USER="your_user_name" |
#!/bin/bash | |
## vim:ts=4:sw=4:tw=100:ai:nowrap:formatoptions=croqln: | |
#*******************************************************# | |
# tumblr.sh # | |
# written by Rahul Kumar # | |
# 2010/01/01 # | |
# Post, edit, delete, read tumblr.com # | |
#*******************************************************# | |
# References: http://www.tumblr.com/api#api_write | |
# DONE : add read |
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>template</groupId> | |
<artifactId>template</artifactId> | |
<version>1.0</version> |
#include "ofMain.h" | |
#include "ofxTiming.h" | |
class ofApp : public ofBaseApp { | |
public: | |
ofVideoGrabber grabber; | |
DelayTimer delay; | |
ofTrueTypeFont font; | |
string description; | |
SSH into Root
$ ssh [email protected]
Change Root Password
I made these steps using the tools provided by DigitalOcean, but these steps should work verbatim on any Ubuntu Server. | |
Download Terminfo: http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/install/terminfo | |
Download Termcap: http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/install/termcap | |
I. Pre-Requisites: | |
apt-get update | |
apt-get install make g++ linux-libc-dev libncurses5-dev libnspr4-dev cvs libcap2-dev gdb zip unzip lrzsz gkermit | |
apt-get install dosemu | |
II. BBS Install: |
desc 'Setup logger' | |
task :verbose => [:environment] do | |
logger = Rails.logger = ActiveRecord::Base.logger = Logger.new(STDOUT) | |
end |
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14.1/userguide/gradle_daemon.html. | |
FAILURE: Build failed with an exception. | |
* Where: | |
Build file '/Users/zul/Desktop/RegistrationTest/app/build.gradle' line: 1 | |
* What went wrong: | |
A problem occurred evaluating project ':app'. | |
> java.lang.UnsupportedClassVersionError: com/android/build/gradle/AppPlugin : Unsupported major.minor version 52.0 |
NSDictionary* bodyObject = @{ | |
@"blocks": @[ | |
@{ | |
@"text": @"First lorem ipsum lorem ipsum ipsum lorem ipsum ipsum lorem ipsum ipsum lorem ipsum ipsum lorem ipsum", | |
@"photoUrl": @"http://www.ru/image.jpeg", | |
@"position": @2, | |
@"blockType": @{ | |
@"objectId": @"96nLTrtA6n" | |
} | |
}, |