Skip to content

Instantly share code, notes, and snippets.

View ThinkDigitalSoftware's full-sized avatar
💭
An app a day keeps the doctor away

Jonathan White ThinkDigitalSoftware

💭
An app a day keeps the doctor away
  • ThinkDigitalSoftware
  • California, United States of America
View GitHub Profile
@peekpt
peekpt / cool_tile.dart
Created November 14, 2018 14:15
CoolTile for Flutter
import 'package:flutter/material.dart';
import 'dart:math';
class CoolTile extends StatefulWidget {
final String title;
final String subtitle;
final String tag;
final String bottomRightText;
final List<ImageProvider> avatars;
CoolTile({Key key, this.title = '', this.subtitle = '', this.tag = '', this.avatars, this.bottomRightText = ''})
@mandadimuralidharreddy
mandadimuralidharreddy / facebook_headless_login_using_google_chrome.js
Last active March 22, 2021 16:02
Facebook login using google chrome headless browser
//install dev vesrion of google chrome form https://www.chromium.org/getting-involved/dev-channel
//install chrome-remote-interface from npm npm install chrome-remote-interface
const CDP = require('chrome-remote-interface');
CDP((protocol) => {
const {Page, Runtime} = protocol;
// First, need to enable the domains we're going to use.
Promise.all([
Page.enable(),
@binary1230
binary1230 / wells fargo website bulk statement downloader
Last active June 3, 2024 18:58
wells fargo ability to download all bank statements
3/18/2021: WE HAVE MOVED: For the latest instructions on how to use the bulk wells fargo PDF downloader,
please ignore this page and visit below:
https://github.com/binary1230/wellsfargo-bulk-PDF-statement-downloader/blob/main/README.md
@leostera
leostera / gist:3535568
Created August 30, 2012 17:58
Selenium WebDriver Python Bindings and Facebook Login
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
usr = ""
pwd = ""
driver = webdriver.Firefox()
# or you can use Chrome(executable_path="/usr/bin/chromedriver")
driver.get("http://www.facebook.org")
assert "Facebook" in driver.title
@picandocodigo
picandocodigo / create_thumbnails.sh
Created May 15, 2012 14:46
Create thumbnails from images in a directory (with Imagemagick)
for i in *.jpg; do
convert -thumbnail 200 $i thumb.$i
done