Skip to content

Instantly share code, notes, and snippets.

View jasmo2's full-sized avatar

Jaime Molina jasmo2

  • All over the World
View GitHub Profile
@migsan
migsan / typescriptreact.json
Created March 12, 2020 20:46
VSCode custom snippet for a memo component
{
"Functional Memo Component": {
"prefix": "tsxmemo",
"body": [
"import React from 'react'",
"import { styled } from '~/styles'",
"",
"// Types ----------",
"",
"interface ComponentProps {}",
@jasalo
jasalo / vlipco_senior_ruby_developer.md
Created September 10, 2019 21:58
Vlipco - Senior Ruby Developer

Senior Backend Developer - Ruby

www.vlipco.com

IMPORTANTE: Si no cumples los requisitos, al menos la mayoría, no apliques.

About Us

Our existing backend is composed of a large Ruby app built with some small in house libraries and some open source routing components. We also have several serverless functions and a small web app for every financial institution we serve. We are currently working on expanding to new countries in the region and you will help us transform the existing architecture to serve multiple financial institutions in different countries while keeping a unified payments core that can be expanded according to the needs of each of our customers, while preserving security, speed and taking special care of user and developer experience.

@c9s
c9s / .babelrc
Last active October 21, 2023 14:04
webpack + babel + typescript + es6 - total solutions!
{
"presets": ["es2015"],
"plugins": ["transform-runtime"]
}
@KeithP
KeithP / .ebextensions redis.config
Last active March 11, 2022 06:49
install redis on AWS EC2
packages:
yum:
gcc-c++: []
make: []
git: []
commands:
redis_script_01:
command: wget https://raw.github.com/KeithP/install-redis-amazon-linux-centos/master/redis-install-script.sh
redis_script_02:
command: chmod 777 redis-install-script.sh
@henrik
henrik / deploying_phoenix_on_dokku.md
Last active April 14, 2024 00:32
Deploying Elixir's Phoenix Framework on Dokku.

Deploying Phoenix on Dokku

Worked 2015-09-08 for Phoenix 1.0.1 on Dokku 0.3.25.

These instructions assume you've set up Dokku. If not, go find a tutorial for that part. My notes for setting it up on Digital Ocean.

On your local machine, in the app's repo

Create a Dokku app:

@cstrelioff
cstrelioff / README.md
Last active June 4, 2018 16:31
decision trees: scikit-learn + pandas

decision trees: scikit-learn + pandas

This script provides an example of learning a decision tree with scikit-learn. Pandas is used to read data and custom functions are employed to investigate the decision tree after it is learned. Grab the code and try it out.

A blog post about this code is available here, check it out!

@lucasmcastro
lucasmcastro / mongoloide
Created March 20, 2014 00:40
mongo + pymongo + mongolab
>>> from pymongo import MongoClient
>>> import datetime
post = {"author": "Mike","text": "My first blog post!","tags": ["mongodb", "python", "pymongo"], "date": datetime.datetime.utcnow()}
>>> uri = "mongodb://pyladies:pyladies@dbh16.mongolab.com:27167/series4ladies"
>>> client = MongoClient(uri)
>>> client
MongoClient('dbh16.mongolab.com', 27167)
>>> client.series4ladies
Database(MongoClient('dbh16.mongolab.com', 27167), u'series4ladies')
>>> db = client.series4ladies