Skip to content

Instantly share code, notes, and snippets.

View JasonEtco's full-sized avatar
👋
Hello, happy Monday!

Jason Etcovitch JasonEtco

👋
Hello, happy Monday!
View GitHub Profile
@JasonEtco
JasonEtco / talk.md
Last active September 28, 2021 20:00
Universe 2021 Talk

Title

  • Special Projects: Building a dynamic social card service
  • Improving the social presence of GitHub with dynamic preview images
  • Making your GitHub projects shine with dynamic preview images
  • Making your GitHub URLs shine with dynamic preview images

Abstract

You know that feeling when you make your latest project on GitHub public, and you’re ready to share it with the world? Or when you landed a PR that you’re so proud of, that you want the entire Twitterverse to hear about it? We wanted to make those links stand out, and give people a visually interesting and informative preview of your hard work.

@JasonEtco
JasonEtco / notes.md
Created August 31, 2021 16:00
Year in Review notes

‎‎​

@JasonEtco
JasonEtco / package-lock.json
Created November 14, 2019 15:44
Big package.json
This file has been truncated, but you can view the full file.
{
"name": "[REDACTED]",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
@JasonEtco
JasonEtco / recent-activity.txt
Last active January 17, 2023 03:42
⚡️ Recent activity
🎉 Merged PR #17 in JasonEtco/rss-to-readme
💪 Opened PR #17 in JasonEtco/rss-to-readme
🎉 Merged PR #16 in JasonEtco/rss-to-readme
💪 Opened PR #16 in JasonEtco/rss-to-readme
❗️ Closed issue #102 in JasonEtco/create-an-issue
@JasonEtco
JasonEtco / generate-app-url.sh
Created August 6, 2018 00:45
Generate a GitHub App creation form URL with all permissions and events enabled.
#!/bin/sh
declare -a permission=(
'administration'
'deployments'
'contents'
'issues'
'metadata'
'pages'
'pull_requests'
@JasonEtco
JasonEtco / fade-in.css
Created May 5, 2016 15:12
Quick Fade-In animation
@-webkit-keyframes fade-in {
0% {opacity: 0}
100% {opacity: 1}
}
@keyframes fade-in {
0% {opacity: 0}
100% {opacity: 1}
}