Skip to content

Instantly share code, notes, and snippets.

View nina-mir's full-sized avatar
:dependabot:
Passed JSNAD!! 😊

Nina Mir nina-mir

:dependabot:
Passed JSNAD!! 😊
  • San Francisco, CA
  • 01:13 (UTC -12:00)
View GitHub Profile
@alexle
alexle / pythonsms.py
Last active December 1, 2023 01:01
How to send a text message with python
# sms.py
# Sends sms message to any cell phone using gmail smtp gateway
# Written by Alex Le
import smtplib
# Use sms gateway provided by mobile carrier:
# at&t: [email protected]
# t-mobile: [email protected]
# verizon: [email protected]
"""
Implements a simple HTTP/1.0 Server
"""
import socket
def handle_request(request):
"""Handles the HTTP request."""
@bambooom
bambooom / puppeteer-gif.js
Last active March 3, 2025 23:33
use puppeteer to generate gif
const fs = require('fs');
const puppeteer = require('puppeteer');
const GIFEncoder = require('gifencoder');
const PNG = require('png-js');
function decode(png) {
return new Promise(r => {png.decode(pixels => r(pixels))});
}