Skip to content

Instantly share code, notes, and snippets.

View jkyletreman's full-sized avatar

Kyle jkyletreman

  • 1800Flowers
  • NYC
View GitHub Profile
@jkyletreman
jkyletreman / apple-bluetooth-keyboard-windows-10-bootcamp.md
Created January 19, 2018 20:19 — forked from mcandre/apple-bluetooth-keyboard-windows-10-bootcamp.md
How to fix Apple Bluetooth Wireless Keyboard (Windows 10)

The driver situation with Apple Bluetooth wireless keyboards and Windows 10 is horrible, even with the latest BootCamp drivers. Fortunately, a workaround is available, if you're patient.

Pair keyboard once

  1. Turn on the keyboard.
  2. Press and hold Command + w until the keyboard light begins blinking, indicating the keyboard is ready to pair.
  3. Use Windows Bluetooth settings to pair the keyboard, entering the same code (e.g. 123456 Enter) on both internal and external keyboards.

Pairing the keyboard is very trial and error. 9/10 times, Windows will complain that the keyboard is not available for pairing. Just keep trying.

@jkyletreman
jkyletreman / Day_1.md
Created January 23, 2018 14:10
Algorithms Club Day 1

Welcome to Algorithms Club!

Goals

  • Become familiar with algorithmic thinking, dynamic & functional programming
  • Prepare for interviews with mock questions and whiteboarding
  • Become better programmers

Things you'll need

  • Python 3
@jkyletreman
jkyletreman / binary_search.py
Created January 26, 2018 20:34
Binary Search in Python
# iterative implementation of binary search in Python
def binary_search(a_list, item):
"""Performs iterative binary search to find the position of an integer in a given, sorted, list.
a_list -- sorted list of integers
item -- integer you are searching for the position of
"""

The 5 Ways of Fibonacci

Terminology in methods

  • recursion
  • generators
  • memoization

Intro to Immutable JS

  • Immutable is maintained by Facebook, so you can expect it to always be in sync with React.
  • The API is written in typeScript? at the very least it has special syntax
  • value could be inflated because of FB and React.

Immutable JS

Immutable basics

Flash

  • A modern take on a childrens flash card app
What problem or need does your project solve?
  • Education apps, especially ones that have utility for parents, are always in demand.
  • Thought the design and creation of this app I plan to focus on Ui/Ux interactions, and engaging design & functionality aimed at children
Who would be a user of your website?
  • Children between 6-14
  • Parents of this.Children

Capstone Project Proposals

Meal Planner App

Quick pitch:

Planning meals is tiresome and a exhausting during the week. The Meal Planner app automates the most annoying parts of this so you can focus on eating healthy and cooking.

  • Select as many breakfast, lunch, dinner meals as you will need to prepare for the week.
  • Recieve a autogenerated shopping list and schedule added to your Google Cal.
  • Displays your weekly schedule of meals complete with instructions, nutritional info and more!
@jkyletreman
jkyletreman / gist:524bcaec63339b2116a9d3583313f8ff
Created July 11, 2018 21:26
gradlew app:dependencies output
> Configure project :app
WARNING: The option 'android.enableAapt2' is deprecated and should not be used anymore.
Use 'android.enableAapt2=true' to remove this warning.
It will be removed at the end of 2018..
Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
→ ./gradlew installDebug
> Configure project :app
WARNING: The option 'android.enableAapt2' is deprecated and should not be used anymore.
Use 'android.enableAapt2=true' to remove this warning.
It will be removed at the end of 2018..
Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.courier_test.cd anapp"
>
<uses-sdk
android:minSdkVersion="24"
android:targetSdkVersion="27" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />