Skip to content

Instantly share code, notes, and snippets.

@rsms
rsms / macos-distribution.md
Last active May 13, 2024 22:58
macOS distribution — code signing, notarization, quarantine, distribution vehicles

How to download from CSDN.net without an account | New method 2023-2024

Brown Simple Minimalist Grand Opening Cake and Bakery Banner.png

CSDN.net is a popular website for programmers and technology enthusiasts to share and access information related to computer science and software development. However, downloading files from CSDN.net can sometimes be a tedious and time-consuming process.

That's where BaiduDownloader.com comes in. We offer a convenient and easy-to-use service for downloading files from CSDN.net quickly and effortlessly. Our platform is designed to make the download process as seamless as possible, with fast download speeds and a user-friendly interface.

Whether you need to download a single file or multiple files from CSDN.net, our service can help you get the job done quickly and efficiently.

@leandrofilipe
leandrofilipe / Raspberry Pi RAID NAS Server Setup.md
Last active May 13, 2024 22:56
Raspberry Pi RAID NAS Server Setup

※ Raspberry Pi RAID NAS Server Setup ※

Hardware:

  • Raspberry Pi 4 (4GB RAM)
  • Micro SD card 32GB
  • 2x Integral USB 3.1 flash drives 128GB

OS:

  • Raspbian Buster
@SterArcher
SterArcher / občine v Sloveniji.csv
Last active May 13, 2024 22:54
Seznam slovenskih občin s poštnimi številkami
poštna številka občina
1000 Ljubljana
1001 Ljubljana – P.P.
1210 Ljubljana – Šentvid
1211 Ljubljana – Šmartno
1215 Medvode
1216 Smlednik
1217 Vodice
1218 Komenda
1219 Laze v Tuhinju
@RonanGil
RonanGil / Conventions_WinForms.txt
Created July 24, 2023 15:48
Naming Conventions - winForms
# Componentes Windows Forms
Common Controls:
----------------
btn Button chk CheckBox ckl CheckedListBox
cmb ComboBox dtp DateTimePicker lbl Label
llb LinkLabel lst ListBox lvw ListView
mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon
nud NumeircUpDown pic PictureBox prg ProgressBar
rdo RadioButton rtx RichTextBox txt TextBox
@tZilTM
tZilTM / sharer-urls.md
Created February 2, 2020 11:50
Sharer (share) URLs (links) for sharing on LinkedIn, Twitter, Pinterest, Reddit and Facebook (2020-02-02)
@umayr
umayr / recover-deleted-branch.sh
Created April 1, 2016 11:41
How to recover a deleted branch
## Pre-requisite: You have to know your last commit message from your deleted branch.
git reflog
# Search for message in the list
# a901eda HEAD@{18}: commit: <last commit message>
# Now you have two options, either checkout revision or HEAD
git checkout a901eda
# Or
git checkout HEAD@{18}
@josh-padnick
josh-padnick / fish-agent.sh
Last active May 13, 2024 22:46
Run ssh-agent via fish shell
#!/bin/bash
#
# Convert ssh-agent output to fish shell
#
eval "$(ssh-agent)" >/dev/null
echo "set SSH_AUTH_SOCK \"$SSH_AUTH_SOCK\"; export SSH_AUTH_SOCK"
echo "set SSH_AGENT_PID \"$SSH_AGENT_PID\"; export SSH_AGENT_PID"
// Run any SwiftUI view as a Mac app.
import Cocoa
import SwiftUI
NSApplication.shared.run {
VStack {
Text("Hello, World")
.padding()
.background(Capsule().fill(Color.blue))