Skip to content

Instantly share code, notes, and snippets.

View paulRbr's full-sized avatar
🐻‍❄️
👋 Hello!

Paul B. paulRbr

🐻‍❄️
👋 Hello!
View GitHub Profile
@paulRbr
paulRbr / card_cvv_drivy.html
Last active February 1, 2016 12:33
Payment card CVV Drivy
<div class="relative">
<!-- « autocomple » n'existe pas comme attribut sur l'element <input> en HTML -->
<!-- Cf : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocomplete -->
<input id="js_booking_card_cvv" maxlength="4" placeholder="•••" autocomple="off" data-help="cvv" size="4" name="booking[card_cvv]" type="text">
<i class="ico_info_grey info_cvv_ico js_cvv_ico" data-help="cvv"></i>
</div>
### Keybase proof
I hereby claim:
* I am paulrbr on github.
* I am paulrbr (https://keybase.io/paulrbr) on keybase.
* I have a public key whose fingerprint is 9E07 F241 5AC4 262B 661C FA84 DE33 1B23 748D 3A27
To claim this, I am signing this object:
@paulRbr
paulRbr / bump-sh-proxy-https.js
Last active March 19, 2025 08:05
Bump.sh proxy mode
const https = require('https'),
httpProxy = require('http-proxy'),
path = require('path'),
fs = require('fs');
// Create a proxy server with custom application logic
const proxy = httpProxy.createProxyServer({});
// To modify the proxy connection before data is sent, you can listen
// for the 'proxyReq' event. When the event is fired, you will receive
@paulRbr
paulRbr / bump-sh-proxy-embed-mode.js
Last active April 24, 2025 18:25
Bump.sh proxy embed mode
const https = require('https'),
httpProxy = require('http-proxy'),
path = require('path'),
fs = require('fs'),
connect = require('connect'),
harmon = require('harmon');
// Create a proxy server with custom application logic
const proxy = httpProxy.createProxyServer({});