Skip to content

Instantly share code, notes, and snippets.

View waseem18's full-sized avatar
πŸ‘¨β€πŸ’»

Wasim Thabraze waseem18

πŸ‘¨β€πŸ’»
View GitHub Profile
@yefim
yefim / Dockerrun.aws.json
Last active July 22, 2025 01:10
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "<AWS_ACCOUNT_ID>.dkr.ecr.us-east-1.amazonaws.com/<NAME>:<TAG>",
"Update": "true"
},
"Ports": [
{
"ContainerPort": "443"
}
@toast38coza
toast38coza / docker.yml
Created February 25, 2016 08:10
Ansible playbook to install docker toolbox on Ubuntu 14.04
---
- hosts: localhost
tasks:
- name: Update apt
apt:
update_cache: yes
become: yes
become_user: root
become_method: sudo
@chrismedrela
chrismedrela / proposal.md
Last active March 15, 2016 00:14
"Improving numerical routines in Scala Breeze" GSoC 2014 proposal.

"Improving numerical routines in Scala Breeze" GSoC 2014 proposal.

Abstract

Breeze is a great numerical processing library. However, it lacks some high-level functions that you can find in other libraries like SciPy. The second issue is that Breeze lacks documentation. This makes the entry barrier higher for new contributors.

My proposal is to revamp documentation and to introduce interpolation and

#!/usr/bin/env python
#
# Converts any integer into a base [BASE] number. I have chosen 62
# as it is meant to represent the integers using all the alphanumeric
# characters, [no special characters] = {0..9}, {A..Z}, {a..z}
#
# I plan on using this to shorten the representation of possibly long ids,
# a la url shortenters
#