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 July 21, 2024 15:13 — 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 July 26, 2024 21:14
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@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 July 26, 2024 12:21
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';