Well it's far from perfect and not responsive, but it meets my needs.
Just set up the internal HTTP server and replace main.css with that:
* {
padding: 0px;
Well it's far from perfect and not responsive, but it meets my needs.
Just set up the internal HTTP server and replace main.css with that:
* {
padding: 0px;
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.suo | |
*.user | |
*.userosscache |
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
using System.Threading.Tasks; | |
using Discord.Commands; | |
public class AudioModule : ModuleBase<ICommandContext> | |
{ | |
// Scroll down further for the AudioService. | |
// Like, way down | |
private readonly AudioService _service; | |
// Remember to add an instance of the AudioService |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
“Fools ignore complexity; pragmatists suffer it; experts avoid it; geniuses remove it.”
– Alan Perlis (Turing Award #1, ALGOL)
“Computer Science is the first engineering discipline in which the complexity of the objects created is limited solely by the skill of the creator, and not by the strength of raw materials.”
# Ben Levin's "Radiohead Chord Generator" video: | |
# https://www.youtube.com/watch?v=iYU_2hfFPM0 | |
# Rules: | |
# | |
# From a MAJOR chord (e.g. C), you can: | |
# - move to the parallel minor (Cm) | |
# - move down to the relative minor (Am) | |
# - move up 1/2 step to a minor chord (Dbm) |
function npm_prompt_filter() | |
local package = io.open('package.json') | |
if package ~= nil then | |
local package_info = package:read('*a') | |
package:close() | |
local package_name = string.match(package_info, '"name"%s*:%s*"(.-)"') | |
or "" | |
local package_version = string.match(package_info, '"version"%s*:%s*"(.-)"') | |
or "" |
import random | |
import subprocess | |
from collections import namedtuple | |
from datetime import timedelta | |
from math import sqrt | |
import argparse | |
from os.path import join, exists | |
from os import getcwd, mkdir | |
from ffprobe import FFProbe | |
from pytube import YouTube |