diff --git a/+++/back.gif b/+++/back.gif deleted file mode 100644 index a694ae1..0000000 Binary files a/+++/back.gif and /dev/null differ diff --git a/+++/jules-henri.ico b/+++/jules-henri.ico deleted file mode 100644 index e42ebe7..0000000 Binary files a/+++/jules-henri.ico and /dev/null differ diff --git a/+++/lestyle.css b/+++/lestyle.css deleted file mode 100644 index fe76dfd..0000000 --- a/+++/lestyle.css +++ /dev/null @@ -1,162 +0,0 @@ -body { - width: 100%; - height: 100%; - margin: 0; - padding: 0; -} - -.tableau { - border: 10px grey ridge; - margin: 5em; - margin-bottom: 1em; -} - -table { - display: block; - margin: 1em; - border: 10px grey ridge; - font-size: small; - text-align: left; - width: 55em; -} - -table td { - border: 2px grey ridge; - padding: 1em; -} - -table td h1 { - bborder: 1px red solid; - margin-top: 0.4em; - margin-bottom: 0.2em; -} - -table td p { - bborder: 1px red solid; - margin-top: 0.1em; - margin-bottom: 0.4em; -} - - -table tr { - text-align: center; -} - -table td img { - width: 100%; - border: 2px grey ridge; -} - -table td video { - width: 100%; - border: 2px grey ridge; -} - -.lst { - margin-right: 3em; -} - -.lst p mat { - margin-left: : 2em; -} - -.lst ul li { display: inline; } - -.lst ul li desc { - margin: 2em; - margin-bottom: 1em; - width: 985; - display: block; -} - -.lst ul li desc img { - border: 10px grey ridge; - margin: 0em; - margin-bottom: 2em; - width: 985; - display: block; -} - -.lst ul li desc video { - border: 10px grey ridge; - margin: 0em; - margin-bottom: 2em; - width: 985; - display: block; -} - -.lst ul li img { - border: 10px grey ridge; - margin: 2em; - margin-bottom: 1em; - width: 450; -} - -.lst ul li video { - border: 10px grey ridge; - margin: 2em; - margin-bottom: 1em; - width: 450; -} - -.lst ul li sound { - display: inline-block; - border: 10px grey ridge; - margin: 2em; - width: 440; - padding: 10; -} - -.lst ul li sound.full { - display: inline-block; - border: none; - padding: 0; - margin: 2em; - width: 985; -} - -.lst ul li sound track { - display: block; - margin-top: 0.3em; - margin-bottom: 0.3em; -} - -.lst ul li sound.full track { - display: block; - margin-top: 0.6em; - margin-bottom: 0.6em; -} - -.lst ul li sound info { - width: 100%; -} - -.lst ul li sound audio { - width: 100%; - margin-top: 0.5em; -} - -.lst ul li lo img { - border: none; - margin: 1em; - margin-top: 0.5em; - max-width: 300; -} - -.lst ul li la img { - border: none; - margin: 1em; - margin-top: 0.5em; - max-width: 100; - max-height: 100; -} - -address { - margin: 20px; -} - -#index_tile h1 { - margin: 20px; -} - - diff --git a/+++/yeux.png b/+++/yeux.png deleted file mode 100644 index bc7b9bc..0000000 Binary files a/+++/yeux.png and /dev/null differ diff --git a/.htaccess b/.htaccess deleted file mode 100644 index c1e0189..0000000 --- a/.htaccess +++ /dev/null @@ -1 +0,0 @@ -RedirectMatch 404 /\.git \ No newline at end of file diff --git a/ b/
deleted file mode 100644 index 6f26b0d..0000000 --- a/
+++ /dev/null @@ -1,12 +0,0 @@ -
- - - - - - -
- [[text_md]] -
- [[link_md]] -
\ No newline at end of file diff --git a/index_apache_template.html b/index_apache_template.html deleted file mode 100644 index 20d984d..0000000 --- a/index_apache_template.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Index of /gauthiier.info/[[dir]] - - - - -

Index of /gauthiier.info/[[dir]]

-
- - Parent Directory -
- -
- -
- -
Apache Server at gauthiier.info Port 80
- - diff --git a/index_template.html b/index_template.html deleted file mode 100644 index e538b13..0000000 --- a/index_template.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - David Gauthier - - -
- -

David Gauthier

-

(Selected) Index of works

-

index of academic work

-

d[at]gauthiier.info

- [[content]] -
- - diff --git a/robots.txt b/robots.txt deleted file mode 100644 index 134b4d5..0000000 --- a/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Disallow: /+++/ \ No newline at end of file diff --git a/wavconv.py b/wavconv.py deleted file mode 100644 index cec0345..0000000 --- a/wavconv.py +++ /dev/null @@ -1,61 +0,0 @@ -import argparse, sys, os, glob, subprocess - -supported = ['ogg', 'mp3'] - -def sanity_check_system(): - r = subprocess.call("ffmpeg -version", shell=True) == 0 - if not r: - sys.exit("ffmpeg not installed. Aborting...") - -def convert(i, o, f): - global supported - if f not in supported: - print("warning: format " + f + "is not supported") - return - - if f == 'mp3': - codec = 'libmp3lame' - elif f == 'ogg': - codec = 'libvorbis' - - subprocess.call(['ffmpeg', '-i', i, '-acodec', codec, o]) - - -if __name__ == '__main__': - - p = argparse.ArgumentParser(description='Converts .wav files to other formats (using ffmpeg)'); - p.add_argument('-i', '--input', help='input directory'); - p.add_argument('-f', '--format', help='output formats (ogg and/or mp3)', nargs="+"); - - sanity_check_system() - - args = p.parse_args() - - if not args.format: - sys.exit("Nor formats specified. Aborting.") - - formats = [] - for f in args.format: - if f not in supported: - print("warning: format " + f + "is not supported") - else: - formats.append(f) - - if not formats: - sys.exit("None of the specified formats are supported. Aborting.") - - input_dir = "." - if args.input: - input_dir = args.input - - wav_files = glob.glob(os.path.join(input_dir, "*.wav")) - for w in wav_files: - for f in formats: - fn = os.path.join(input_dir, os.path.basename(w).replace('.wav', '.' + f)) - convert(w, fn, f) - - - - - -