Skip to content

Instantly share code, notes, and snippets.

View Fuyukai's full-sized avatar
💭
-͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌

Lura Skye Fuyukai

💭
-͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌͌
View GitHub Profile
@makamys
makamys / 1.7.10-essentials.md
Last active July 12, 2024 22:34
List of "Essential" 1.7.10 Mods

List of "Essential" 1.7.10 Mods

This is a list of Minecraft 1.7.10 mods that are not focused on adding new original content. Instead, they make the base game run better, or port over features from other versions of vanilla.

These lists try to comprehensively list all the available options. You will not want to use all of the listed mods at once.

Some of the listed mods require a Mixin bootstrap mod in order to work. See the Mixin mods section near the end of the document for information about that.

Table of Contents

@matortheeternal
matortheeternal / discord-small-blocked-messages.css
Created August 21, 2016 14:32
This makes the blocked messages in Discord smaller, so they aren't quite as in your face. https://puu.sh/qJ8BC.jpg
.message-group-blocked {
background: transparent;
margin: 0px;
border: none;
}
.message-group-blocked .message-group-blocked-btn {
font-size: 10px;
padding: 6px 20px;
text-align: left;
#!/bin/env python3
from flask import Flask
import geoip2.database
app = Flask(__name__)
reader = geoip2.database.Reader('GeoLite2-City.mmdb')
@app.route("/")
def hello():
@popravich
popravich / PostgreSQL_index_naming.rst
Last active July 19, 2024 06:03
PostgreSQL index naming convention to remember

The standard names for indexes in PostgreSQL are:

{tablename}_{columnname(s)}_{suffix}

where the suffix is one of the following:

  • pkey for a Primary Key constraint;
  • key for a Unique constraint;
  • excl for an Exclusion constraint;
  • idx for any other kind of index;