Skip to content

Instantly share code, notes, and snippets.

View sente's full-sized avatar

Stuart Powers sente

View GitHub Profile
var morefunction = function()
{
button = document.getElementById("more")
button.click();
button.scrollIntoView();
window.scrollBy(0,-40);
}
var myVar = setInterval(morefunction, 4000);
@sente
sente / violano-parts.js
Created June 4, 2020 08:50
snippets from violano.js
// Version 03-08-2018
var CurrentViewEnum = {
NONE: 0,
SONGS: 1,
PLAYLISTS: 2,
ALBUMS: 3
};
https://goo.gl/photos/Lg4muHRg55jQbW967
<!doctype html>
<meta charset=utf-8>
<meta name=viewport content=width=device-width,initial-scale=1>
<style>
* {
line-height: 1.1;
word-wrap: break-word;
}
body {
font: 16px Georgia, serif;
import sys
import pprint
import json
from nltk.corpus import wordnet as wn
def get_synsets(words):
return dict([[w,wn.synsets(w.split()[0])] for w in words])
// XPath CheatSheet
// To test XPath in your Chrome Debugger: $x('/html/body')
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/
// 0. XPath Examples.
// More: http://xpath.alephzarro.com/content/cheatsheet.html
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class
import requests
import re
import glob
import os
import sys
import pprint
import pandas
import lxml
import lxml.html
We can't make this file beautiful and searchable because it's too large.
"_id" title authors.0 authors.1 publisher
59b1349a30164b0f93a7ca2c On Gryphon's Wings T. C. Portier Balboa Press
59b1349a30164b0f93a7ca2d Murder in the Vatican, The CIA and the Bolshevik Pontiff Lucien Gregoire Author House
59b1349a30164b0f93a7ca2e The Taylor Women Shirley Harrington-Moore iUniverse
59b1349a30164b0f93a7ca2f Roll On Sugaree Loyd Little Author House
59b1349a30164b0f93a7ca30 The Pelican's Briefs Mark Joneschiet iUniverse
59b1349a30164b0f93a7ca31 Colophon, A Novel of Renaissance Florence Jo Ford iUniverse
59b1349a30164b0f93a7ca32 December Gold Ron Mitchell WestBow Press
59b1349a30164b0f93a7ca33 Mom's Gold Star Robert Bailey iUniverse
59b1349a30164b0f93a7ca34 Evergreen Belva Plain Dell Publishing Company
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Learning How To Learn
Module 1 - What is Learning
Focused/Diffuse Modes Thinking
- Obviously ‘focused’ is when you’re concentrating. Direct approach to solving familiar problems.
- Focused: thoughts move through nicely-paved road of familiar notions (neural pattern looks very tight and directed).
- encompasses rational, sequential, analytical approaches to thinking
- Diffuse: More of a search function neural pattern. Thoughts move widely. More of a broad/big-picture perspective trying to connect ideas from different places.
- We’re always either in focused or diffuse mode of thinking.