Skip to content

Instantly share code, notes, and snippets.

View stupid-kid-af's full-sized avatar
🎯
Focusing

Ashutosh Tripathi stupid-kid-af

🎯
Focusing
  • Pale Blue Dot
View GitHub Profile
#include <LiquidCrystal_I2C.h>
const int trigPin = 9;
const int echoPin = 10;
long duration;
int distanceCm, distanceInch;
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.begin();
@stupid-kid-af
stupid-kid-af / iframe.html
Last active May 15, 2022 17:16
responsive iframe with not downloading pdf [GDrive]
<!DOCTYPE html>
<html>
<head>
<title>Example on how to embed Google Drive PDF inside website</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="bcc.css">
</head>
<body>
<div class="container">
@stupid-kid-af
stupid-kid-af / dwm_status.sh
Created October 21, 2022 06:19 — forked from deadjakk/dwm_status.sh
Outputs status information to dwm status bar.
#!/bin/bash
# Original source: https://raw.githubusercontent.com/kaihendry/dotfiles/master/bin/dwm_status
# Network speed stuff stolen from http://linuxclues.blogspot.sg/2009/11/shell-script-show-network-speed.html
print_wifi() {
ip=$(ip route get 8.8.8.8 2>/dev/null|grep -Eo 'src [0-9.]+'|grep -Eo '[0-9.]+')
if=wlan0
while IFS=$': \t' read -r label value
do
case $label in SSID) SSID=$value