This file contains 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
document.addEventListener("click", ({ target }) => { | |
speechSynthesis.cancel(); | |
speechSynthesis.speak(new SpeechSynthesisUtterance(target.textContent)); | |
// animate outline | |
target.animate({ | |
outline: [ | |
"2px solid rgb(0 0 255 / 100%)", | |
"5px solid rgb(0 0 255 / 0%)", | |
], |
This file contains 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
# From https://superuser.com/questions/1465089/how-do-i-delete-a-windowsapps-folder/1619744 | |
$appname = @( | |
"*LinkedInforWindows*" | |
"*Evernote*" | |
"*MusicMakerJam*" | |
"*GetHelp*" | |
"*Getstarted*" | |
"*Microsoft3DViewer*" | |
"*MicrosoftOfficeHub*" |
This file contains 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
function diary2html(filename) | |
% DIARY2HTML Creates a formatted HTML version of a diary file | |
% DIARY2HTML(FILENAME) outputs a formatted HTML version of a diary file | |
% to an HTML file (e.g. if filename is "diary.txt", the HTML file generated | |
% will be "diary.html") | |
arguments | |
filename (1,:) char {mustBeNonempty} | |
end | |
This file contains 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
myaddress = '[email protected]'; | |
setpref('Internet','E_mail',myaddress); | |
setpref('Internet','SMTP_Server','smtp.gmail.com'); | |
setpref('Internet','SMTP_Username',myaddress); | |
setpref('Internet','SMTP_Password',mypassword); | |
props = java.lang.System.getProperties; | |
props.setProperty('mail.smtp.auth','true'); | |
props.setProperty('mail.smtp.socketFactory.class', ... |
This file contains 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
function y = isCarmichael(x) | |
y = false | |
if isprime(x) | |
return | |
end | |
for b = 2:x-1 | |
if gcd(b,x) ~= 1; continue; end | |
This file contains 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
function cprintf(color, string) | |
%CPRINTF wraps the given string in html that colors that text. | |
disp(['<font color="', color, '">', string, '</font>']); | |
end |
This file contains 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_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
"BingSearchEnabled"=dword:00000000 | |
"AllowSearchToUseLocation"=dword:00000000 | |
"CortanaConsent"=dword:00000000 |
This file contains 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\Policies\Microsoft\Windows\WindowsUpdate\AU] | |
"NoAutoRebootWithLoggedOnUsers"=dword:00000000 | |
; "NoAutoRebootWithLoggedOnUsers"=dword:00000001 |
This file contains 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
{ | |
"commandline": "%PROGRAMFILES%/Git/bin/bash.exe -i -l", | |
"guid": "{b6dcc215-1356-4b6b-907b-61957457104a}", | |
"icon": "%PROGRAMFILES%/Git/mingw64/share/git/git-for-windows.ico", | |
"name": "Git Bash", | |
"startingDirectory": "%USERPROFILE%/Documents/Git", | |
"tabTitle": "Git Bash" | |
}, | |
{ | |
"commandline": "C:\\Program Files\\nodejs\\node.exe", |
This file contains 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
#From https://www.deployhq.com/git/faqs/removing-large-files-from-git-history | |
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch path/to/file' --prune-empty --tag-name-filter cat -- --all |
NewerOlder