This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Extension from '@mui/icons-material/Extension'; | |
| import Folder from '@mui/icons-material/Folder'; | |
| import List from '@mui/material/List'; | |
| import ListItemIcon from '@mui/material/ListItemIcon'; | |
| import ListItemText from '@mui/material/ListItemText'; | |
| import ListSubheader from '@mui/material/ListSubheader'; | |
| import React, { useEffect, useState } from 'react'; | |
| import ListItemLink from 'components/ListItemLink'; | |
| import globalize from 'lib/globalize'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>MKV Chapter Extractor (XML)</title> | |
| <style> | |
| body { | |
| font-family: sans-serif; | |
| max-width: 700px; | |
| margin: 40px auto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "guid": "c83d86bb-a1e0-4c35-a113-e2101cf4ee6b", | |
| "name": "Intro Skipper", | |
| "overview": "Automatically detect and skip intros in television episodes", | |
| "description": "Analyzes the audio of television episodes and detects introduction sequences.", | |
| "owner": "AbandonedCart, rlauuzo, jumoog (forked from ConfusedPolarBear)", | |
| "category": "MoviesAndShows", | |
| "imageUrl": "https://cdn.jsdelivr.net/gh/intro-skipper/manifest@a434e00edba70493794e25917cc8d3326d5a85c6/images/intro-skipper/logo.png", | |
| "versions": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Chloe Cam Modhelper++ | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.5 | |
| // @description Listen for new chat messages on the chat and make them clickable | |
| // @author You | |
| // @match https://www.chloe.cam/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text.Json.Serialization; | |
| using MediaBrowser.Controller.Entities; // For BaseItem | |
| using MediaBrowser.Controller.Providers; // For MetadataProvider | |
| namespace IntroSkipper.Api.Models | |
| { | |
| public class SeasonExportData |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest AS ublock | |
| # Install required tools: curl, jq, and unzip | |
| RUN apk --no-cache add curl jq unzip | |
| # Set environment variables | |
| ENV REPO_API "https://api.github.com/repos/uBlockOrigin/uBOL-home/releases/latest" | |
| ENV FILE_PATTERN "chromium.zip" | |
| # Create a working directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (.+)(\r\n) | |
| "\1", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func (app *application) checkExpirationDate() { | |
| // Read the certificate file | |
| certPEM, err := os.ReadFile(app.ssl.crt) | |
| if err != nil { | |
| app.logger.Fatal("failed to read certificate file", zap.Error(err)) | |
| } | |
| // Decode the PEM encoded certificate | |
| block, _ := pem.Decode(certPEM) | |
| if block == nil || block.Type != "CERTIFICATE" { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // go build rename_files.go | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "path/filepath" | |
| "strings" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "context" | |
| // add the backend that you need | |
| _ "github.com/rclone/rclone/backend/local" | |
| "github.com/rclone/rclone/cmd" | |
| "github.com/rclone/rclone/fs" | |
| "github.com/rclone/rclone/fs/sync" |
NewerOlder