This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from PIL import Image | |
import math | |
import time | |
SIZE = (400, 300) | |
TOTAL_TIME = 40 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// g++ -O2 -std=c++20 -o foo repro.cpp && ./foo | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
struct Vector { | |
~Vector() {} | |
char* data() { | |
if (m_outline) | |
return m_outline; | |
return reinterpret_cast<char*>(m_inline); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaabf # Part of a commit | |
aarch | |
Aarch | |
ABCD | |
abefrnt # list of shortargs | |
abench | |
ABI | |
abrt | |
Absolutize | |
AcceptSocketConnections |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Usage: python3 randombeeps.py | aplay -f cd | |
import math | |
import random | |
import struct | |
import sys | |
MIN_FREQ_HERTZ = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import re | |
import subprocess | |
RE_SPELLCHECK_DISABLE = re.compile("spell-checker:disable-\w+") | |
CACHED_FILES_STRING = None | |
def check_right_directory(): |
OlderNewer