Skip to content

Instantly share code, notes, and snippets.

View vinyll's full-sized avatar
🗺️
Creating locally

Vincent Agnano vinyll

🗺️
Creating locally
View GitHub Profile
Some fields from zenoti are not clear:
- what are 'tags' used for? What is their equivalent in Athena? Notes maybe?
  • 16/11 Redaction de la documentation d'installation. correction des débordements de texte.
  • 17/11 nettoyage de code, suppression des notions de ’supplier’
  • 18/11 uniformisation des rendus markdown
  • 19/11 correction de l’onglet des pages d’organisations qui doit être ouvert par défaut
  • 20/11 correction de l’API sur la considérations des filtres discussions.closed et issues.closed
class FizzBuzz
def initialize
@fizz = 3
@buzz = 5
end
def convert(num)
return "FizzBuzz" if isDivisibleBy(@fizz, num) && isDivisibleBy(@buzz, num)
return "Fizz" if isDivisibleBy(@fizz, num)
@vinyll
vinyll / output
Created December 11, 2013 14:36
AMO test errors
(venv)vinyll@vinyll ~/P/z/src> dj test --logging-clear-handlers --noinput --settings=settings_local
nosetests --with-fixture-bundling --exclude=mkt/* --logging-clear-handlers --verbosity=1
Reusing old database "test_zamboni". Set env var FORCE_DB=1 if you need fresh DBs.
...................Exception pyes.urllib3.connectionpool.MaxRetryError: MaxRetryError('Max retries exceeded for url: /_bulk',) in <bound method ES.__del__ of <pyes.es.ES object at 0x10687d710>> ignored
No handlers could be found for logger "z.task"
Exception pyes.urllib3.connectionpool.MaxRetryError: MaxRetryError('Max retries exceeded for url: /_bulk',) in <bound method ES.__del__ of <pyes.es.ES object at 0x106881790>> ignored
../Volumes/Users/vinyll/Projects/zamboni/src/apps/addons/models.py:360: DeprecationWarning: object.__new__() takes no parameters
return super(Addon, cls).__new__(cls, *args, **kw)
...Exception pyes.urllib3.connectionpool.MaxRetryError: MaxRetryError('Max retries exceeded for url: /_bulk',) in <bound method ES.__d

Very basic installation

This installation may be enough for working on general code or interface integration. Note that to gain searching and some more advanced feature you will need the [advanced installation(#advanced-installation).

Prerequirements

Certains en on plein le dos de leur travail. D'autres portent leur travail sur le dos. Pas de seau de 20 litres d'eau à ramener au village, pas de lettre estampillée par un proche à déposer dans la prochaine boite, juste un ordinateur, un téléphone, et une version abrégée d'un chargeur parfois, au cas où.

Un bout de tissu avec 2 fines bretelles qui m'offre la mobilité de travail. 1,5kg, voilà le poids de la légèreté.

Un train à 317km/h, un café dans le mid-west américain, une colline en Sicile. Autant de lieux qui dessineront de nouvelles distractions quand la tête sortira de l'écran. Autant de couleurs et paysages à présenter quand à la prochaine video-call on me demandra « t'es où en ce moment ? »

« Tu habites où ? » me demande-t'on souvent. « Je n'habite pas. » ai-je pris comme réponse rapide. Réponse suffisamment déstabilisante pour générer une conversation qui résoudra l'air sceptique subitement apparu chez ma nouvelle rencontre.

« Tu es où en ce moment ? » me demandera-t'il la prochain

J'ai testé beaucoup de formatS
aux besoins de chacun~s~
voir une personne s'exfiltrER
/**
* Click to start the sound and move your mouse horizontally.
* Click again to stop the sound.
* To go further checkout the following links:
* Some tutorial: http://mmckegg.github.io/web-audio-school/
* Midi demo: taktech.orgtakm/WebFMSynth
* Premade sounds library: https://github.com/Tonejs/Tone.js
* Checkout audioGraph
*/
var audioContext = new AudioContext()
@vinyll
vinyll / index.html
Created July 28, 2016 09:41
Medium editor blur test
<meta charset=utf-8>
<script src="http://cdn.jsdelivr.net/medium-editor/latest/js/medium-editor.min.js"></script>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/medium-editor/latest/css/medium-editor.min.css" type="text/css">
<section class=editable>
Test me
</section>
<script>
var editor = new MediumEditor('.editable')