{3,4,5,7}a de aŭgusto 2013
Ĉu estos vidprojektilo?
- Kiu mi estas?
# Geany's snippets configuration file | |
# | |
# use \n or %newline% for a new line (it will be replaced by the used EOL char(s) - LF, CR/LF, CR). | |
# use \t or %ws% for an indentation step, it will be replaced according to the current document's indent mode. | |
# use \s to force whitespace at beginning or end of a value ('key= value' won't work, use 'key=\svalue'). | |
# use %key% for all keys defined in the [Special] section. | |
# use %cursor% to define where the cursor should be placed after completion. You can define multiple | |
# %cursor% wildcards and use the "Move cursor in snippet" to jump to the next defined cursor | |
# position in the completed snippet. | |
# You can define a section for each supported filetype to overwrite default settings, the section |
#!/usr/bin/env python | |
""" | |
Regenarate list of languages based of the sil.org website. | |
""" | |
import os | |
import codecs | |
import csv | |
import requests |
Daŭrigo: https://trello.com/c/EOB3kHRv/17-septembro
# Usage: region_name = french_region[departement] | |
french_region = { | |
"01": "Auvergne-Rhône-Alpes", | |
"03": "Auvergne-Rhône-Alpes", | |
"07": "Auvergne-Rhône-Alpes", | |
"15": "Auvergne-Rhône-Alpes", | |
"26": "Auvergne-Rhône-Alpes", | |
"38": "Auvergne-Rhône-Alpes", | |
"42": "Auvergne-Rhône-Alpes", |
[user] | |
name = Baptiste Darthenay | |
email = [email protected] | |
[color] | |
ui = auto | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch |
<ul id="aligxintoj"></ul> | |
<script src="https://unpkg.com/tabletop/src/tabletop.min.js"></script> | |
<script> | |
function listigi(datumo) { | |
const ul = document.getElementById("aligxintoj"); | |
datumo.forEach(function(homo) { | |
const li = document.createElement("li"); | |
li.innerHTML = `${homo.Nomo} (${homo.Lando})`; |