Skip to content

Instantly share code, notes, and snippets.

View 9kopb's full-sized avatar
💎
xyu.foundation

9kopb 9kopb

💎
xyu.foundation
View GitHub Profile
@9kopb
9kopb / fiddle.css
Created March 16, 2018 17:07 — forked from anonymous/fiddle.css
Create or test Firebase tokens (source: http://jsfiddle.net/9kopb/n8cads5v/)
label, button {
display: block;
margin-top: 8px;
}
body > fieldset {
float: left;
min-width: 250px;
margin: 10px;
}
@9kopb
9kopb / fiddle.css
Created March 16, 2018 17:07 — forked from anonymous/fiddle.css
Create or test Firebase tokens (source: http://jsfiddle.net/9kopb/n8cads5v/)
label, button {
display: block;
margin-top: 8px;
}
body > fieldset {
float: left;
min-width: 250px;
margin: 10px;
}
@9kopb
9kopb / form_fill.js
Created September 13, 2018 23:35 — forked from elmarcoh/form_fill.js
Form fill Bookmarklet with Chilean RUT
//Caution when minifiyng this file: the modulus operator in getRut must have spaces around it, otherwise
//Chrome throws an error, and the damn thing won't work
var auto =
{
names: 'Steve Buscemi Catherine Keener Dermot Mulroney Danielle Zerneck James LeGros Rica Martens Peter Dinklage Kevin Corrigan Hilary Gilford Robert Wightman Tom Jarmusch Michael Griffiths Matthew Grace Ryan Bowker Francesca DiMauro',blurb: 'phpBB is a free, open source Internet community application, with outstanding discussion forums and membership management. Written in the PHP scripting language, and making use of the popular MySQL database, phpBB is a standard among web hosting companies throughout the world, and is one of the most widely-used bulletin board packages in the world. phpBB short-circuits the need for you to be a web development master in order to create and manage massive online communities',password: 'secret',fillerup: function()
{
var all_inputs = document.getElementsByTagName('input');var all_selects = documen

Keybase proof

I hereby claim:

  • I am 9kopb on github.
  • I am 9kopb (https://keybase.io/9kopb) on keybase.
  • I have a public key whose fingerprint is 2D61 D06C CBF6 BCE2 125E F5F2 E40C 80BB 581F 1F67

To claim this, I am signing this object:

@9kopb
9kopb / 7-dog-vk-and-telegram-digital-resistance-svg-scss-30daysvgimage.markdown
Created September 22, 2019 12:51
#7 Dog VK and Telegram Digital Resistance (SVG, SCSS) #30daysvgimage
@9kopb
9kopb / fresh.sh
Created March 17, 2022 21:39 — forked from ec0type/fresh.sh
#!/bin/bash
macchanger -s eth0
macchanger -r eht0
echo "## Add" >> /etc/tor/torrc
echo "## " >> /etc/tor/torrc
echo "##" >> /etc/tor/torrc
echo "ExitNodes {nl},{pa},{ru}" >> /etc/tor/torrc
echo "StrictExitNodes 1" >> /etc/tor/torrc
@9kopb
9kopb / gist_to_github_repo.md
Created August 3, 2022 09:36 — forked from ishu3101/gist_to_github_repo.md
Transfer a gist to a GitHub repository

Transfer a gist to a GitHub repository

clone the gist

git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9

rename the directory

mv 6fb35afd237e42ef25f9 ConvertTo-Markdown

change the working directory to the newly renamed directory

cd ConvertTo-Markdown

@9kopb
9kopb / index.html
Created August 7, 2022 12:41
Login Form with floating placeholder and light button
<div class="login-box">
<h2>Login</h2>
<form>
<div class="user-box">
<input type="text" name="" required="">
<label>Username</label>
</div>
<div class="user-box">
<input type="password" name="" required="">
<label>Password</label>
addEventListener("fetch", (event) => {
event.respondWith(
handleRequest(event.request).catch(
(err) => new Response(err.stack, { status: 500 })
)
);
});
async function handleRequest(request) {
const { pathname, searchParams, host } = new URL(request.url);
@9kopb
9kopb / index.html
Created September 28, 2022 02:36
Pure CSS Modal - #15
<div class="section full-height">
<input class="modal-btn" type="checkbox" id="modal-btn" name="modal-btn"/>
<label for="modal-btn">Open Modal <i class="uil uil-expand-arrows"></i></label>
<div class="modal">
<div class="modal-wrap">
<img src="https://assets.codepen.io/1462889/sl3.jpg" alt="">
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.</p>
</div>
</div>