Check the certificat openssl x509 -in certificate.crt -text -noout
Compare the certificat & the private key; This :
openssl x509 -modulus -noout -in mycomp.com.crt | openssl md5
Should return the same as :
# Please Note, I am sharing this, hoping this will be used for good public use, such as data analysis, penetration testing etc | |
# These links are already available all over the internet | |
# Also Note, Trying to login into someone else's account without their permission is unethical and illegal | |
# Collection 1 | |
magnet:?xt=urn:btih:B39C603C7E18DB8262067C5926E7D5EA5D20E12E&dn=Collection%201&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%3a80%2fannounce&tr=http%3a%2f%2fopentracker.xyz%3a80%2fannounce | |
# Collection 2-5 & Antipublic | |
magnet:?xt=urn:btih:D136B1ADDE531F38311FBF43FB96FC26DF1A34CD&dn=Collection%20%232-%235%20%26%20Antipublic&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%3a80%2fannounce&tr=http%3a%2f%2fopentracker.xyz%3a80%2fannounce |
//Equivalence 1 : | |
async function * iterableFct() { | |
let i = 0; | |
while (i < 2) yield ++i; | |
} | |
const iterable = iterableFct(); | |
await iterable[Symbol.asyncIterator]().next(); // 1 | |
await iterable[Symbol.asyncIterator]().next(); // 2 | |
for await (const response of iterable) { |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<meta name="theme-color" content="#000000" /> | |
<style> | |
html, body { | |
height: 100%; | |
margin-right: 5%; |
// ==UserScript== | |
// @name AWS SSO : Auto-allow | |
// @namespace https://skillsoftsso.awsapps.com/ | |
// @version 0.1 | |
// @description Auto allow | |
// @author You | |
// @match https://skillsoftsso.awsapps.com/start/user-consent/authorize.html?clientId=* | |
// @grant none | |
// ==/UserScript== |
# Kind installation : https://istio.io/latest/docs/setup/platform-setup/kind/ | |
kind create cluster --name istio-testing | |
kubectl config use-context kind-istio-testing | |
# Istio installation : https://istio.io/latest/docs/setup/getting-started/ | |
istioctl install --set profile=demo -y | |
... |
Main step to the setup of my mac. |
Rails last version & docker-compose setup easy |
# docker build -f sqlite3.Dockerfile -t sqlite3:local . | |
# docker run --rm -it -v sqlite-db-volume:/db sqlite3:local my_app.db | |
FROM alpine:latest | |
RUN apk add --update sqlite | |
RUN mkdir /db | |
WORKDIR /db | |
ENTRYPOINT ["sqlite3"] | |
CMD ["my_app.db"] |
require "minitest/autorun" | |
require "pry-byebug" | |
class Position | |
DIRECTIONS= %i(north east south west) | |
class Radius | |
include Enumerable | |
def initialize(value); @value =value; end |