Get a list of all the outdated packages
$ pip list --outdated
Open a command shell by typing ‘powershell’ in the Search Box of the Task bar
Update All Python Packages On Windows
/* | |
Drafts App Bookmarklets (http://agiletortoise.com/drafts) | |
Author: Sean Korzdorfer | |
Date: 13:51:29 Wed May 23 2012 | |
Re: https://gist.github.com/gists/2579288 | |
Most of the Date functions used snippets I created from: | |
http://www.webdevelopersnotes.com/tips/html/10_ways_to_format_time_and_date_using_javascript.php3 | |
*/ |
// Adapted from kepano's original obsidian-web-clipper: https://gist.github.com/kepano/90c05f162c37cf730abb8ff027987ca3 | |
// ...for Craft.do by David Blue: https://extratone.craft.me/craftcapture | |
// Community Slack thread: https://dub.sh/slccapture | |
// Version: 1.1 | |
javascript:(function() { | |
Promise.all([ | |
import('https://unpkg.com/[email protected]?module'), | |
import('https://unpkg.com/@tehshrike/[email protected]') | |
]).then(async ([{ |
04/26/2103. From a lecture by Professor John Ousterhout at Stanford, class CS142.
This is my most touchy-feely thought for the weekend. Here’s the basic idea: It’s really hard to build relationships that last for a long time. If you haven’t discovered this, you will discover this sooner or later. And it's hard both for personal relationships and for business relationships. And to me, it's pretty amazing that two people can stay married for 25 years without killing each other.
[Laughter]
> But honestly, most professional relationships don't last anywhere near that long. The best bands always seem to break up after 2 or 3 years. And business partnerships fall apart, and there's all these problems in these relationships that just don't last. So, why is that? Well, in my view, it’s relationships don't fail because there some single catastrophic event to destroy them, although often there is a single catastrophic event around the the end of the relation
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
#!/bin/bash | |
####################################################################### | |
# Generates documentation for a target, for example a Swift package, | |
# that supports both iOS and macOS. | |
# | |
# The script is designed to be placed in the root of a Swift package. | |
# Change the paths as needed if your project structure is different. | |
# | |
# In order for DocC to annotate all symbols with the platforms |
// ==UserScript== | |
// @name Download YouTube subtitles | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Now you can download YouTube subtitles | |
// @author André Kugland | |
// @match http*://*.youtube.com/* | |
// @grant none | |
// @require https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js#sha256=bbf27552b76b9379c260579fa68793320239be2535ba3083bb67d75e84898e18 | |
// ==/UserScript== |
Back in July of 2008 I started thinking about HTML microformats for linking together and discovering social objects on the web.
I later discussed this with folks at the Internet Identity Workshop and after a few rounds of discussion we ended up working on Activity Streams instead, which shifted the focus to machine-readable descriptions of actions on social objects. However, the social object research here was the initial basis of what went on to become the "Object Types" in Activity Base Schema, after many iterations.
#!/usr/bin/env ruby -W1 | |
# frozen_string_literal: true | |
# This script scans an RSS feed for the latest post, and if | |
# it hasn't already been posted to Mastodon, creates a new | |
# toot with a link to it. | |
require 'json' | |
require 'optparse' | |
require 'rss' |