Skip to content

Instantly share code, notes, and snippets.

#! /bin/bash
#appelle le webService et affiche les informations sur stdout
webService='http://www.webservicex.net/whois.asmx/GetWhoIS'
if [ $# -lt 1 ] ; then
echo -e "usage : $0 hostname [hostname]+ \nexample : $0 google.fr"
exit 1
fi
Reliable and precise WCET Determination for a real-life processor
=================================================================
WCET : Worst Case Execution Time
I Introduction
==============
Garantir des contraintes de temps fortes dans les système temps réel -> timing validation
@rusted
rusted / counter.erl
Created February 19, 2015 12:29
eugenkiss/7guis Erlang with wxErlang
-module(counter).
-include_lib("wx/include/wx.hrl").
-export([start/0]).
itl(Int) ->
erlang:integer_to_list(Int).
lti(L) ->
erlang:list_to_integer(L).
@rusted
rusted / fizzbuzz.erl
Created February 19, 2015 17:53
fizzbuzz ?
-module(fizzbuzz).
-export([start/0]).
fizzbuzz(X) when X rem 15 == 0 ->
io:format("FizzBuzz~n");
fizzbuzz(X) when X rem 3 == 0 ->
io:format("Fizz~n");
fizzbuzz(X) when X rem 5 == 0 ->
io:format("Buzz~n");