Skip to content

Instantly share code, notes, and snippets.

View cederom's full-sized avatar
💭
- CeDeROM - THE FIRST CYBORG EVER -

CeDeROM cederom

💭
- CeDeROM - THE FIRST CYBORG EVER -
View GitHub Profile
@caos30
caos30 / After_to_install_Nextcloud.md
Last active July 15, 2024 06:22
Install Nextcloud on DreamCompute (DreamHost non-administrated VPS)

After to install Nextcloud

These are some of the things you probably should do after get installed Nextcloud.


Enable Redis caching

Using your local terminal connect with VPS:

@kirinelf
kirinelf / clock.html
Last active May 8, 2025 04:36 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
@fnky
fnky / ANSI.md
Last active May 10, 2025 15:39
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
anonymous
anonymous / gist:9523efecaa7d2542a405d129d4e3d15f
Created May 14, 2016 16:13
Arduino YM2149 MIDI Synth
// Arduino YM2149 MIDI Synth
// by yukimizake
// video: https://youtu.be/hUPs2pv5d_g
// schematics: http://electronicfields.wordpress.com/?attachment_id=128 (Vcc/GND not shown)
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
@waitman
waitman / udf2-current.patch
Last active May 31, 2022 20:24
UDF2 diff against FreeBSD-11.0-Current source r285141
--- sbin/Makefile 2015-07-04 07:26:20.000000000 -0700
+++ updates/src/sbin/Makefile 2015-07-04 10:47:16.664406000 -0700
@@ -49,6 +49,7 @@
mount_nfs \
mount_nullfs \
mount_udf \
+ mount_udf2 \
mount_unionfs \
newfs \
newfs_msdos \
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 7, 2025 23:53
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';