Skip to content

Instantly share code, notes, and snippets.

@aoloe
aoloe / WP-event-manager-notes.php
Created July 16, 2012 19:20 — forked from ms-studio/WP-event-manager-notes.php
Notes regarding the WP event manager
<?php
/*
Target:
*******
Perfect solution for a simple WP event manager
Needs:
******
@aoloe
aoloe / code_structure
Last active December 22, 2015 00:38
code structure
the scribus-core code is currently structured as foolows:
+ impagina-core/
- impagina-core.pro
- main.cpp
- scribus.cpp
- scribus.h
+ document/
- document.cpp
<VirtualHost *:80>
# Indexes + Directory Root.
#DirectoryIndex index.html index.php
DocumentRoot /home/ale/docs/htdocs/graphicslab/htdocs/
<Directory /home/ale/docs/htdocs/graphicslab/htdocs/ >
# Options FollowSymLinks
# AllowOverride FileInfo Options
Options Indexes FollowSymLinks
AllowOverride AuthConfig FileInfo
<?php
/**
* Show the history of the latest selected tables. Cookies based.
* Set the js variable history_length to define the history length.
* Works only with current browsers.
* @link http://www.adminer.org/plugins/#use
* @author Ale Rimoldi, http://www.ideale.ch/
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
@aoloe
aoloe / README.md
Last active August 29, 2015 14:03
issues attachments

This gist repository contains attachments for my issue tracker.

Just add files to this repository and then link them in the issue.

@aoloe
aoloe / main.qml
Created August 14, 2014 08:11
pyqt and qqmlapplicationengine
$ python3 test.py
QQmlApplicationEngine failed to load component
file:///home/ale/docs/src/scribus-script-repository/script-download/test/main.qml:4 AppplicationWindow is not a type
1 Sortir du nucléaire accueil
2 Journal actualite/journal
3 Agenda association/agenda
4 Presse accueil
5 Sortons du nucléaire accueil
6 Association accueil
7 Contact association/contact
8 Buts association/buts
9 Statuts association/statuts
14 Communiqués de presse actualite/communiques
import html2text
import csv
import unicodedata
#from unidecode import unidecode
#print unidecode(u"\u5317\u4EB0")
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
h = html2text.HTML2Text()
# Ignore converting links from HTML
import glob
import re
import csv
toc = []
p_id = re.compile('index.php\?id=(\d+)')
p_title = re.compile('<title>(.*) \| (.*)</title>')
for filename in glob.glob('index.php?id*'):
print(filename)
m = p_id.match(filename)
print(m.group(1))
@aoloe
aoloe / src-status.py
Created May 29, 2015 14:06
git status with dir from python
import os
from sh import git
def subDirPath (d):
return filter(os.path.isdir, [os.path.join(d,f) for f in os.listdir(d)])
curDir = os.getcwd()
curDir = "/home/ale/docs/src/"
for d in subDirPath(curDir) :
if os.path.isdir(os.path.join(d, ".git")) :