I hereby claim:
- I am jobyone on github.
- I am joby (https://keybase.io/joby) on keybase.
- I have a public key whose fingerprint is F440 A7F4 D814 656B 071A E331 1C96 79A1 D2DC 9457
To claim this, I am signing this object:
<?php | |
// script source https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/converter.php | |
// https://github.com/r-a-y/mobile-hosts/blob/master/ | |
// License: GPL-3.0 https://github.com/r-a-y/mobile-hosts/blob/master/LICENSE | |
// Add our lists. | |
$lists = array( | |
'adAway' => 'https://raw.githubusercontent.com/AdAway/adaway.github.io/master/hosts.txt', | |
'adguardApps' => 'https://github.com/AdguardTeam/AdguardFilters/raw/master/MobileFilter/sections/specific_app.txt', | |
'adguardDNS' => 'https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt', | |
'adguardMobileAds' => 'https://raw.githubusercontent.com/AdguardTeam/AdguardFilters/master/MobileFilter/sections/adservers.txt', |
# .devcontainer/Dockerfile | |
FROM ubuntu:22.04 | |
# prepare to install php 8.2 | |
RUN apt update && apt install -y software-properties-common | |
RUN add-apt-repository ppa:ondrej/php | |
RUN apt update | |
# install php 8.2 and other fundamental packages |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
eval `ssh-agent -s` | |
ssh-add ~/.ssh/*_rsa | |
SSH_ENV=$HOME/.ssh/environment | |
# start the ssh-agent | |
function start_agent { | |
echo "Initializing new SSH agent..." | |
# spawn ssh-agent |
Pure-CSS centering of a box, both horizontally and vertically. No javascript required, works with any markup.
A Pen by Joby Elliott on CodePen.
<!-- | |
Requires jQuery and the hoverIntent plugin, | |
although it does fundamentally work with no JS at all | |
--> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script src="hoverintent.js"></script> | |
<!-- | |
One script and one CSS file, both are small and might be worth inlining if you're using it for your main navigation | |
--> |
using System; | |
using System.Collections.Generic; | |
using System.Security.Cryptography; | |
string encryptionKey = "01010101010101010101010101010101"; | |
string hmacKey = "01010101010101010101010101010101"; | |
/* | |
USAGE | |
*/ |
/* | |
CSS to enable a fluid layout for Blogger's "Simple" theme | |
by Joby Elliott -- www.byjoby.com | |
*/ | |
/* remove odd margins on images, make their size fluid and limited to their container */ | |
.widget.Blog img {box-sizing:border-box;height:auto !important;width:auto: !important;max-width:100%;} | |
.widget.Blog a[imageanchor] {margin:0 !important;} | |
/* remove padding from content area, set smaller min-widths */ | |
.content-inner {padding:0;} | |
body, .content-outer, .content-fauxcolumn-outer, .region-inner {min-width:300px !important;} |