This guide is now available under this URL:
http://docs.behat.org/cookbook/bdd_in_symfony2_with_behat_mink_and_zombiejs.html
commit a5a0702376c222572e7b6c8c48b2cae975398ae3 | |
Author: VladimirMangos <[email protected]> | |
Date: Mon Dec 22 15:25:43 2008 +0300 | |
MaNGOS 0.12 release. | |
----------------------------------------------- | |
!+2f3c20ec14d386f1b784ef26fe6e76ba8ea03ac5 [8776] proper arena rating calculation | |
!+ca88fc52a7e17148a91532cbbfd9ea55b41bc5a6 [8780] fixed typos with arenarating |
This guide is now available under this URL:
http://docs.behat.org/cookbook/bdd_in_symfony2_with_behat_mink_and_zombiejs.html
#include "tp3.h" | |
// Fonctions à réaliser | |
task * cree_tache(char caract[MAX_NOM + 1], int duree) | |
{ | |
task *ptask = (task*)malloc(sizeof (task)); | |
//strcpy(ptask->ID,caract); | |
*(ptask->ID) = caract; | |
ptask->duree = duree; |
(defvar initial '(0 0 0 1 0 1)) | |
(defvar final '(1 1 1 1 1 1)) | |
(defun inverser (x) | |
(if (= x 1) 0 1) | |
) | |
(defun new-state(state pos) | |
(when (<= (length state) (+ pos 1)) (return-from new-state state)) | |
(let ((i 0)(new-list '())) | |
(dolist (arrow state new-list) |
Bonjour! | |
Bienvenue sur le Chan de L'UTC! | |
Les patrons sont Bqbqr et MiLk133: | |
-Pose leur des questions directement si personne ne répond, il suffit de citer le pseudo dans le message pour qu'ils s'intérressent a toi. | |
-C'est eux qui ont le pouvoir de te bannir ou de te virer du channel si tu fais n'importe quoi. | |
FAQ: |
#!/bin/bash | |
# | |
# Set up OSX preferences | |
# | |
# Inspired by: https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
########################################### | |
# CONFIG | |
HOSTNAME="machiavellia" | |
TIMEZONE="America/Chicago" # 'systemsetup -listtimezones' |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |
#!/usr/bin/env elixir | |
# Convert an Elixir config.exs to an erlang sys.config | |
# | |
# Usage: elixir_to_sys_config config.exs > sys.config | |
# First argument is the Elixir config.exs file | |
# Writes to stdout | |
# You probably want to set MIX_ENV accordingly | |
# | |
# 2015 by Dan Swain, [email protected] |
#!/bin/bash | |
set -e | |
set -u | |
set -o pipefail | |
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | |
# The name of the EC2 tag that holds the Elastic IP address to use. | |
readonly TAG_NAME='PublicIP' |
// v2 of the great example of SSE in go by @ismasan. | |
// includes fixes: | |
// * infinite loop ending in panic | |
// * closing a client twice | |
// * potentially blocked listen() from closing a connection during multiplex step. | |
package main | |
import ( | |
"fmt" | |
"log" |