Examples:
Ruby:
variable = 5
if variable > 4 then
puts variable.to_s + " is over 4"
puts "It's exactly five" if variable == 5
elsif variable == 4 then
# - Find MyGUI includes and library | |
# | |
# This module defines | |
# MYGUI_INCLUDE_DIRS | |
# MYGUI_LIBRARIES, the libraries to link against to use MYGUI. | |
# MYGUI_LIB_DIR, the location of the libraries | |
# MYGUI_FOUND, If false, do not try to use MYGUI | |
# | |
# Copyright © 2007, Matt Williams | |
# |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
import re | |
import sys | |
import urllib2 | |
from subprocess import call | |
from platform import machine |
Current Server: | |
IP: 88.206.179.92 | |
Port: 4567 | |
Message: | |
Header - 5 bytes, network order: | |
Flags - 1 byte: | |
SYN - 1 | |
ACK - 2 |
Examples:
Ruby:
variable = 5
if variable > 4 then
puts variable.to_s + " is over 4"
puts "It's exactly five" if variable == 5
elsif variable == 4 then
gets.to_i # I don't care about the number :D | |
gets # Friendships: | |
direct_friends = {} | |
indirect_friends = {} | |
until /Queries/ =~ (data = gets) do # Until it reads the line Queries: | |
names = data.split # Split on space | |
# Create entries in the friend dictionaries if they don't exist |
#include <iostream> | |
using namespace std; | |
int main(int argc, char* argv[]) { | |
// Node struct | |
struct Node { | |
int data; | |
Node *next; | |
}; |
NB; (An updated version of this guide can be found on the wiki)
cinst git.install
if you have Chocolatey)#pragma once | |
#include <functional> | |
#include <vector> | |
template<typename... Args> | |
class Event | |
{ | |
public: | |
typedef std::function<void(Args...)> EventHook; |
#include <yojimbo.h> | |
#include <miniz.h> | |
class PackedMessage : public yojimbo::BlockMessage | |
{ | |
public: | |
enum { MsgType = 0x00 }; | |
template <typename Stream> | |
bool Serialize(Stream& stream) |