(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
:
package main | |
import ( | |
"fmt" | |
) | |
type Stack struct { | |
top *Element | |
size int | |
} |
package com.comphenix.example; | |
import org.bukkit.Color; | |
import org.bukkit.event.Listener; | |
import org.bukkit.inventory.ItemStack; | |
import org.bukkit.inventory.meta.LeatherArmorMeta; | |
import org.bukkit.plugin.java.JavaPlugin; | |
import com.comphenix.protocol.Packets; | |
import com.comphenix.protocol.ProtocolLibrary; |
{ | |
"pistonExtension":{ | |
"0":[ | |
[ | |
0.0, | |
0.0, | |
0.0, | |
1.0, | |
0.25, | |
1.0 |
// You can test this online at: https://play.golang.org/p/hhayRT1VWgj | |
package main | |
import ( | |
"crypto/sha1" | |
"encoding/hex" | |
"fmt" | |
"io" | |
"strings" | |
) |
package com.comphenix.example; | |
import java.io.BufferedInputStream; | |
import java.io.DataInput; | |
import java.io.DataInputStream; | |
import java.io.DataOutput; | |
import java.io.DataOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.OutputStream; |
package de.zh32.slp; | |
import com.google.gson.Gson; | |
import java.io.ByteArrayOutputStream; | |
import java.io.DataInputStream; | |
import java.io.DataOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.OutputStream; |
<?php | |
class Skin { | |
public static function get($username) { | |
$steve = in_array(strtolower($username), array("steve", "player", "default")); | |
if(!$steve) $contents = self::fetch('http://skins.minecraft.net/MinecraftSkins/' . $username . '.png'); | |
$defaultImage = WideImage::load("char.png"); | |
$defaultType = "image/png"; | |
if ($steve || $contents === false) { | |
$img = $defaultImage; |
package com.comphenix.example; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.Map; | |
import java.util.UUID; | |
import java.util.concurrent.ConcurrentMap; | |
import java.util.concurrent.TimeUnit; |
package com.comphenix.example; | |
import java.sql.Ref; | |
import java.util.Collections; | |
import java.util.UUID; | |
import net.minecraft.util.io.netty.channel.Channel; | |
import org.bukkit.Material; | |
import org.bukkit.command.Command; |