- 4 tsp. Bird's Eye chillies, toasted in a dry pan
- 4 tsp. Dried oregano
- 4 tsp. onion powder
- 4 tsp. garlic powder
- 4 tsp. sweet paprika
- 2 tsp. cumin
- 2 tsp. salt
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
alert(1) |
This file contains 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
export CFLAGS=""\ | |
"-march=native -Ofast"\ | |
"-fmerge-all-constants"\ | |
"-fmodulo-sched -fmodulo-sched-allow-regmoves"\ | |
"-fgcse-sm -fgcse-las -fgcse-after-reload"\ | |
"-funsafe-loop-optimizations"\ | |
"-fdevirtualize-speculatively -fdevirtualize-at-ltrans"\ | |
"-fipa-pta"\ | |
"-ftree-loop-if-convert-stores -ftree-loop-distribution -ftree-loop-im"\ | |
"-ftree-parallelize-loops=$(nproc)"\ |
This file contains 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
@echo off | |
:checkPrivileges | |
echo Checking for privileges | |
net file 1>nul 2>nul | |
if '%errorlevel%' == '0' ( | |
goto gotPrivileges | |
) else ( | |
echo Requesting privileges (script will execute in new window) | |
powershell "saps -filepath %0 -verb runas" >nul 2>&1 |
This file contains 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
""" | |
Implementation of the Lempel–Ziv–Storer–Szymanski algorithm, ported from the | |
C implementation by Haruhiko Okumura | |
https://oku.edu.mie-u.ac.jp/~okumura/compression/lzss.c | |
Public Domain | |
""" | |
class LZSSBase(object): | |
def __init__(self, infile, outfile, EI=11, EJ=4, P=1, N=0, F=0, rless=0, init_chr=b' '): | |
self.infile = infile |
This file contains 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
// gcc inmake.c -o inmake | |
// ^ 100% self-hosted | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <errno.h> | |
#include <string.h> | |
#define COMMAND_SIZE 255 |
NewerOlder