Skip to content

Instantly share code, notes, and snippets.

View philipp-spiess's full-sized avatar

Philipp Spiess philipp-spiess

View GitHub Profile
@philipp-spiess
philipp-spiess / First-Time Contributors - 1 Mar 2019.md
Created March 1, 2019 16:01
First-Time Contributors - This Week in React ⚛️- Issue 22 - 1 Mar 2019

🔥 50 New First-Time Contributors 🔥

New contributors land their first PR in the react, devtools, or documentation repositories every week.

This week, we have another big number of new first-time contributors.

Thank you to all these amazing people that help to jump-start our internationalization effort and push React forward every week. You are incredible. 💕

@philipp-spiess
philipp-spiess / First-Time Contributors - 22 Feb 2019.md
Created February 22, 2019 15:25
First-Time Contributors - This Week in React ⚛️- Issue 21 - 22 Feb 2019

🔥 55 New First-Time Contributors 🔥

New contributors land their first PR in the react, devtools, or documentation repositories every week.

This week, we have another big number of new first-time contributors.

Thank you to all these amazing people that help to jump-start our internationalization effort and push React forward every week. You are incredible. 💕

@philipp-spiess
philipp-spiess / First-Time Contributors - 15 Feb 2019.md
Last active February 15, 2019 18:23
First-Time Contributors - This Week in React ⚛️- Issue 20 - 15 Feb 2019

🔥 134 New First-Time Contributors 🔥

New contributors land their first PR in the react, devtools, or documentation repositories every week.

This week, we have a surprising 134 new first-time contributors.

Thank you to all these amazing people that help to jump-start our internationalization effort and push React forward every week. You are incredible. 💕

@philipp-spiess
philipp-spiess / gist:1b03c60a6b70097667c733910296470d
Created August 7, 2018 07:50
Recent Reactions to GitHub comments
https://developer.github.com/v4/explorer/
{
viewer {
issueComments(last: 10) {
nodes {
bodyText
repository {
owner {
login
@philipp-spiess
philipp-spiess / PSPDFKit.js
Created October 17, 2017 15:11
PSPDFKit for Web Code Example
import PSPDFKit, { Geometry } from "pspdfkit"
const instance = await PSPDFKit.load({
container: "#pdf-view",
pdf: "/sales-report.pdf"
});
instance.setViewState(viewState => viewState.zoomIn());
const annotations = await instance.getAnnotations(0);
@philipp-spiess
philipp-spiess / keybase.md
Created September 13, 2016 20:04
keybase.md

Keybase proof

I hereby claim:

  • I am philipp-spiess on github.
  • I am philippspiess (https://keybase.io/philippspiess) on keybase.
  • I have a public key whose fingerprint is 046E 9878 48DE 5CCC E5C8 0B2E 941E FCA4 C932 4A30

To claim this, I am signing this object:

@philipp-spiess
philipp-spiess / .gitignore
Last active June 23, 2016 16:23
PSPDFKit Chrome Theme
Cached Theme.pak
@philipp-spiess
philipp-spiess / gist:e886251a3cd14adb7ee6
Created February 8, 2016 21:07
OSX Disable Auto Mounting
diskutil info /Volumes/HDD_NAME | grep "UUID"
sudo echo "UUID=12345678-1ABC-1CDE-1FGH-123456789012 none hfs rw,noauto" > /etc/fstab
@philipp-spiess
philipp-spiess / .rubocop.yml
Created December 17, 2015 11:16
Rubocop Config
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Style/BlockDelimiters:
EnforcedStyle: braces_for_chaining
Metrics/LineLength:
@philipp-spiess
philipp-spiess / nginx.conf
Created November 20, 2015 00:38
RTMP2RTMP Proxy
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
meta copy;
push rtmp://live91.eu-dl.zencoder.io:1935/live/foobar;
}