Skip to content

Instantly share code, notes, and snippets.

View lvictorino's full-sized avatar
🐵
Not much more than a code monkey.

Laurent Victorino lvictorino

🐵
Not much more than a code monkey.
View GitHub Profile
@lvictorino
lvictorino / escapism-gamelist.org
Last active July 2, 2020 23:23
My escapist game list to ease quarantine time.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
[System.Serializable]
public class TimedAction
{
private DateTime _time_started;
private DateTime _last_date;
@lvictorino
lvictorino / nbsp-dealer.py
Created May 30, 2012 10:37
A collegue asked for some help for her job. She needed a script to apply specific French langage needs (a nbsp and not a classical space after a number) to a large amount of files in several directories.
#!/usr/bin/python
import os
import re
import sys
if sys.version_info < (3,2):
print("Error: Python version 3.2 is required.")
if len(sys.argv) <= 1:
print("Not enough arguments.")