Skip to content

Instantly share code, notes, and snippets.

base
crda
dhcpcd
dialog
haveged
linux-raspberrypi4
nano
net-tools
netctl
openssh
WIDTH = 16;
DEPTH = 4096;
ADDRESS_RADIX = DEC;
DATA_RADIX = DEC;
CONTENT BEGIN
0 : -32511;
1 : -32255;
2 : -31977;
3 : -13552;
4 : -18109;
@ny-a
ny-a / simple-fib.asm
Last active September 8, 2021 12:59
SIMPLE でのフィボナッチ数列の算出
// R0 output
// R1 constant(1)
// R2 temporary0
// R3 temporary1
// R4 counter
// Entrypoint:
// LI 0 0
LI 1 1
// LI 2 0
@ny-a
ny-a / secrets.yml
Created April 23, 2020 08:24
/etc/webapps/gitlab/secrets.yml
production:
secret_key_base: secret
db_key_base: secret
From f8877f4681e5e85b36343605d64165bbe3d9acd6 Mon Sep 17 00:00:00 2001
From: ny-a <58758248+ny-a@users.noreply.github.com>
Date: Mon, 30 Mar 2020 15:36:52 +0900
Subject: [PATCH] Update to 20200307
---
.SRCINFO | 22 ++++++++++------------
PKGBUILD | 24 +++++++++++++-----------
2 files changed, 23 insertions(+), 23 deletions(-)
@ny-a
ny-a / convert_itermcolors.py
Last active September 11, 2021 11:19 — forked from atav32/convert_itermcolors.py
Convert .itermcolors file to Xresource hex
#!/usr/bin/env python
#
# Convert .itermcolors files to hex colors for html
import sys
import xml.etree.ElementTree as ET
def rgb_to_hex(rgb):
return '#%02x%02x%02x' % rgb