less {filename}
| Navigation | |
|---|---|
SPACE |
forward one window |
b |
backward one window |
d |
forward half window |
| # Generate a self-signed Certificate and a Private Key | |
| openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout pkey.pem -out cert.crt |
| /*############################################################################*/ | |
| /* BLOCCOGAME */ | |
| /*----------------------------------------------------------------------------*/ | |
| /* Created on 24/09/2013 by Ali Tugrul PINAR */ | |
| /*----------------------------------------------------------------------------*/ | |
| /*----------------------------------------------------------------------------*/ | |
| /* DESCRIPTION */ | |
| /*------------------------- | |
| /* This program provides a simulation of a blocco game. | |
| /* Game includes five different difficulty levels. |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| !include LogicLib.nsh ;IF ELSE | |
| !include "StrContains.nsh" | |
| AutoCloseWindow true | |
| OutFile "SimpleGemInstaller.exe" | |
| ;here you can reference to any other ruby version and set you prefer path | |
| ;you can use !define for compile time substitution |
| require 'chefspec' | |
| describe 'java::default' do | |
| let (:chef_run) { ChefSpec::ChefRunner.new.converge('java::default') } | |
| it 'should include the openjdk recipe by default' do | |
| chef_run.should include_recipe 'java::openjdk' | |
| end | |
| context 'windows' do | |
| let(:chef_run) do |
| -- Written by rubenwardy, WTFPL | |
| -- To use: | |
| -- * Save as mod_debug.lua in builtin/game | |
| -- * add dofile(gamepath.."mod_debug.lua") to the last line of builtin/game/init.lua | |
| -- OR | |
| -- * Install as a mod. Needs to be run before any other mod. | |
| local mod = {} | |
| mod.recipes = {} | |
| mod.aliases = {} |
| require "socket" | |
| class IRC | |
| def initialize(info) | |
| @server = info[:server] | |
| @port = info[:port] || 6667 | |
| @password = info[:password] | |
| @nick = info[:nick] | |
| @channel = info[:channel] |