Skip to content

Instantly share code, notes, and snippets.

View JeremyIglehart's full-sized avatar

Jeremy Iglehart JeremyIglehart

  • Downingtown, PA
View GitHub Profile
@JeremyIglehart
JeremyIglehart / discordErrors.txt
Created July 10, 2016 03:30
Discord Is Not Loading - Console Error Messages
7/9/16 11:29:41.172 PM lsd[235]: LaunchServices: Could not store lsd-identifiers file at /private/var/db/lsd/com.apple.lsdschemes.plist
7/9/16 11:29:41.329 PM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.pid.WebContent.3365) Conflicts exist in System services. Randomly deciding: path1 = /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/XPCServices/com.apple.desktopservices.KeynoteConverterXPCService32.xpc, path2 = /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A_/XPCServices/com.apple.desktopservices.KeynoteConverterXPCService32.xpc
7/9/16 11:29:41.329 PM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.pid.WebContent.3365) Conflicts exist in System services. Randomly deciding: path1 = /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/XPCServices/com.apple.desktopservices.KeynoteConverterXPCService64.xpc, path2 = /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A_/XPCServices/com.apple.desktop
@JeremyIglehart
JeremyIglehart / Keeping The Sabbath Day Holy - Gospel Principles.md
Created August 14, 2016 04:48
Keeping The Sabbath Day Holy - Gospel Principles

Keep the Sabbath Day Holy

Lesson 4: The Commandments Preach My Gospel: A Guide to Missionary Service, (2004), 71–81

Our Sabbath-day behavior is a reflection of our commitment to honor and worship God. By keeping the Sabbath day holy, we show God our willingness to keep our covenants. Each Sabbath day we go to the Lord’s house to worship Him. While there we partake of the sacrament to remember Jesus Christ and His Atonement. We renew our covenants and show that we are willing to repent of our sins and mistakes. (Paragraph 73

On this day, we enjoy a rest from our labors. As we attend Church services and worship together, we strengthen each other. We are renewed by our association with friends and family. Our faith is strengthened as we study the scriptures and learn more abo

@JeremyIglehart
JeremyIglehart / The Commandment to Be Baptized.md
Last active August 16, 2016 00:01
The Commandment to Be Baptized
  • Why must we be baptized?

For teachers: Use questions at the beginning of a section to start a discussion and send class members or family members to the text to find more information. Use questions at the end of a section to help class members or family members ponder and discuss the meaning of what they have read and apply it in their lives.


@JeremyIglehart
JeremyIglehart / countdown.jsx
Created August 17, 2016 23:43
React Countdown Timer with Performance Enhancements
import React, { Component } from 'react'
import moment from 'moment'
// This component is called like so:
// <CountdownTimer start={Date()} end={Date()} />
class CountdownTimer extends Component {
constructor(props) {
super(props)
@JeremyIglehart
JeremyIglehart / React Countdown Componant Performance Study.md
Last active August 18, 2016 01:16
React Countdown Component Performance Study

Hello Fellow React Peoples,

I finally finished my basic <Countdown /> componant. You use it like this:

<CountdownTimer start={someJSDate} end={someOtherJSDate} />

Here's the code for the component:

No Throttle:

@JeremyIglehart
JeremyIglehart / iTunesVSSpotify.md
Created August 20, 2016 16:30
iTunes vs Spotify

iTunes vs Spotify

A few months ago I switched from Spotify Premium to iTunes' Music Membership service. I switched because they were offering it for free for three months.

Since I've switched, I have to say I really really miss Spotify.

Here is a list of my observations

What Apple Does Wrong:

@JeremyIglehart
JeremyIglehart / README.md
Created August 31, 2016 23:04
Setting Meteor Session from the "Server" - or really?

This is probably bad design, Don't do this in real life.

I'm writing this gist in response to a comment on forums.meteor.com

I guess it's working... I wonder what is actually happening on the server side of things :X

Heh, oh well.

Thanks for the pointers aadams

@JeremyIglehart
JeremyIglehart / discussionTopic.md
Created September 21, 2016 01:43
maxOS Sierra Taking Forever to Install

Installing macOS Sierra Taking Forever?

I downloaded the Sierra installer at 1:30pm today (Before it was even on the "Front" page of the App Store). I noticed today while installing it is says that it should take "6 Minutes" to install, but it's been... I dunno, longer than 20 by now. It still says About 4 minutes remaining. The progress bar marches forward in chunks. Maybe it's because I'm using a MicroSDHC Card (40mb/s) in the Apple Card Reader slot through an adapter.

I dunno - Anyone else have thoughts on this?

@JeremyIglehart
JeremyIglehart / Endure to the end.md
Last active October 3, 2016 23:29
Family Home Evening Lesson Plan - How to Endure to the End

How to endure to the end

The word endure often leads to a miserable line of thought. From the thesaurus we fine: "undergo", "cope with", "deal with", "face", "suffer", "tolerate", "put up with", "brave", "bear", "withstand", "sustain", "weather" and then in a slightly more upbeat tone, but still kind of dismal we can continue in that same way to find "go through", "live through" and "experience".

When I first think about enduring to the end and try to think about it in an upbeat practical way the first thought that comes to mind has to do with training for an endurance sport. Like, doing an Ironman marathon. But, I mean... come on, look at me... This thought creates all kinds of other feelings inside.

We have to try a little harder than that to find a better meaning to attach to this idea of Enduring to the end. If we stop at the surface level, I think that most of us would tend to think "That's too hard" and turn to an easier path. It is mankind's tendency after-all to follow the path of least res

@JeremyIglehart
JeremyIglehart / install-latest-compose.sh
Created October 10, 2018 21:07 — forked from deviantony/install-latest-compose.sh
Install latest version of Docker Compose
#!/bin/bash
# get latest docker compose released tag
COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r '.tag_name')
# Install docker-compose
sh -c "curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
chmod +x /usr/local/bin/docker-compose
sh -c "curl -L https://raw.githubusercontent.com/docker/compose/${COMPOSE_VERSION}/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose"