Skip to content

Instantly share code, notes, and snippets.

@0xGoerliMainnet
0xGoerliMainnet / IPFS.md
Created October 21, 2024 00:32 — forked from NatoBoram/IPFS.md
Qu'est-ce que IPFS?

IPFS

IPFS signifie Inter-Planetary FileSystem, ou Système de Fichiers Inter-Planétaire. Il est extrêmement similaire au protocole BitTorrent, mais il est beaucoup plus facile d'utilisation. Cependant, il nécessite quelques notions supplémentaires avant de bien pouvoir l'apprécier.

Prérequis

Lire les sections suivantes vous aideront à comprendre les concepts clés sous-jacents à IPFS. Vous n'avez pas besoin d'une compréhension approfondie des concepts, simplement savoir ce qu'un terme veut dire est suffisant.

Pair à pair

@0xGoerliMainnet
0xGoerliMainnet / stripe-credit-card-numbers.md
Created October 18, 2024 16:25 — forked from rymawby/stripe-credit-card-numbers.md
Stripe test credit card numbers for use in development

#Test credit card numbers to use when developing with Stripe

4242424242424242 Visa

4012888888881881 Visa

4000056655665556 Visa (debit)

@0xGoerliMainnet
0xGoerliMainnet / index.php
Created October 16, 2024 21:27 — forked from amfeng/index.php
Stripe OAuth Example -- PHP
<?php
define('CLIENT_ID', 'YOUR_CLIENT_ID');
define('API_KEY', 'YOUR_API_KEY');
define('TOKEN_URI', 'https://connect.stripe.com/oauth/token');
define('AUTHORIZE_URI', 'https://connect.stripe.com/oauth/authorize');
if (isset($_GET['code'])) { // Redirect w/ code
$code = $_GET['code'];
@0xGoerliMainnet
0xGoerliMainnet / readme.md
Created October 10, 2024 23:19 — forked from baraldilorenzo/readme.md
VGG-16 pre-trained model for Keras

##VGG16 model for Keras

This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.

It has been obtained by directly converting the Caffe model provived by the authors.

Details about the network architecture can be found in the following arXiv paper:

Very Deep Convolutional Networks for Large-Scale Image Recognition

K. Simonyan, A. Zisserman

@0xGoerliMainnet
0xGoerliMainnet / electrum-linux-4.1.5-repro.md
Created September 25, 2024 22:23 — forked from eriknylund/electrum-linux-4.1.5-repro.md
Electrum 4.1.5 reproducible build
@0xGoerliMainnet
0xGoerliMainnet / WasabiWallet-v1.1.12-Deterministic-Build.md
Created September 25, 2024 22:22 — forked from eriknylund/WasabiWallet-v1.1.12-Deterministic-Build.md
Wasabi Wallet v1.1.12 deterministic build for bitcoinbinary.org

This video and guide should give everyone a fairly easy to follow and repeat the reproducible build for the Windows MSI package of Wasabi Wallet.

Since there is currently (2021-09-12) a problem with the automated deterministic build and I was unable to build the last three releases (v1.1.12.7 - v.1.1.12-9) this can act as a baseline to start and bisect the build issues and figure out where it stopped working.

Video (6m 58s)

https://www.youtube.com/watch?v=t88xcZw5PX4

Prerequisites

{
"info": {
"_postman_id": "c65cb36c-c2a2-43d4-9113-c43d61b9a2cd",
"name": "Xfers API",
"description": "![Xfers Developer API Documentation](https://www.xfers.io/images/xfersLogo.png)\n\nWelcome to Xfers' API. \n\n# Integration Guides\n[Overview on integrating Xfers Wallet](javascript:alert()) \n[Xfers Connect Flow](https://www.lucidchart.com/publicSegments/view/017a4cda-6a5d-4013-ae4f-6daf81175157/image.png) \n[Top up Flow](https://www.lucidchart.com/publicSegments/view/c29b0c13-0573-44b4-91f6-fe489cfa964e/image.png) \n[Transactional Flow](https://www.lucidchart.com/publicSegments/view/23b4e3b6-dce1-4b98-a2aa-30fc8648db75/image.png) \n\n# Environments\n\nCountry \\ Environment | Sandbox | Production\n----------- | ------- | -----------\nIndonesia | https://sandbox-id.xfers.com/ | https://id.xfers.com/\nSingapore | https://sandbox.xfers.io/ | https://www.xfers.io/\n\nNotes:\n- Your platform will have separate API keys for each environment.\n- Data created or modified in each environment will not a
@0xGoerliMainnet
0xGoerliMainnet / coinswap-design.md
Created September 23, 2024 12:31 — forked from chris-belcher/coinswap-design.md
Design for a CoinSwap Implementation for Massively Improving Bitcoin Privacy and Fungibility

Design for a CoinSwap Implementation for Massively Improving Bitcoin Privacy and Fungibility

25/5/2020

Abstract

Imagine a future where a user Alice has bitcoins and wants to send them with maximal privacy, so she creates a special kind of transaction. For anyone looking at the blockchain her transaction appears completely normal with her coins seemingly going from address A to address B. But in reality her coins end up in address Z which is entirely unconnected to either A or B.

Now imagine another user, Carol, who isn't too bothered by privacy and sends her bitcoin using a regular wallet which exists today. But because Carol's transaction looks exactly the same as Alice's, anybody analyzing the blockchain must now deal with the possibility that Carol's transaction actually sent her coins to a totally unconnected address. So Carol's privacy is improved even though she didn't change her behaviour, and perhaps had never even heard of this software.

@0xGoerliMainnet
0xGoerliMainnet / discord-token-logger.js
Created August 19, 2024 19:48 — forked from m-Phoenix852/discord-token-logger.js
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
@0xGoerliMainnet
0xGoerliMainnet / sdkRedirect.js
Created July 17, 2024 23:22
Transak Sandbox
import React, { useEffect } from "react";
import { Transak } from "@transak/transak-sdk";
const SDKRedirect = () => {
const transakConfig = {
apiKey: "7eb2762e-099b-4f4b-a878-1eec93c78341",
environment: Transak.ENVIRONMENTS.STAGING,
redirectURL: "https://transak.com",
};