This file contains 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
progval@ProgVal-Andromede-Debian:/media/gros-fichiers$ ls [0-9][0-9][0-9]_*\.ogv -l | |
-rw-r--r-- 1 progval progval 151194305 17 oct. 09:58 124_graphiques-avec-gnumeric_fr_big.ogv | |
-rw-r--r-- 1 progval progval 38648644 17 oct. 09:47 130_tout-ce-que-vous-avez-toujours-voulu-savoir-sur-les-geekscottes_fr_big.ogv | |
-rw-r--r-- 1 progval progval 447485127 17 oct. 12:34 147_table-ronde-le-genre-et-le-logiciel-libre-_fr_big.ogv | |
-rw-r--r-- 1 progval progval 21081742 17 oct. 09:50 174_tanaguru-logiciel-libre-pour-rendre-les-sites-web-meilleurs-_fr_big.ogv | |
-rw-r--r-- 1 progval progval 11430392 17 oct. 10:34 191_minbif--une-passerelle-irc-vers-le-monde-moderne_fr_big.ogv | |
-rw-r--r-- 1 progval progval 350608157 17 oct. 11:12 198_la-route-vers-gnome-3_fr_big.ogv | |
-rw-r--r-- 1 progval progval 148323204 17 oct. 10:43 201_etendre-le-compilateur-gcc-avec-melt-pour-vos-besoins_fr_big.ogv | |
-rw-r--r-- 1 progval progval 146054926 17 oct. 09:34 205_la-traduction-de-kde-en-franais_fr_big.ogv | |
-rw-r--r-- 1 progval progval 159844056 |
This file contains 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
# ... | |
from supybot.i18n import PluginInternationalization, internationalizeDocstring | |
_ = PluginInternationalization('Status') | |
class Status(callbacks.Plugin): | |
def __init__(self, irc): | |
self.__parent = super(Status, self) | |
self.__parent.__init__(irc) | |
# XXX It'd be nice if these could be kept in the registry. | |
self.sentMsgs = 0 |
This file contains 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
get: ('global', 'default', 'foo') | |
None | |
get: ('global', 'default', 'foo') | |
None | |
set: ('global', 'default', 'foo', 'bar') | |
[('global', 'default', 'foo', 'bar', 0)] | |
get: ('global', 'default', 'foo') | |
None | |
Variable does not exist. |
This file contains 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
ProgVal@main tmp $ git clone git://github.com/ProgVal/Limnoria.gitCloning into Limnoria... | |
remote: Counting objects: 38576, done. | |
remote: Compressing objects: 100% (8970/8970), done. | |
remote: Total 38576 (delta 29455), reused 38576 (delta 29455) | |
Receiving objects: 100% (38576/38576), 6.51 MiB | 3.51 MiB/s, done. | |
Resolving deltas: 100% (29455/29455), done. | |
ProgVal@main tmp $ cd Limnoria/ | |
ProgVal@main Limnoria $ ls | |
ACKS docs LICENSE plugins RELNOTES scripts src | |
ChangeLog INSTALL locale README sandbox setup.py test |
This file contains 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 python3 | |
# Set this to False if the animation is really too slow or if | |
# your terminal do not support background colors. | |
ENABLE_BACKGROUND = True | |
import os | |
import sys | |
import time | |
import signal |
This file contains 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 collections, sys, types | |
weakref = None | |
generic_hash = id | |
# Possible additions: | |
# - Add callbacks to CallableReference | |
# - Reimplement RefValueList |
This file contains 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 | |
# -*- coding: utf8 -*- | |
# Copyright (c) 2012, Valentin Lorentz | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, | |
# distribute, sublicense, and/or sell copies of the Software, and to |
This file contains 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
Générateur de virelangue |
This file contains 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 | |
from __future__ import with_statement | |
import pbs | |
import time | |
import glob | |
import requests | |
ROOT = '/home/compiler/Limnoria' |
This file contains 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
# -*- coding: utf-8 -*- | |
# | |
# Copyright (c) 2009 by xt <[email protected]> | |
# Copyright (c) 2013 by Valentin Lorentz | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. | |
# |
OlderNewer