Skip to content

Instantly share code, notes, and snippets.

View billrafferty's full-sized avatar
🦾
Working out with Ai

Bill Rafferty billrafferty

🦾
Working out with Ai
View GitHub Profile
@billrafferty
billrafferty / crystal-css-animation.markdown
Last active July 10, 2024 00:44
Crystal css animation
@billrafferty
billrafferty / Markdown on Markdown.md
Last active October 10, 2022 06:03
Scratch Notes to Gists

Markdown on Markdown

Is it :godmode: or :neckbeard: ?

This is the introduction copy and I want to maintaint documention better and have it live in my git repo's and think README.md > readme.txt.

So lets be bold and look a little closer

Quick links;

@billrafferty
billrafferty / nth.css
Last active September 20, 2022 01:56
nth child css
.swiper-slide:nth-child(4n) {
}
div.slider-caption:nth-child(3) {
display: none;
}
.homepage-slider
@media screen (min-width: 767px) {
@billrafferty
billrafferty / myip.fish
Created August 12, 2022 08:15
Fish Shell https://fishshell.com/ function script that echo's out local mac WiFi address and public IP via google DNS query.Could also be done via curl http://ipinfo.io but looks clean and has emoji so happy to have on terminal startup
function myip
echo local WiFi IP ᯤ;
command ifconfig en0 | grep -o 'inet .\{0,16\}\s'
echo public IP 🌐;
command dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | grep '.'
end