View main.py
from TikTokApi import TikTokApi | |
import random | |
import string | |
proxy = "some_cool" | |
api = TikTokApi.get_instance(use_test_endpoints=True) | |
did = ''.join(random.choice(string.digits) for num in range(19)) | |
count = 500 |
View ohmyposhv3.json
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
View ParadoxGlucose.psm1
#requires -Version 2 -Modules posh-git | |
function Write-Theme { | |
param( | |
[bool] | |
$lastCommandFailed, | |
[string] | |
$with | |
) |
View allowlistforpihole.txt
analytics.twitter.com | |
api.mixpanel.com | |
api.segment.io | |
attestation.xboxlive.com | |
az416426.vo.msecnd.net | |
browser.pipe.aria.microsoft.com | |
c.bing.com | |
c.msn.com | |
c1.microsoft.com | |
cdn-gl.imrworldwide.com |
View settings.json
// This file was initially generated by Windows Terminal 0.11.1072.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
View azure pipeline
# ASP.NET Core | |
# Build and test ASP.NET Core projects targeting .NET Core. | |
# Add steps that run tests, create a NuGet package, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core | |
trigger: | |
- main | |
pool: | |
vmImage: 'ubuntu-latest' |
View DownloadVideosFromRSS.ps1
#CHECK THE PATH ON LINE 2 and the FEED on LINE 3 | |
cd "C:\users\scott\Downloads" | |
$a = ([xml](new-object net.webclient).downloadstring("https://channel9.msdn.com/Series/CSharp-101/feed/mp4")) | |
$a.rss.channel.item | foreach{ | |
$url = New-Object System.Uri($_.enclosure.url) | |
$file = $url.Segments[-1] | |
$file | |
if (!(test-path $file)) { | |
(New-Object System.Net.WebClient).DownloadFile($url, $file) | |
} |
View gist:2f2cbf19c196c46021ba3f09ca5c1ae8
<rewrite> | |
<rewriteMaps configSource="rewritemaps.config" /> | |
<rules> | |
<rule name="Redirect Rule" stopProcessing="true"> | |
<match url=".*" ignoreCase="false" /> | |
<conditions> | |
<add input="{StaticRedirects:{URL}}" pattern="(.+)" /> | |
</conditions> | |
<action type="Redirect" url="{C:1}" appendQueryString="false" redirectType="Permanent" /> | |
</rule> |
View profile.json
{ | |
"defaultProfile": "{79285a8e-036c-446f-8a9c-78994e34bf85}", | |
"initialRows": 30, | |
"initialCols": 120, | |
"alwaysShowTabs": true, | |
"showTerminalTitleInTitlebar": true, | |
"showTabsInTitlebar": true, | |
"requestedTheme": "dark", | |
"profiles": [ | |
{ |
View profile.json
{ | |
"defaultProfile": "{7d04ce37-c00f-43ac-ba47-992cb1393215}", | |
"initialRows": 30, | |
"initialCols": 120, | |
"alwaysShowTabs": true, | |
"showTerminalTitleInTitlebar": true, | |
"experimental_showTabsInTitlebar": true, | |
"requestedTheme": "dark", | |
"profiles": [ | |
{ |
NewerOlder