sequenceDiagram
participant E as entrypoint
participant ME as MontyExperiment
participant M as Monty
participant SM as SensorModule(s)
participant LM as LearningModule(s)
participant MS as MotorSystem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Fix old reddit URLs | |
// @description Fixes problems with displaying old.reddit URLs. Examples of breakage include links with underscores, double quotes, or trailing closing braces. | |
// @version 1.4.1 | |
// @namespace redditFixOldLinks | |
// @updateURL https://gist.githubusercontent.com/Rainyan/0fdf3d449404fb786ea1a29589608ce5/raw/ | |
// @include https://old.reddit.com/* | |
// @run-at document-idle | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Configuration | |
const WAIT_OPEN_PLAYLIST_POPUP = 1000; | |
const WAIT_AFTER_ADD_PLAYLIST = 1500; | |
const TARGET_PLAYLIST_NAME = 'To Do'; | |
// Should the new playlist be in reverse order? | |
const REVERSE = false; | |
// Should liked items be skipped? | |
const SKIP_LIKED = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
import random | |
import matplotlib.pyplot as plot | |
from mpl_toolkits.mplot3d import Axes3D | |
class point: | |
def __init__(self, x,y,z): | |
self.x = x | |
self.y = y | |
self.z = z |
Create a new default search engine without the {google:instantExtendedEnabledParameter}
token:
Before:
{google:baseURL}search?q=%s&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}{google:instantExtendedEnabledParameter}ie={inputEncoding}
After:
{google:baseURL}search?q=%s&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:searchClient}{google:sourceId}ie={inputEncoding}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] | |
"EnableLinkedConnections"=dword:00000001 |