Skip to content

Instantly share code, notes, and snippets.

View rakotomandimby's full-sized avatar

Rakotomandimby Mihamina rakotomandimby

View GitHub Profile
#! /bin/sh
#
# chkconfig: - 55 45
# description: The memcached daemon is a network memory cache service.
# processname: memcached
# config: /etc/sysconfig/memcached
# pidfile: /var/run/memcached/memcached.pid
# Standard LSB functions
#. /lib/lsb/init-functions
<?php
function retournerListeVariables($template = "")
{
$listeVariables = array();
if (file_exists($template)) {
$content = file_get_contents($template);
if (preg_match_all("/{{(.*?)}}/si", $content, $aux)) {
$listeVariables = $aux[1];
}
}
#!/bin/bash
echo "Bonjour" >> /tmp/cron
@rakotomandimby
rakotomandimby / rktmb.php
Created September 21, 2011 11:12
A test PHP file
<?php
print "mihamina";
?>
@rakotomandimby
rakotomandimby / factorielle.php
Created September 23, 2011 16:36
Une putain de petite epreuve que des ingénieurs n'arrive pas à reussir...
<?php
if((isset($_REQUEST['nombre']) && is_numeric($_REQUEST['nombre'])) && ($_REQUEST['nombre'] < 20))
{
$max=$_REQUEST['nombre'];
$resultat=1;
for($i=1; $i<=$max; $i++) { $resultat=$resultat*$i;}
$message="Factorielle(".$max.") => ".$resultat;
}
else
{
@rakotomandimby
rakotomandimby / factorielle.html
Created September 28, 2011 07:19
La partie HTML
<html>
<head>
<title>Factorielle</title>
</head>
<body>
<h1>Factorielle</h1>
<div>Entrer un nombre:</div>
<div>
<form name="factorielle">
<input id="requete" type="text" value="" onkeyup="resultat()">
@rakotomandimby
rakotomandimby / wiki-user-qcm
Created January 4, 2012 08:42
QCM wiki user
#set($user = $userAccessor.getUser())
<iframe src="http://hostname/qcm?user=$user.name"></iframe>
<?php
class ArticleModel
{
public static function getArticleIds()
{
$xml = new XMLReader();
$tmp = $xml->open('encheres.xml');
while($xml->read())
<?php
class PersonModel
{
public static function getPersonIds()
{
$xml = new XMLReader();
$tmp = $xml->open('encheres.xml');
while($xml->read())
{
<?php
class PersonModel
{
public function __construct($id)
{
$xml = new XMLReader();
$tmp = $xml->open('encheres.xml');
while($xml->read())
{