Skip to content

Instantly share code, notes, and snippets.

@prologic
prologic / LearnGoIn5mins.md
Last active April 30, 2024 15:10
Learn Go in ~5mins
@ih2502mk
ih2502mk / list.md
Last active April 30, 2024 15:10
Quantopian Lectures Saved
@AJ-Derteano
AJ-Derteano / ssh_config.md
Last active April 30, 2024 15:09
Configurar llave SSH en linux y windows

Configurar llaves SSH en linux y windows

Pasos a seguir:

  1. Verificar la existencia de la carpeta .ssh
# Listar contenido de la carpeta
$ ls .ssh
known_hosts

# Ingresar a la carpeta
@moio
moio / audit-to-csv.rb
Created May 30, 2023 10:03
Script to convert Kubernetes API Audit jsonline files to CSV for Excel elaboration
#!/usr/bin/env ruby
# encoding: UTF-8
# EXAMPLE
#
# {
# "kind": "Event",
# "apiVersion": "audit.k8s.io/v1",
# "level": "Metadata",
# "auditID": "f6618a15-8e4f-4f82-95b3-7592ed544eb9",
@zingaburga
zingaburga / sve2.md
Last active April 30, 2024 15:08
ARM’s Scalable Vector Extensions: A Critical Look at SVE2 For Integer Workloads

ARM’s Scalable Vector Extensions: A Critical Look at SVE2 For Integer Workloads

Scalable Vector Extensions (SVE) is ARM’s latest SIMD extension to their instruction set, which was announced back in 2016. A follow-up SVE2 extension was announced in 2019, designed to incorporate all functionality from ARM’s current primary SIMD extension, NEON (aka ASIMD).

Despite being announced 5 years ago, there is currently no generally available CPU which supports any form of SVE (which excludes the [Fugaku supercomputer](https://www.fujitsu.com/global/about/innovation/

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.

@anubhavshrimal
anubhavshrimal / CountryCodes.json
Last active April 30, 2024 15:05 — forked from Goles/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
#!/bin/bash
#####
# OSX Machine auth for 802.1x profile
# get AD machine user/pass and put into 802.1x profile template
# install the profile
#
# sed has it's own uses for '&' and '\' in replacements
# and the randomly generated password sometimes has them
# So, trap and escape them before feeding into sed
#
@oanhnn
oanhnn / using-multiple-github-accounts-with-ssh-keys.md
Last active April 30, 2024 15:05
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.
@tos-kamiya
tos-kamiya / pandocでgfmなmarkdownをa4サイズのpdfにする(2021).md
Last active April 30, 2024 15:04
Pandocを使ってgfmなMarkdownをA4サイズのPDFにする(2021)