Skip to content

Instantly share code, notes, and snippets.

@chris-ramon
chris-ramon / gist:570bc21008a22544134fd285f59f6d20
Created June 18, 2020 06:28 — forked from moraes/gist:2141121
LIFO Stack and FIFO Queue in golang
package main
import (
"fmt"
)
type Node struct {
Value int
}
@chris-ramon
chris-ramon / tmux.md
Created November 2, 2019 02:59 — forked from Bekbolatov/tmux.md
Clean tmux cheat-sheet

Clean tmux cheat-sheet

By resources

sessions

list-sessions        ls         -- List sessions managed by server
new-session          new        -- Create a new session
@chris-ramon
chris-ramon / StripeCardsSection.js
Created April 12, 2019 01:03 — forked from lfalke/StripeCardsSection.js
Usage of react-stripe-elements with Material UI (v1.0) styling
import React, { PureComponent } from 'react'
import Grid from 'material-ui/Grid'
import { CardNumberElement, CardExpiryElement, CardCVCElement } from 'react-stripe-elements'
import StripeElementWrapper from './StripeElementWrapper'
export default class extends PureComponent {
static displayName = 'StripeCardsSection'
@chris-ramon
chris-ramon / README.md
Created March 19, 2019 02:43 — forked from joyrexus/README.md
Node.js streams demystified

A quick overview of the node.js streams interface with basic examples.

This is based on @brycebaril's presentation, Node.js Streams2 Demystified

Overview

Streams are a first-class construct in Node.js for handling data.

Think of them as as lazy evaluation applied to data.

@chris-ramon
chris-ramon / .vimrc
Created March 15, 2019 05:25 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
@chris-ramon
chris-ramon / CountLinesAndLetters.js
Created March 7, 2019 01:08 — forked from maxrabin/CountLinesAndLetters.js
Example Lambda Function to process lines of text files when uploaded to S3
'use strict';
var AWS = require('aws-sdk');
var S3 = new AWS.S3();
var readline = require('readline');
exports.handler = function (event, context) {
//Get S3 file bucket and name
//Make sure to loop through event.Records, don't assume there is only 1 in production!!!
var bucket = event.Records[0].s3.bucket.name;
var key = event.Records[0].s3.object.key;
@chris-ramon
chris-ramon / lambda-s3-read-write-by-line.js
Created March 7, 2019 01:08 — forked from hboylan/lambda-s3-read-write-by-line.js
AWS Lambda function to read and write S3 files by line to perform efficient processing
const stream = require('stream')
const readline = require('readline')
const AWS = require('aws-sdk')
const S3 = new AWS.S3()
// read S3 file by line
function createReadline(Bucket, Key) {
// s3 read stream
const input = S3
@chris-ramon
chris-ramon / jessfraz.md
Created August 5, 2018 04:02 — forked from acolyer/jessfraz.md
Containers, operating systems and other fun things from The Morning Paper
@chris-ramon
chris-ramon / aes256-gcm.go
Created July 25, 2016 17:38 — forked from kkirsche/aes256-gcm.go
AES-256 GCM Encryption Example in Golang
package example_test
import (
"crypto/aes"
"crypto/cipher"
"hex"
"io"
)
// AES-GCM should be used because the operation is an authenticated encryption
@chris-ramon
chris-ramon / main.go
Created July 25, 2016 17:38 — forked from manishtpatel/main.go
GoLang Encrypt string to base64 and vice versa using AES encryption.
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"fmt"
"io"
)