Skip to content

Instantly share code, notes, and snippets.

@X-Raym
X-Raym / DaVinci Resolve Scripting Doc.txt
Last active May 5, 2024 16:28
DaVinci Resolve Scripting API Doc v18.6.6
Updated as of 18 December 2023
----------------------------
In this package, you will find a brief introduction to the Scripting API for DaVinci Resolve Studio. Apart from this README.txt file, this package contains folders containing the basic import
modules for scripting access (DaVinciResolve.py) and some representative examples.
From v16.2.0 onwards, the nodeIndex parameters accepted by SetLUT() and SetCDL() are 1-based instead of 0-based, i.e. 1 <= nodeIndex <= total number of nodes.
Overview
--------
#EXTM3U
#EXTINF:-1 tvg-name="PPV| MotoGP: Heli Cam" tvg-logo="https://lo1.in/it/mtgp.png" group-title="SVIP MotoGP PPV",PPV| MotoGP: Heli Cam
http://795833070518609059.ofe0229.xyz:80/play/QG64216853/3354284958/609059.ts
#EXTINF:-1 tvg-id="0" tvg-name="ES: DAZN FORMULA 1 SD" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/70/DAZN_F1_logo.png" group-title="ES DAZN F1",ES: DAZN FORMULA 1 SD
http://795833070518165257.ofe0229.xyz:80/play/QG64216853/3354284958/165257.ts
#EXTINF:-1 tvg-id="0" tvg-name="ES: DAZN FORMULA 1 FHD" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/70/DAZN_F1_logo.png" group-title="ES DAZN F1",ES: DAZN FORMULA 1 FHD
http://795833070518165418.ofe0229.xyz:80/play/QG64216853/3354284958/165418.ts
#EXTINF:-1 tvg-id="0" tvg-name="ES: DAZN FORMULA 1 HD" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/7/70/DAZN_F1_logo.png" group-title="ES DAZN F1",ES: DAZN FORMULA 1 HD
http://795833070518165419.ofe0229.xyz:80/play/QG64216853/3354284958/165419.ts
#EXTINF:-1 tvg-id="
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active May 5, 2024 16:26
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

Switch TLS Dumping Guide (Charles)

This guide is for dumping Switch TLS traffic using the Charles web proxy. Please note that this is paid software.

Most Switch communications are over TLS - this includes NEX and Eagle communications (for Nintendo Switch Online)* as well as other servers such as BAAS (friends/status) and NPNS (notifications)

*NPLN, the new Switch online servers that Monster Hunter Rise demo used, cannot be dumped with Charles currently as it doesn't support gRPC - use grpc-dump to dump these communications - the gPRC section will explain this better.

While this doesn't carry much risk in theory, this is risky and could get your Switch banned as you must send your own Switch-unique client certificate.

Dumping Console-Unique Certificate

@vaaaaanquish
vaaaaanquish / PythonのPackage Managerを深く知るためのリンク集.md
Last active May 5, 2024 16:25
PythonのPackage Managerを深く知るためのリンク集

PythonのPackage Managerを深く知るためのリンク集

以下の発表(2023/10/12)につき作成した、Pythonのパッケージ管理について学ぶ上で有益なリンクを集めたもの。

Pythonでの開発に関するベストプラクティス等を知ることは目的にしていない。
Package Managerを自作したり、開発にコミットするために必要なベースの知識を補うリンク集。

@CodeWithHarry
CodeWithHarry / Source code for Amazon Reviews Extraction
Created July 10, 2022 06:50
The code we wrote for the Amazon review extraction videos on CodeWithHarry and ProgrammingWithHarry YouTube channels
import requests
import pandas as pd
from bs4 import BeautifulSoup
import random
reviewlist = []
def getRandomProxy():
# Using Proxy
# coding: utf-8
require 'active_support/core_ext/array'
require 'active_support/core_ext/string/inflections'
module Pod
# Validates a Specification.
#
# Extends the Linter from the Core to add additional which require the
# LocalPod and the Installer.
#
@verdverm
verdverm / backup.sh
Created October 14, 2020 18:49
HN Upvotes Backup and JSONify
#!/usr/bin/env bash
set -euo pipefail
COOKIE="user=verdverm&..."
USERNAME="verdverm"
BASEURL="https://news.ycombinator.com/upvoted"
PAGE=0
mkdir -p html

Transparent Restaurant Backend

In this task, you're going to implement a REST API for a interacting with a menu of a restaurant. The menu is given to you as a JSON file which you will parse and perform operations on. The required features will be listed below.

Description

In this restaurant, honesty is extremely promoted. So extreme, that the restaurant declares that differing quality of ingredients are used in their meals. Like that's not enough, it also allows the customers to choose the ingredients of each meal in different qualities. Each ingredient has the following quality levels:

  • low: the cheapest
  • medium: moderate
@caryoscelus
caryoscelus / shell.nix
Created September 21, 2023 12:51
run games in nixos shell.nix
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSEnv {
name = "launch-env";
targetPkgs = pkgs: (with pkgs; [
udev
alsa-lib
fontconfig
libxkbcommon
libGL