Skip to content

Instantly share code, notes, and snippets.

View ddcddc's full-sized avatar

zzoland ddcddc

View GitHub Profile
const M3U_CONTENT = `#EXTM3U
#EXTINF:-1 group-title="FIFA World Cup 2026",FOX 01
http://89.187.179.148:826/anto.j/c9yJDcXyPe/109548
#EXTINF:-1 group-title="FIFA World Cup 2026",FOX 02
http://89.187.179.148:826/anto.j/c9yJDcXyPe/109511
#EXTINF:-1 group-title="FIFA World Cup 2026",FOX 03
http://stream.cammonitorplus.net/1752/index.m3u8
#EXTINF:-1 group-title="FIFA World Cup 2026",FS1 01
http://89.187.179.148:826/anto.j/c9yJDcXyPe/120160
#EXTINF:-1 group-title="FIFA World Cup 2026",FS1 02
@JBlond
JBlond / bash-colors.md
Last active September 4, 2026 15:29 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
@tinotriste
tinotriste / breadcrumbs-functions.php
Last active July 20, 2025 00:04
Wordpress: Breadcrumbs function
<?php
/*=============================================
= BREADCRUMBS =
=============================================*/
// to include in functions.php
function the_breadcrumb() {
$sep = ' > ';
@coolaj86
coolaj86 / injs.js
Last active January 8, 2017 17:23
REPL tools for NodeJS
#!/usr/bin/env node
/*jshint strict:true node:true es5:true
onevar:true laxcomma:true laxbreak:true eqeqeq:true immed:true latedef:true*/
(function () {
"use strict";
var repl = require("repl")
, context = repl.start("injs> ").context
, path = require('path')
, fs = require('fs')