Skip to content

Instantly share code, notes, and snippets.

View evoxmusic's full-sized avatar
🚀
Scaling

Romaric Philogène evoxmusic

🚀
Scaling
View GitHub Profile
@evoxmusic
evoxmusic / main.tf
Created July 26, 2023 10:14
Qovery - Terraform Export for Windmill
terraform {
required_providers {
qovery = {
source = "qovery/qovery"
version = "0.18.0"
}
}
}
provider "qovery" {
@evoxmusic
evoxmusic / export_ios_beta.py
Created January 25, 2017 22:56
Pour l'utiliser, vous devez avoir le fichier ios.csv (export du formulaire google form au format csv) au même niveau que ce script et faire ceci.
#!/usr/bin/env python3.5
import csv
if __name__=='__main__':
with open('ios.csv', 'r') as csvfile:
reader = csv.DictReader(csvfile, delimiter=',')
for l in reader:
x = l['Nom / Prénom']
first_name = ""
@evoxmusic
evoxmusic / README.md
Last active September 8, 2015 07:12 — forked from polbins/README.md
Simple RecyclerView Divider

Simple RecyclerView Divider

Simple Horizontal Divider Item Decoration for RecyclerView

    mRecyclerView.addItemDecoration(new SimpleDividerItemDecoration(
            getApplicationContext()
    	));

NOTE: Add item decoration prior to setting the adapter

@evoxmusic
evoxmusic / board.py
Last active August 29, 2015 14:27
LinkedList - Liste Chainée
#!/usr/bin/env python
class Node(object):
def __init__(self, previous_node, element):
self.element = element
self.previous_node = previous_node
self.next_node = None
class LinkedList(object):
15:42:07: Executing external task 'bootRun'...
:compileJava UP-TO-DATE
:compileGroovy
15:42:13.629 [/0:0:0:0:0:0:0:1:62016 to /0:0:0:0:0:0:0:1:62015 workers] DEBUG o.s.core.env.StandardEnvironment - Adding [systemProperties] PropertySource with lowest search precedence
15:42:13.634 [/0:0:0:0:0:0:0:1:62016 to /0:0:0:0:0:0:0:1:62015 workers] DEBUG o.s.core.env.StandardEnvironment - Adding [systemEnvironment] PropertySource with lowest search precedence
15:42:13.635 [/0:0:0:0:0:0:0:1:62016 to /0:0:0:0:0:0:0:1:62015 workers] DEBUG o.s.core.env.StandardEnvironment - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
15:42:13.644 [/0:0:0:0:0:0:0:1:62016 to /0:0:0:0:0:0:0:1:62015 workers] DEBUG o.s.c.i.s.PathMatchingResourcePatternResolver - Resolved location pattern [classpath*:org/codehaus/groovy/grails/compiler/**/*.class] to resources []
15:42:13.648 [/0:0:0:0:0:0:0:1:62016 to /0:0:0:0:0:0:0:1:62015 workers] DEBUG o.s.c.i.s.PathMatchingResourcePatternResolver - Looking for
@evoxmusic
evoxmusic / designer.html
Last active August 29, 2015 14:08
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-pages/core-pages.html">
<polymer-element name="my-element">
<template>
@evoxmusic
evoxmusic / 0_reuse_code.js
Created May 26, 2014 13:30
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console