Skip to content

Instantly share code, notes, and snippets.

View neiesc's full-sized avatar
💚

Edinei Cavalcanti neiesc

💚
View GitHub Profile
@torvalds
torvalds / gist:6faadce34c56d53b2d5352da0c3cd093
Last active September 23, 2025 16:07
Not involved with any fishy crypto fishy business
I'm told that there are people claiming to "tokenize" my git repositories with my approval.
I just want to clarify that that is not the case. I do not believe in monetizing my repositories.
If you believe crypto-currencies are anything but a scam, I have a bridge to sell you.
But I'm not selling source code.
@turicas
turicas / Transcrição de textos em Português com whisper (OpenAI).ipynb
Last active November 18, 2025 15:49
Transcrição de textos em Português com whisper (OpenAI)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Tuning Jellyfin for Large Libraries

Jellyfin, at least in its current state hasn't been great for media server

Database

It is no secret that Jellyfin's database has its shortcomings, espeically when trying to search large media collections. To remedy this, we'll be manually setting some PRAGMA values in the sqlite database.

While it is important to note that these optimizations may cause issues should sudden powerloss occur, it should be pretty safe to run them in an environment like a datacenter, which is where most of my gear resides.

@umidjons
umidjons / youtube-dl-download-audio-only-on-best-quality.md
Last active September 9, 2025 12:59
Download Audio from YouTube with youtube-dl

Download Audio from YouTube

-i - ignore errors

-c - continue

-t - use video title as file name

--extract-audio - extract audio track

@jcamp
jcamp / video-editors-opensource.md
Last active November 6, 2025 13:42
OpenSource Video Editors
@parmentf
parmentf / GitCommitEmoji.md
Last active November 17, 2025 14:19
Git Commit message Emoji

Disclaimer: This is an unofficial post by a random person from the community. I am not an official representative of io.js. Want to ask a question? open an issue on the node-forward discussions repo

io.js - what you need to know

io-logo-substack

  • io is a fork of node v0.12 (the next stable version of node.js, currently unreleased)
  • io.js will be totally compatible with node.js
  • the people who created io.js are node core contributors who have different ideas on how to run the project
  • it is not a zero-sum game. many core contributors will help maintain both node.js and io.js
anonymous
anonymous / fib.py
Created November 1, 2014 14:40
Fibonacci custom rep
class Fib():
def __init__(self, data=None):
self.values = []
if data >= 0:
i = 2
self.values = [1, 1]
b = self.values[-2]
c = self.values[-1]
d = b + c
while i < data:
@staltz
staltz / introrx.md
Last active November 19, 2025 07:55
The introduction to Reactive Programming you've been missing