Skip to content

Instantly share code, notes, and snippets.

View venkatesh87's full-sized avatar
🏠
Working from home

Venkatesh venkatesh87

🏠
Working from home
  • Chesterfield, Missouri
View GitHub Profile

How we incorporate next and cloudfront (2018-04-21)

Feel free to contact me at [email protected] or tweet at me @statisticsftw

This is a rough outline of how we utilize next.js and S3/Cloudfront. Hope it helps!

It assumes some knowledge of AWS.

Goals

@venkatesh87
venkatesh87 / 06.png
Created April 12, 2020 11:43 — forked from mfd/06.png
Gilroy font
06.png
@venkatesh87
venkatesh87 / gist:32ae6f757a50ee03ff9ce11dfc246916
Created March 11, 2020 16:12 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@venkatesh87
venkatesh87 / mac-setup.sh
Created February 12, 2020 08:14 — forked from samlester/mac-setup.sh
Script to setup a new Mac
# Mac setup script
# By Sam Lester
# Based on https://gist.github.com/codeinthehole/26b37efa67041e1307db
# Usage:
# - Install Xcode Command Line Tools using "xcode-select --install"
# - Run "sh ./mac-setup.sh"
# - Run installers for apps that have them (Adobe Creative Cloud, Microsoft Office)
# - Install apps that aren't on cask (Todoist, Pocket, Magnet, Mactracker, iA Writer, Trello, Keynote)

Before anything else:

  • Dropbox: Store all the things (including my 1Password database needed next)
  • 1Password: The best password manager (Need this early so that I can enter passwords for the rest of the stuff below)

App Store:

  • Mindnode: Mind Mapping
  • Trello: Basic project board
  • Todoist: Todo manager (Integrates with google assistant)
  • Keynote: Presentations
  • Numbers: Spreadsheets
@venkatesh87
venkatesh87 / iterm2-solarized.md
Created March 24, 2019 22:18 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k] - (macOS)

Default

Default

Powerlevel9k

Powerlevel9k

let gulp = require('gulp'),
replace = require('gulp-batch-replace'),
filesExist = require('files-exist');
gulp.task('bt4', () =>
{
let diff = {
'@media (min-width: $screen-xs-min) and (max-width: $screen-sm-max)': '@media (min-width: map-get($grid-breakpoints, xs)) and (max-width: map-get($grid-breakpoints, xs))',
'@media (min-width: $screen-xs) and (max-width: ($screen-md-min - 1))': '@media (min-width: map-get($grid-breakpoints, xs)) and (max-width: map-get($grid-breakpoints, md)-1)',
@venkatesh87
venkatesh87 / MaterialReactSelect.js
Created June 7, 2018 15:43
react-select overrides for a material-ui@next feel
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { Async } from 'react-select';
// UI.
import { withStyles } from 'material-ui/styles';
import { FormControl } from 'material-ui/Form';
import { InputLabel } from 'material-ui/Input';