Skip to content

Instantly share code, notes, and snippets.

View ash-development's full-sized avatar

ash ash-development

View GitHub Profile
@amishshah
amishshah / discordjs.md
Created October 22, 2021 22:36
tl;dr i'm stepping down as owner of discord.js!

Hello! I'm Amish (also known as hydrabolt), and I am the creator of discord.js.

I created discord.js as a hobby/learning project for myself in August 2015 while I was still a teenager in school.

More than 6 years later, discord.js has become more popular than I could ever imagine, and I cannot express how grateful I am to the other contributors and the community for this amazing experience.

A few of my favourite highlights include:

  • The countless voice rewrites (I think we're done with that now 😉)
  • The April Fools' traditions
@astei
astei / message.md
Last active November 12, 2021 09:39
Regarding my recent absence/disinterest in Minecraft

Here for the Velocity 3.0.1 release announcement? It's over here.

What's going on?

This year has been a wild ride for me. In February, I got a job with Branch. To say that the pressure has never been higher than ever is quite the understatement. To put it bluntly, this is not for the faint of heart. With the increase in workload at work, it has left me with ever less time to focus on Minecraft.

In addition, most of my projects have been one-man shows, with me being the principal driving force. Velocity alone as of this writing has 25,441 lines of code, with much of it written by me. But with increasing time pressure on me, along with not being adequately compensated for the free time I am able to put into Velocity, I have been forced to re-evaluate my priorities.

Where does that leave Velocity?

@paradigmnomad
paradigmnomad / modding-software-recommendations.md
Last active March 23, 2024 13:38
A collection of recommended softwares for modding Stardew Valley

Contents

This is not a comprehensive list of all software you can use for Stardew Valley; however these are the ones most often recommended by the community. Feel free to suggest software in the comments for others, there's a lot out there!

Pixel Art Software

Software Price (USD) OS Notes
@dylants
dylants / proton-mail.css
Last active April 28, 2022 20:39
Dark Theme for Proton Mail
/* ProtonMail */
/* CLASSIC THEME */
body { font-size: 14px }
body,
.pm_opensans {
font-family: 'Lucida Grande', Verdana, Arial, sans-serif
}
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active June 7, 2024 09:39
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
@uupaa
uupaa / image.resize.in.github.flavored.markdown.md
Last active June 13, 2024 20:03
image resize in github flavored markdown.

Image source

https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png

Try resize it!

  • ![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png | width=100)
@jonikarppinen
jonikarppinen / markdown-comments.md
Last active June 11, 2024 17:59
How to comment out stuff in Markdown on GitHub?

Comments in GitHub flavour of Markdown

As answers to this Stack Overflow question reveal, using <!--- and ---> or <!-- and --> works (view source by clicking "Raw"):

@achoukah
achoukah / blank-html-page.html
Last active May 23, 2024 14:45
html blank page
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="Webpage description goes here" />
<meta charset="utf-8">
<title>Change_me</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
<link rel="stylesheet" href="css/style.css">