View winsanitize.ps1
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
# Remove Cortana | |
New-Item -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\' -Name 'Windows Search' | Out-Null | |
New-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search' -Name 'AllowCortana' -PropertyType DWORD -Value '0' | Out-Null | |
get-appxpackage *BingWeather* | remove-appxpackage | |
get-appxpackage *Xbox* | remove-appxpackage | |
get-appxpackage *Messaging* | remove-appxpackage | |
get-appxpackage *OneNote* | remove-appxpackage | |
get-appxpackage *People* | remove-appxpackage | |
get-appxpackage *Photos* | remove-appxpackage |
View 20220305_grey_dots_colored_dot
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
// grey dots colored dot p5.js | |
let canvasedge = 600; | |
// how much to increment each for loop by | |
let inc = 30; | |
let ra_x = 0; | |
let ra_y = 0; | |
let lastX=0; |
View print_unicode_chars
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
for i in range(1200,2900): | |
print((b'\\u%d' % i).decode('raw_unicode_escape'),end='') |
View block_goog.sh
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
cd "${0%/*}" | |
# Check which user is logged in | |
user=$(stat -f '%Su' /dev/console) | |
# Check if hosts file contains 'google' | |
if $(grep -q google /etc/hosts);then | |
GOOGLE=true | |
else | |
GOOGLE=false |
View restore_functionality.sh
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
#!/usr/bin/env bash | |
# Usage: sudo ./restore_functionality.sh | |
#ps aux | grep sentinel | awk -F " +" '{print $2}' | xargs kill | |
while true; do | |
launchctl kill SIGKILL system/com.sentinelone.sentineld | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-helper | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-guard | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-updater |
View split_wav.py
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
#!/usr/bin/env python | |
from scipy.io import wavfile | |
import os | |
import numpy as np | |
import argparse | |
from tqdm import tqdm | |
# Utility functions |
View circling_spheres.pde
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
float x, y, z; | |
void setup() { | |
size(800, 800, P3D); | |
// setup translate amounts to center screen | |
x = width / 2; | |
y = height / 2; | |
// gonna have the z-axis 'pulsate' as per the last line (sin) |
View CIS Controls
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
# CIS Controls | |
from: https://www.cisecurity.org/controls/ | |
## Basic CIS Controls | |
1. Inventory and Control of Hardware Assets | |
2. Inventory and Control of Software Assets | |
3. Continuous Vulnerability Management | |
4. Controlled Use of Administrative Privileges | |
5. Secure Configuration for Hardware and Software on Mobile Devices, Laptops, Workstations and Servers |
View newsphrases.py
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 textblob import TextBlob, Word | |
import sys | |
import random | |
from newspaper import Article | |
from fuzzywuzzy import fuzz | |
from nltk.stem import WordNetLemmatizer | |
def nphra(text): | |
# Extract Noun Phrases from text input | |
blob = TextBlob(text) |
View how to auth python flickr-api
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
Hi, | |
Just a snippet of code to demonstrate the solution to people who arrive here and are still scratching their heads: | |
import flickr_api | |
flickr_api.set_keys(api_key = 'my_api_key', api_secret = 'my_secret') | |
a = flickr_api.auth.AuthHandler() | |
url = a.get_authorization_url("read") | |
print url |
NewerOlder