Alin Climente - Relevant Python/Javascript projects
Landing pages
- Live at: https://alinclimente.tk
- Live at: https://softgata.com
Remote jobs board
Sort more easily through the newest remote jobs.
def genumerate(li): | |
#using a generator not to kill memory | |
for item in li: | |
yield li.index(item), item | |
#use case | |
for idx, val in genumerate(biglist): | |
pass #do_something() |
try: | |
import sl4a | |
droid = sl4a.Android() | |
except: | |
print("Can't initialize sl4a module!") | |
pass | |
import re | |
import random | |
import time | |
import itertools |
npx degit sveltejs/template project-name | |
cd project-name | |
npm install | |
npm install svelte-spa-router | |
// Temporary issue postcss works only with: autoprefixer@9.8.6 (remove @9.8.6 if the issue was solved) |
Sort more easily through the newest remote jobs.