This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dubizzle Categories Melltoo Categories | |
------------------------------------------------------------------ | |
'Motorcycles': ('Autos', 'Motorcycles'), | |
'Auto Accessories & Parts': ('Autos', 'Auto Parts & Accessories'), | |
'Used Cars for Sale': ('Autos', 'Car, SUVs,Trucks'), | |
'Boats': ('Autos', 'RVs, dune buggies, boats'), | |
'Heavy Vehicles': ('Autos', 'RVs, dune buggies, boats'), | |
'Jobs Wanted': ('Share & Exchange', 'I need'), | |
'Rooms wanted (flatmates)': ('Share & Exchange', 'I need'), | |
'Rental Wanted': ('Share & Exchange', 'I need'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"description": "Maids Zone Provides :", | |
"name": "Maids Zone Call 055-2082500", | |
"categories": [ | |
"Community", | |
"Services", | |
"Maids" | |
], | |
"location": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html.lt, jej1.com, amakm.com, kthtw.com, tinfo.com, jhbuff.com, biliare.com, win7-key.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Souhail Moslim</title> | |
<script> | |
window.ajouter = function () | |
{ | |
var fieldset = document.getElementById("moyennes"), | |
input = document.createElement("input"); | |
input.type = "number"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head></head> | |
<body> | |
<table border="1"> | |
<tr> | |
<th>Colonne date</th> | |
<th>Autre colonne</th> | |
</tr> | |
<tr> | |
<td><span class="date"></span></td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require './vendor/autoload.php'; | |
// Prepare app | |
$app = new \Slim\Slim(array( | |
'templates.path' => './templates', | |
)); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <conio.h> | |
void main() | |
{ | |
int i; | |
char ville[20]; | |
int nbr_visi_tang, nbr_visi_tet, nbr_visi_aga, nbr_visi_tan; | |
int age; | |
int tot_tang, tot_aga, tot_tet, tot_tan, tot_gen; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Extracts email addresses from one or more plain text files. | |
# | |
# Notes: | |
# - Does not save to file (pipe the output to a file if you want it saved). | |
# - Does not check for duplicates (which can easily be done in the terminal). | |
# | |
# (c) 2013 Dennis Ideler <[email protected]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/ | |
# Install stuff # | |
################# | |
# Install development tools and some misc. necessary packages | |
yum -y groupinstall "Development tools" | |
yum -y install zlib-devel # gen'l reqs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import itertools | |
lines = list() | |
lines.append(open('1.txt').readlines()) | |
lines.append(open('2.txt').readlines()) | |
combinations = list(itertools.product(*lines)) | |
with open('result.txt', 'w') as result: | |
for combination in combinations: |