Creating a new PHPExcel Object.
$this->PHPExcel = new PHPExcel();
Creating a new sheet:
// enregistrement du fichier | |
$objWriter = PHPExcel_IOFactory::createWriter($objWorksheet, 'CSV'); | |
$objWriter->setEnclosure(""); | |
$objWriter->setDelimiter("\t"); | |
$objWriter->setLineEnding("\r\n"); // cr lf (Windows) | |
ob_start(); | |
$objWriter->save('php://output'); | |
$excelOutput = ob_get_clean(); | |
// conversion en iso-8859-1, car PHPExcel genere de l'utf-8 | |
$f = mb_convert_encoding($excelOutput, 'iso-8859-1'); |
<?php | |
$phpExcel = new PHPExcel(); | |
$phpExcel->getActiveSheet()->setTitle("My Sheet"); | |
$phpExcel->setActiveSheetIndex(0); | |
header("Content-Type: application/vnd.ms-excel"); | |
header("Content-Disposition: attachment; filename=\"filename.xls\""); | |
header("Cache-Control: max-age=0"); | |
$objWriter = PHPExcel_IOFactory::createWriter($phpExcel, "Excel5"); |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
/* | |
* MCrypt API available online: | |
* http://linux.die.net/man/3/mcrypt | |
*/ | |
#include <mcrypt.h> |
<?xml version="1.0" encoding="utf-8"?> | |
<CheatTable CheatEngineTableVersion="18"> | |
<Forms> | |
<CETrainer Class="TTrainerForm" Encoding="Ascii85">#Zygh):Zrz)lwuh!4U{_PKXm45=pp7$,ERtX].p)A2(C7yIOVQ%5m57Kj3$9K;QEHFThRGHtohFPMi]uexCRFh],TF!tvShA.yBx9K.zHQ#%Oj*j/zNvi0?A:m5PQ%hoT^!hF^HjoKe+CdaLJni-Ipq(zpapu;Ps$mIs(R[hHS$@+s:FrD)DKBf}Z/@@5Rm:9,;Nd-V2C/qAiiWYRpz)y[)!eqv%RJ)Q)#@J!j)V!HlYrFdNTAr?VSqc]D9GDY,!}-w)]eCmEp{(B%w#VpoZW?HG(N*8Z0PE).m{w7hdVB![vT8S*%bnf)oa;r{$uJTb2wg,AlI72)/hkql)IxgTF@;AX!t@I*+gx08P%X=N%.yR@-DKbPhI{r_U^#o:Q!cAuH#1R^MR!WBq1{D(orild^HS8kZ%=aSn28i1*3J?3sRo[U!.MspyHjnQX#0Hk^w61lwDfXZj_[piod^oqpL)9Zp69H=Ix5FGwfYyEY;W//6ZqoBL?4%vGcGK(WqfoRCc(T@/8IV%({MhjKHJiUqY/QXkG4@3)2J6:S=hAQ+6-[DFHA2[$6OSyMJ83TXxnUcRW^8wu1vF8L-hhg8f6;Dd(xX4ExfFYc%]oF;TF+DZ4679uC$wW%1(WK:1kgQM(,WEmet]I]q;-z6pB;PO4j3Z/)gzrJn!Zsno{s8;Le=FsiVf)a[6)^rIOwd37K[Nzp8K5:yu8m;P97FzNkoSr$dUB3ZE{6SG[C2;13!Ddrn^9;9l^[srC.{-_jela7F*vON9Oa</CETrainer> | |
</Forms> | |
<CheatEntries> | |
<CheatEntry> | |
<ID>0</ID> | |
<Description>"Grenades infi |
#! /usr/bin/env python | |
# A small script for cdp devices discovery | |
import sys | |
import pcapy | |
import socket | |
from dpkt import ethernet | |
from dpkt import cdp | |
from docopt import docopt |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy #https://github.com/tweepy/tweepy | |
import csv | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" | |
access_key = "" |
export PS1="\[\e[00;33m\]\A\[\e[0m\]\[\e[00;37m\] \[\e[0m\]\[\e[00;34m\]\u\[\e[0m\]\[\e[00;37m\] [\H] \[\e[0m\]\[\e[00;31m\]\w\[\e[0m\]\[\e[00;37m\]\n\[\e[0m\]\[\e[00;32m\]\\$\[\e[0m\]\[\e[00;37m\] \[\e[0m\]" |
#!/bin/bash | |
server1="keyserver.ubuntu.com" | |
server2="keyserver.debian.com" | |
server3="keys.gnupg.net" | |
function replacehkp { | |
sedserver=`echo $1 | awk -F '.' '{ print $1 "\\\." $2 "\\\." $3 }'` | |
grep -ri "'$server" * | awk -F ':' '{ print $1 }' | xargs sed -i "s/'$sedserver/'hkp:\/\/$sedserver:80/g" | |
} |
#!/usr/bin/python | |
# Brahim MACHKOURI | |
import subprocess | |
import re | |
import urllib2 | |
# recupere la page web de webmin dediee a debian | |
response = urllib2.urlopen('http://www.webmin.com/deb.html') | |
html = response.read() |