Skip to content

Instantly share code, notes, and snippets.

View mafulafunk's full-sized avatar
🏠
Working from home

Martin Funk mafulafunk

🏠
Working from home
  • Freelancer
  • Wiesbaden, Germany
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
1,netflix.com
2,api-global.netflix.com
3,prod.netflix.com
4,push.prod.netflix.com
5,ichnaea.netflix.com
6,google.com
7,microsoft.com
8,secure.netflix.com
9,www.google.com
10,facebook.com
@Jonarod
Jonarod / README.md
Last active April 20, 2024 19:27
Install Alpine Linux on Hetzner cloud
  1. Create an hetzner server using Ubuntu
  2. Go to the Hetzner's Server dashboard > Images
  3. Click on "Mount" over the alpine-linux-extended.iso image
  4. Shutdown the server
  5. Start the server
  6. Click the "Console" icon from the dashboard to open an interactive terminal session
  7. Login is root
  8. Configure the interface using the command setup-interfaces
  9. Pick to setup default eth0
  10. Custom config: no
@br3ndonland
br3ndonland / github-actions-notes.md
Last active June 25, 2025 11:02
Getting the Gist of GitHub Actions
@wlib
wlib / LICENSE
Last active April 30, 2024 17:07
Run a shell script with bash, line-by-line, prompted on each command. Useful for running unknown scripts or debugging. Not a secure substitute for understanding a script beforehand.
MIT License
Copyright (c) 2021 Daniel Ethridge
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@travisbrown
travisbrown / blue-verified-only.md
Last active January 24, 2023 18:29
Please see this updated list for a more useful ranking: https://gist.github.com/travisbrown/f1e216635a898850f5ebf49bc31d816a
@devinschumacher
devinschumacher / cloud-gpus.md
Last active June 23, 2025 03:08
Cloud GPU Hosting // The Best Servers, Services & Providers [RANKED!]
title tags
The Best Cloud GPU Providers for Artificial Intelligence & Machine Learning
cloud gpu providers
cloud gpu
artificial intelligence

Cloud GPUs: Servers, Providers & Everything You Would Ever Need

@ice09
ice09 / EgoEchoAgentSummarizer.java
Last active May 7, 2025 21:03
JBang script for extracting personality traits and character from different Markdown sources and data model population with LLMs.
//usr/bin/env jbang
//JAVA 21
//DEPS com.openai:openai-java:1.6.0
import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.responses.ResponseCreateParams;
import com.openai.models.responses.ResponseOutputText;
import java.io.IOException;