Skip to content

Instantly share code, notes, and snippets.

View wilk's full-sized avatar

Vincenzo Ferrari wilk

View GitHub Profile
@wilk
wilk / microjob.js
Created September 8, 2018 09:47
microjob example
(async () => {
const { job } = require('microjob')
try {
// this function will be executed in another thread
const res = await job(() => {
let i = 0
for (i = 0; i < 1000000; i++) {
// heavy CPU load ...
}
@wilk
wilk / goroutine.go
Created September 8, 2018 09:42
golang goroutine
func main() {
go func(msg string) {
fmt.Println(msg)
}("going")
}
@wilk
wilk / multithreading.py
Last active August 17, 2018 14:44
Multithreading execution with ThreadPoolExecutor
# async tests
from time import sleep
from concurrent.futures import ThreadPoolExecutor, wait
def hello_world(delay):
print("hello world {delay}".format(delay=delay))
sleep(delay)
print("hello there {delay}".format(delay=delay))
return "done {delay}".format(delay=delay)
@wilk
wilk / parallel.py
Last active May 28, 2018 10:36
Asyncio example: parallel execution
import asyncio
from time import sleep
from concurrent.futures import ThreadPoolExecutor
async def hello_world(loop, delay):
print("hello world")
await loop.run_in_executor(ThreadPoolExecutor(), sleep, delay)
print("hello there")
return "done"
@wilk
wilk / docker-compose.yml
Created March 11, 2018 18:57
docker-compose.yml
version: "3"
services:
django-app:
image: your_django_image:version
build:
context: ./app
env_file: .env
ports:
- "8080:80"
@wilk
wilk / goxfer.go
Created November 10, 2017 21:34
Goxfer
package main
import (
"fmt"
"os"
"errors"
"strconv"
"strings"
"github.com/parnurzeal/gorequest"
"gopkg.in/mgo.v2"
@wilk
wilk / goxfer.go
Last active November 10, 2017 21:22
Goxfer
import (
"errors"
"strings"
"github.com/parnurzeal/gorequest"
)
type Transaction struct {
Date string
Account string
Description string
@wilk
wilk / goxfer.go
Last active November 10, 2017 21:20
Goxfer
import (
"fmt"
"strconv"
"sync"
)
type Transaction struct {
Date string
Account string
Description string
@wilk
wilk / docker-compose.yml
Last active November 10, 2017 20:38
Goxfer service
goxfer:
command: go run src/goxfer.go
image: data.golang1.9:1
environment:
- DB_HOST=mongodb
- DB_NAME=collector
- DB_COLLECTION_NAME=collected
- BUXFER_API_ENDPOINT=https://www.buxfer.com/api
- BUXFER_USERNAME=your_buxfer_username
- BUXFER_PASSWORD=your_buxfer_password
@wilk
wilk / goxfer.go
Created November 8, 2017 19:58
Goxfer
package main
import (
"fmt"
"strconv"
"gopkg.in/mgo.v2"
)
type Transaction struct {
Date string