Skip to content

Instantly share code, notes, and snippets.

View kiadybezaka's full-sized avatar
🎯
Focusing

Kiady Bezaka kiadybezaka

🎯
Focusing
View GitHub Profile
@kiadybezaka
kiadybezaka / global.R
Created July 9, 2018 13:23 — forked from SachaEpskamp/global.R
A general shiny app to import and export data to R. Note that this can be used as a starting point for any app that requires data to be loaded into Shiny.
library("shiny")
library("foreign")
@kiadybezaka
kiadybezaka / README.md
Created July 3, 2018 05:43 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@kiadybezaka
kiadybezaka / gulpfile.js
Created April 9, 2018 07:47
Gulp + react + sass + es6
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var browserify = require('browserify');
var watchify = require('watchify');
var babel = require('babelify');
var sass = require('gulp-sass');
var conf = {
@kiadybezaka
kiadybezaka / frontendDevlopmentBookmarks.md
Created May 9, 2017 07:46 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.