Skip to content

Instantly share code, notes, and snippets.

View alekhurst's full-sized avatar

Alek Hurst alekhurst

  • CyberGRX
  • United States
View GitHub Profile
const logMe = (text = 'yo') => {
console.log(text);
}
let simpleText = 'shiggidy';
logMe(simpleText) // => 'shiggidy'
simpleText = undefined;
logMe(simpleText); // => 'yo';
some pythons
some javas
@alekhurst
alekhurst / test.js
Last active February 26, 2017 02:01
console.log('hi')
/**
* RoommateMatchingForm.js
*/
import React from 'react';
import ZMNavigator from 'components/misc/ZMNavigator';
import {
RoommateMatchingQuestion,
IntroQuestion,
SliderQuestion,
import Text from ‘components/wrappers/ZMText
require 'xcodeproj'
require 'find'
require 'yaml'
class XCodeProject
def initialize(path)
unless File.exists?(path)
raise Errno::ENOENT, "#{path} does not exist."
end
#!/bin/bash
# Copyright (c) 2015-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
# Bundle React Native app's code and image assets.
# This script is supposed to be invoked as part of Xcode build process