Skip to content

Instantly share code, notes, and snippets.

View adagio's full-sized avatar
👨‍💻
practicing NestJS / learning about AI

Edu F adagio

👨‍💻
practicing NestJS / learning about AI
View GitHub Profile
@adagio
adagio / day10.py
Created December 11, 2018 03:05
Advent of Code - Day 10
from parse import parse
import numpy as np
filename = 'input'
filepath = f'data/{filename}.plain'
positions = []
velocities = []
pattern = 'position=<{px},{py}> velocity=<{vx},{vy}>'
@adagio
adagio / makerequest.swift
Created November 15, 2018 17:13
HTTP request with URLSession
let config = URLSessionConfiguration.default
let session = URLSession(configuration: config)
let url = URL(string: "https://httpbin.org/anything")!
let task = session.dataTask(with: url) { data, response, error in
// ensure there is no error for this HTTP response
guard error == nil else {
print ("error: \(error!)")
return
@adagio
adagio / enums-switch.ipynb
Created November 14, 2018 04:18
enums-switch.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adagio
adagio / github-rails-upgrading.md
Created November 13, 2018 22:25
Github: Upgrading from Rails 3.2 to 5.2. Took a year and a half

Github: Upgrading from Rails 3.2 to 5.2.

Took a year and a half

Introduction

2018 September

clean up technical debt

improve codebase

How did we do it?

large and trafficked application

Require

  • careful planning
@adagio
adagio / enums.ipynb
Created October 16, 2018 03:36
enums.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@adagio
adagio / woo.local-ssl.conf
Created October 1, 2018 05:23
SSL conf for Sample Secure Backend
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin ***@***.***
ServerName woo.local
ServerAlias www.woo.local
DocumentRoot /var/www/woo.local
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
@adagio
adagio / flutter_udacity.md
Last active September 26, 2018 19:08
Flutter course in Udacity
@adagio
adagio / colors.dart
Created September 16, 2018 23:24
Colors (Flutter+Dart)
final _color1 = Colors.red;
final _color2 = Colors.blueGrey[900];
final _color3 = Colors.amberAccent;
final _color4 = Colors.pink.shade50;
//final _color5 = Colors.lightRed;
final _color6 = Colors.transparent;
final _color7 = const Color(0xFF013487);
final _color8 = const Color(0xFF4CD132);
//final _color9 = const Color(0xFF0134GG);
@adagio
adagio / CharsToStrings.swift
Created June 14, 2017 01:24
Map for string characters
var str = "Hello, playground"
var strings = [String]()
str.characters.map{strings.append(String($0))}