Skip to content

Instantly share code, notes, and snippets.

@yttrian
yttrian / windows-search-to-google.user.js
Created January 24, 2024 06:25
Windows Search to Google
// ==UserScript==
// @run-at document-start
// @name Windows Search to Google
// @namespace Violentmonkey Scripts
// @include http://*.bing.com/search?*
// @include https://*.bing.com/search?*
// @grant none
// @version 1.0
// @author Ian
// @description 3/20/2023, 12:51:03 PM

Keybase proof

I hereby claim:

  • I am yttrian on github.
  • I am ianmooreisme (https://keybase.io/ianmooreisme) on keybase.
  • I have a public key whose fingerprint is 7DBD 89FC 96EB 022F A9C6 3CC5 F6B4 2DE3 0BE7 1F96

To claim this, I am signing this object:

@yttrian
yttrian / PRGM:PASTRI
Last active January 9, 2018 17:34
Prints out Pascal 's Triangle on a TI-89
:pastri(x)
:Prgm
:ClrIO
:For y,0,x
:Disp nCr(x,y)
:If mod(y+1,6)=0 and not (x=y) Then
:Pause
:EndIf
:EndFor
:DelVar x,y