What I used in this lab ;)
- k3s : https://k3s.io/
- k3s documentation : https://rancher.com/docs/k3s/latest/en/
| 4r5e | |
| 5h1t | |
| 5hit | |
| a55 | |
| anal | |
| anus | |
| ar5e | |
| arrse | |
| arse | |
| ass |
| <# | |
| This license governs use of the accompanying software. If you use the software, you | |
| accept this license. If you do not accept the license, do not use the software. | |
| 1. Definitions | |
| The terms "reproduce," "reproduction," "derivative works," and "distribution" have the | |
| same meaning here as under U.S. copyright law. | |
| A "contribution" is the original software, or any additions or changes to the software. | |
| A "contributor" is any person that distributes its contribution under this license. | |
| "Licensed patents" are a contributor's patent claims that read directly on its contribution. |
| library(foreach) | |
| library(iterators) | |
| library(doParallel) | |
| library(tcltk) | |
| # Choose number of iterations | |
| n <- 1000 | |
| cl <- makeCluster(8) |
| library(foreach) | |
| library(iterators) | |
| library(doParallel) | |
| library(tcltk) | |
| # Choose number of iterations | |
| n <- 250 | |
| # In sequence, without progress bar --------------------------------------- |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication2 | |
| { | |
| class Program |
| #------------------------------------------------------------------------------------- | |
| # Create Self signed root certificate | |
| # -dnsname -DnsName domain.example.com,anothersubdomain.example.com | |
| # -Subject "CN=Patti Fuller,OU=UserAccounts,DC=corp,DC=contoso,DC=com" | |
| $cert = New-SelfSignedCertificate -Type Custom -KeySpec Signature ` | |
| -Subject "CN=P2SRootCert" ` | |
| -KeyExportPolicy Exportable ` | |
| -HashAlgorithm sha256 -KeyLength 4096 ` | |
| -CertStoreLocation "Cert:\CurrentUser\My" ` | |
| -KeyUsageProperty Sign ` |
| // LICENSE | |
| // | |
| // This software is dual-licensed to the public domain and under the following | |
| // license: you are granted a perpetual, irrevocable license to copy, modify, | |
| // publish, and distribute this file as you see fit. | |
| using System; | |
| using System.Collections.Generic; | |
| public static class FuzzyMatcher |
| for node in node1 node2 node3;do | |
| multipass launch -n $node | |
| done | |
| # Init cluster on node1 | |
| multipass exec node1 -- bash -c "curl -sfL https://get.k3s.io | sh -" | |
| # Get node1's IP | |
| IP=$(multipass info node1 | grep IPv4 | awk '{print $2}') |
What I used in this lab ;)
| #!/usr/bin/python3 | |
| """ | |
| Export your Windows Bluetooth LE keys into Linux! (arch edition) | |
| Thanks to: http://console.systems/2014/09/how-to-pair-low-energy-le-bluetooth.html | |
| discussed here: https://unix.stackexchange.com/questions/402488/dual-boot-bluetooth-device-pairing | |
| Usage: | |
| $ ./export-ble-infos.py <args> | |
| $ sudo bash -c 'cp -r ./bluetooth /var/lib' |