Skip to content

Instantly share code, notes, and snippets.

View angeloanan's full-sized avatar
🤖
programmed to work, not to feel~

Angelo angeloanan

🤖
programmed to work, not to feel~
View GitHub Profile
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@robertpainsi
robertpainsi / commit-message-guidelines.md
Last active June 27, 2024 14:45
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@angeloanan
angeloanan / index.js
Last active February 24, 2018 15:12
'b' bot for /r/Indonesia Discord
console.log('[INFO] Loading...')
const Discord = require('discord.js')
const client = new Discord.Client()
client.on('ready', function () {
if (client.user.bot) throw new TypeError('User is not a bot')
console.log('[INFO] Bot is ready and running')
if (client.presences.status === 'offline') {
client.user.setPresence({status: 'invisible'})
@tonkku107
tonkku107 / tix.tax.color.schemes.md
Last active December 8, 2020 21:59
Color Schemes for tix.tax.

To enable any of these, enter one of the possible values in the name field.

Color Schemes

Default: reset, default, normal
Night: zzzzzzzzzz
Ubuntu: ubuntu
Nature: go play outside
Pink Everywhere: 💖💖💖💖💖, 💕💕💕💕💕, 💗💗💗💗💗, 💙💙💙💙💙, 💚💚💚💚💚, 💛💛💛💛💛, 💜💜💜💜💜, 💝💝💝💝💝, 💞💞💞💞💞, 💟💟💟💟💟, 🧡🧡🧡🧡🧡, ❤️❤️❤️❤️❤️, 🖤🖤🖤🖤🖤, ♡♡♡♡♡, ♥♥♥♥♥, ❤❤❤❤❤, <3<3<3<3<3
Same Color (Blue): what is going on
Same Color (Red): what is happening

@Treeki
Treeki / TurnipPrices.cpp
Last active May 27, 2024 15:18
AC:NH turnip price calculator
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
// munged from https://github.com/simontime/Resead
namespace sead
{
class Random
{
#!/usr/bin/awk -f
# This program is a copy of guff, a plot device. https://github.com/silentbicycle/guff
# My copy here is written in awk instead of C, has no compelling benefit.
# Public domain. @thingskatedid
# Run as awk -v x=xyz ... or env variables for stuff?
# Assumptions: the data is evenly spaced along the x-axis
# TODO: moving average
@vladfrangu
vladfrangu / chain_of_events.md
Last active August 31, 2020 11:04
What happened in Dirigeants, and where are we going next

This is a long story, with a lot of events that ended up creating the current state of Dirigeants: silent, dead, and unable to be maintained all due to AoDude (known as bdistin on GitHub) being power hungry, and not to mention selfish.

Around July 23rd, it all started when AoDude kicked Kyra for pinging him that his bot went offline. Thus, Kyra lost his Developer (and Admin) role, the former being given back once Kyra rejoined, however a reason behind the kick was never actually given. Around that day, we started drafting a formal letter, informing AoDude that due to his repeated violations of his own Code of Conduct, he will lose the ownership status on the GitHub organization, and unless he respects the terms mentioned in the letter, he'll lose the membership status as well.

Another one of Ao's actions was to ban Kyra over "breaking copyright", and filing an unofficial DMCA takedown request to Kyra's work-in-progress framework. The issue is publicly available here: https://github.com/sapphire-proj

@jamiebuilds
jamiebuilds / tradeoffs-in-value-derived-types-in-typescript.md
Last active December 16, 2022 17:21
Value-derived types in TypeScript are super powerful, but you should be thoughtful in how/when you use them

Tradeoffs in value-derived types in TypeScript

Many of the more "advanced" typescript features can be used for creating "value-derived" types.

At its simplest form:

let vehicle = { name: "Van", wheels: 4 }
@Eirenliel
Eirenliel / slimevr-setup.md
Last active July 19, 2022 22:52
SlimeVR Setup instructions
@Nielk1
Nielk1 / ExtendInput.DataTools.DualSense.TriggerEffectGenerator.cs
Last active June 28, 2024 18:09
Factories for all DualSense trigger effects
/*
* MIT License
*
* Copyright (c) 2021-2022 John "Nielk1" Klein
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is