Skip to content

Instantly share code, notes, and snippets.

@Hardikanand1st
Hardikanand1st / Paragon Hard Disk manager Serial Key.txt
Last active April 25, 2024 15:18
Hard Disk Manager™ 25 Anniversary LE Serial Key
For people saying its fake, here are the actual proof: https://pasteboard.co/FYLEVjhn0hQr.png
You need to install from the setup file provided then only the key will work.
-----------------------------------------------------------
Product: Hard Disk Manager™ 25 Anniversary LE
License: PSG-797-FRU
Serial Number: IUCOQ9-FAMGO1-VJJ5FI-8U7PRI-G1AH56
-----------------------------------------------------------
Installer file for 64-bit Windows:
@clarkeben
clarkeben / UIKit-Animations.swift
Last active April 25, 2024 15:17
A list of simple yet effective animation extensions for UIKit
import UIKit
//MARK: - UIButton Animations
extension UIButton {
// Contract and retract animation
func contractRetractBtn(duration: Double) {
let contraction = CASpringAnimation(keyPath: "transform.scale")
contraction.duration = duration
contraction.fromValue = 0.96
@izzyleung
izzyleung / README.md
Last active April 25, 2024 15:17
Run TeamCity agents in your Kubernetes cluster

How to run TeamCity agents in your Kubernetes cluster

For typical CI/CD tasks that don't require Docker daemon access, use the agent.yml pod sepc.

For CI/CD jobs that need Docker daemon to build Docker images, use the privileged-agent.yml pod spec.

Notes

Make sure you are running TeamCity server version >= 2020.1 or have the Kubernetes support plugin installed.

@DakotaLMartinez
DakotaLMartinez / instructions.md
Last active April 25, 2024 15:17
Adding an SSH key to GitHub (Mac OS X or Linux)

You need to do this if you try this command:

ssh -T git@github.com

and you get something that says

git@github.com: Permission denied (public key).
@egmontkob
egmontkob / Hyperlinks_in_Terminal_Emulators.md
Last active April 25, 2024 15:17
Hyperlinks in Terminal Emulators
@giordanocardillo
giordanocardillo / README.md
Last active April 25, 2024 15:16
Setting nano as default editor

How to

Automatically

cat <<EOF >>~/.bash_profile
export VISUAL="nano"
export EDITOR="nano"
EOF
@csalmeida
csalmeida / README.md
Last active April 25, 2024 15:16
Using MutationObserver to listen to attribute changes

Mutation Observer Example

This is a working example of using the MutationObserver API to listen to changes in an DOM element's attributes.

Clicking the button triggers a change and in turn MutationObserver will notice the change. Logs available in the console.

Resources

@mbbx6spp
mbbx6spp / ALTERNATIVES.adoc
Last active April 25, 2024 15:14
Super quick list of alternatives to Jira and/or Confluence, Stash, Crucible, etc.
@ivonielson
ivonielson / validacao+mascara.js
Created April 25, 2024 15:13 — forked from ricardodantas/validacao+mascara.js
Máscara e validação de RG, CNPJ, CPF, etc...
// JavaScript Document
// adiciona mascara para rg
// Cada estado têm regras e quantidades diferentes de números no registro. Por isso,
// não há uma maneira confiável de fazer a validação do mesmo.
function MascaraRg(v0,errChar='?'){
const v = v0.toUpperCase().replace(/[^\dX]/g,'');
return (v.length==8 || v.length==9)?
v.replace(/^(\d{1,2})(\d{3})(\d{3})([\dX])$/,'$1.$2.$3-$4'):
(errChar+v0)