这是indexloc提供的服务,不要输入任何密码
Skip to content

Instantly share code, notes, and snippets.

@ctoestreich
ctoestreich / jfrog-cli-commands.md
Last active July 27, 2025 07:09
jf cli commands
access-token-create, atc         Creates an Artifactory access token. By default an user-scoped token will be created, unless the --groups and/or --grant-admin options are specified.
build-add-dependencies, bad      Adds dependencies from the local file-system to the build info.
build-add-git, bag               Collect VCS details from git and add them to a build.
build-append, ba                 Append published build to the build info.
build-clean, bc                  This command is used to clean (remove) build info collected locally.
build-collect-env, bce           Collect environment variables. Environment variables can be excluded using the build-publish command.
build-discard, bdi               Discard builds by setting retention parameters.
build-docker-create, bdc         Add a published docker image to the build-info.
build-promote, bpr               This command is used to promote build in Artifactory.
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active July 27, 2025 07:09
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@coryodaniel
coryodaniel / list.txt
Created May 13, 2020 22:04
GCP List of API Services
NAME TITLE
abusiveexperiencereport.googleapis.com Abusive Experience Report API
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API
accessapproval.googleapis.com Access Approval API
accesscontextmanager.googleapis.com Access Context Manager API
actions.googleapis.com Actions API
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API
adexchangebuyer.googleapis.com Ad Exchange Buyer API II
adexchangeseller.googleapis.com Ad Exchange Seller API
adexperiencereport.googleapis.com Ad Experience Report API
@Scott-Nx
Scott-Nx / KWallet-pam-ly-hyprland.md
Created April 17, 2025 14:38
Step‑by‑step guide to have your KDE Wallet (KWallet) automatically unlock when you log in via **ly** and then start **Hyprland**

Below is a step‑by‑step guide to have your KDE Wallet (KWallet) automatically unlock when you log in via ly and then start Hyprland. In short, you’ll:

  1. Install the PAM module (kwallet-pam) and ensure your wallet password matches your user password
  2. Hook PAM in ly’s login routine so it hands off your login password to KWallet
  3. Autostart the helper (pam_kwallet_init) in your Hyprland config so that the wallet actually opens

With these in place, applications like Dolphin or Brave should stop nagging you for the wallet password after you’ve already logged in.

1. Install the necessary packages

Make sure you have the core KWallet components and the PAM integration module:

@fnky
fnky / ANSI.md
Last active July 27, 2025 06:57
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@oanhnn
oanhnn / using-multiple-github-accounts-with-ssh-keys.md
Last active July 27, 2025 06:52
Using multiple github accounts with ssh keys

Problem

I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).

Solution

Use ssh keys and define host aliases in ssh config file (each alias for an account).

How to?

  1. Generate ssh key pairs for accounts and add them to GitHub accounts.
@leopck
leopck / intrinsic.md
Last active July 27, 2025 06:50 — forked from detomon/intrinsic.md
SSE Intrinsic Cheat Sheet (SSE3)

SSE Intrinsic Cheat Sheet (SSE3)

Load and Store

__m128 _mm_load_ps (float * a)
{

Reference: List of iOS App URL Scheme Names & Paths for Shortcuts

Author:

Saved on: 2021-03-19, 15:52

If you've ever customized your app icons or played around with Shortcuts (previously called Workflow), you probably know how important URL scheme names are. Nearly all iOS apps assign themselves one of these names, and you need to know them if you want to add custom icons to your home screen or create a Shortcuts workflow that opens an app on your iPhone up. Finding the URL scheme name, also known as a URI scheme, for a particular app is not easy. First, you have to download the IPA file for the app — a difficult task since the iTunes 12.7 update removed iOS apps from it. When you finally find the IPA, you have to turn it into a ZIP file, show the contents of the app package, then hunt for the specific PLIST file that contains the URL schemes. It's a lot of work.

This example

@0xdevalias
0xdevalias / decompile-apple-shortcuts.md
Last active July 27, 2025 06:48
A few notes on decompiling Apple Shortcuts workflows into their raw XML 'source code'.