IPTVProvider's Xtreme API Credentials --> iptvproxy (converts xtreme api to .m3u file) --> xteve --> Plex Live TV
ScheduesDirect --> xteve (version from taylorbourne) runs a cronjob every hour to keep programming up to date
| // 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks. | |
| // You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/) | |
| (() => { | |
| const SHOW_SIDES = false; // color sides of DOM nodes? | |
| const COLOR_SURFACE = true; // color tops of DOM nodes? | |
| const COLOR_RANDOM = false; // randomise color? | |
| const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com) | |
| const MAX_ROTATION = 180; // set to 360 to rotate all the way round | |
| const THICKNESS = 20; // thickness of layers | |
| const DISTANCE = 10000; // ¯\\_(ツ)_/¯ |
| #!/bin/sh | |
| cmd=$* | |
| authorize() { | |
| for host | |
| do xhost | egrep -q "^INET6?:$host$" || xhost + $host | |
| done | |
| } |
| import poplib | |
| import smtplib | |
| from email import message_from_bytes | |
| from email.message import EmailMessage | |
| import openai | |
| import re | |
| import html | |
| openai.api_key = '' |
| // | |
| // Bluesky.swift | |
| // Created by Kuba Suder on 24/04/2023. | |
| // Licensed under WTFPL License | |
| // | |
| import Foundation | |
| struct LoginData: Encodable { | |
| let identifier: String |
| $ TEST_1=one | |
| $ TEST_2=two | |
| $ PATTERN2_1=one | |
| $ PATTERN2_2=two | |
| $ docker run -d --name test $(for var in $(set | grep -E '^TEST_|^PATTERN2_'); do printf -- '-e "%s" ' $var; done) nginx | |
| 541a23d4e432b375f71b081593d533de0aeb0b918f74d911bee7c36c95bcc4e3 | |
| $ docker ps | |
| CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
| import SwiftUI | |
| enum OSDocumentError: Error { | |
| case unknownFileFormat | |
| } | |
| #if canImport(UIKit) | |
| import UIKit |
| // | |
| // ContentView.swift | |
| // MadeForYouCard | |
| // | |
| // Created by AppleDesignDev on 1/24/22. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { |
IPTVProvider's Xtreme API Credentials --> iptvproxy (converts xtreme api to .m3u file) --> xteve --> Plex Live TV
ScheduesDirect --> xteve (version from taylorbourne) runs a cronjob every hour to keep programming up to date
Thanks to the work of @agraf, @KhaosT, @imbushuo, and others, we have Virtualization.framework working on M1 Macs. These [changes][1] have been merged with QEMU v5.2.0 RC3 (will rebase once the final release is out) and integrated with UTM, a brand new QEMU frontend designed in SwiftUI for iOS 14 and macOS 11.
| # Stick this in your home directory and point your Global Git config at it by running: | |
| # | |
| # $ git config --global core.attributesfile ~/.gitattributes | |
| # | |
| # See https://tekin.co.uk/2020/10/better-git-diff-output-for-ruby-python-elixir-and-more for more details | |
| *.c diff=cpp | |
| *.h diff=cpp | |
| *.c++ diff=cpp | |
| *.h++ diff=cpp |