Skip to content

Instantly share code, notes, and snippets.

View vvo's full-sized avatar
🌱
Growing indie hacker

Vincent Voyer vvo

🌱
Growing indie hacker
View GitHub Profile
Slack emoji
@vvo
vvo / class.ts
Created September 2, 2021 09:32
import { Label, ModelType, Version } from "@customTypes/templates";
export default class Segmentation {
constructor(
public b64_mask = "",
public label = Label.Uncategorized,
public main_colors = "",
public model_type = ModelType.Free,
public model_version = Version.UnknownVersion,
public no_objects = false,
@vvo
vvo / stripe-customer-language-list.js
Created March 18, 2021 14:06
Stripe's customers language list
[
{ label: "Arabic", value: "ar-AR" },
{ label: "Danish", value: "da-DK" },
{ label: "German", value: "de-DE" },
{ label: "English", value: "en-US" },
{ label: "Spanish (Spain)", value: "es-ES" },
{ label: "Spanish (Latin America)", value: "es-419" },
{ label: "Finnish", value: "fi-FI" },
{ label: "French", value: "fr-FR" },
{ label: "Hebrew", value: "he-IL" },
2020-01-09T10:25:40.0633699Z ##[section]Starting: Request a runner to run this job
2020-01-09T10:25:40.2395888Z Requesting a hosted runner in current repository's account/organization with labels: 'ubuntu-latest', require runner match: True
2020-01-09T10:25:40.2946255Z Labels matched hosted runners has been found, waiting for one of them get assigned for this job.
2020-01-09T10:25:40.3373017Z ##[section]Finishing: Request a runner to run this job
2020-01-09T10:25:47.7137594Z Current runner version: '2.163.1'
2020-01-09T10:25:47.7138909Z Prepare workflow directory
2020-01-09T10:25:47.7363087Z Prepare all required actions
2020-01-09T10:25:47.7388745Z Download action repository 'actions/checkout@v2'
2020-01-09T10:25:49.6391641Z Download action repository 'eregon/use-ruby-action@master'
2020-01-09T10:25:49.8696320Z Download action repository 'actions/cache@v1'
@vvo
vvo / test.yml
Last active August 21, 2020 11:54
Rails and PostgreSQL setup for GitHub actions (CI)
name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
# Similar to docker-compose.yml but not the same, 🤷‍♂️
services:
var workers = [
{name: 'worker1', fn: function(task, cb) {/* some async processing */}},
{name: 'worker2', fn: function(task, cb) {/* some async processing */ }}
];
var tasks = ['one']; // this will be filled with a first task and then filled with more tasks from the workers
// I want to distribute tasks to workers, each worker can process only one task at a time
// workers will add more tasks while processing
// in some situations tasks may be empty and all workers processing
@vvo
vvo / esnextbin.md
Created March 23, 2017 16:20
esnextbin sketch
README:
# TITLE
Small description
# Example
[STILL IMAGE] USAGE VIDEO on youtube
@vvo
vvo / .profile
Last active November 7, 2017 12:58
spr command line
#!/usr/bin/env bash
function spr() {
remoteOrigin=$(git remote get-url origin)
originGitHubUser=${remoteOrigin#git@github.com:*}
originGitHubUser=${originGitHubUser%%/*}
if [[ $1 == "--"* ]] # spr --branch
then
params=(${@:1})