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 requests | |
| import time | |
| import json | |
| # --- KONFIGURATION --- | |
| # Indsæt Token ID for det Polymarket marked du vil overvåge | |
| # Du finder dette ID på Polymarket under "Details" eller via deres API. | |
| # Eksempel: Hvis du vil handle på om BTC er over en vis pris. | |
| POLYMARKET_TOKEN_ID = "INDSAET_TOKEN_ID_HER" |
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 requests | |
| from bs4 import BeautifulSoup | |
| import time | |
| def update(): | |
| request = requests.get('https://mathewsteininger.com/sample-product') | |
| html = request.content | |
| soup = BeautifulSoup(html, 'html.parser') | |
| # Monitor this tag to check stock changes | |
| stock = soup.find("button", {"id": "availability"}) |
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 websocket | |
| import json | |
| import psutil | |
| import os | |
| import curses | |
| import threading | |
| import time | |
| # Global variables to store dynamic values | |
| current_price = "Fetching..." |
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
| # video - https://youtu.be/VqX4YGabI_k | |
| import requests | |
| import json | |
| import time | |
| url_all = "https://api.bittrex.com/api/v1.1/public/getcurrencies" | |
| INTERVAL = 1 | |
| j = requests.get(url_all) |
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
| #Requires AutoHotkey v2+ | |
| #SingleInstance Force | |
| global MIC := "FIFINE T669" | |
| Notify(false) | |
| SetTimer(CheckExes, 1000) | |
| *F24:: | |
| { |
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
| ; | |
| ; AutoHotkey Version: v1.1.22.06 | |
| ; Language: English | |
| ; Platform: Windows 10 | |
| ; Author: Andy Terra <github.com/airstrike> | |
| ; | |
| ; Script Function: | |
| ; Toggle Microphone Mute -- assumes it is located at WAVE:1, device #2 | |
| ; Use the SoundCardAnalysis script to figure out where your mic is | |
| ; https://www.autohotkey.com/docs/commands/SoundSet.htm#Ex |
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
| #Requires AutoHotkey v1 | |
| ; Inspiration / Code Jacked from the following resources: | |
| ; https://www.reddit.com/r/windowsporn/comments/x6299x/a_small_effect_on_window_switching/ | |
| ; https://superuser.com/questions/1190658/fine-tune-this-red-border-around-active-window-ahk-script/1191059#1191059?newreg=d3acdcdab8714e76a5efeca9996e792f | |
| ; https://www.autohotkey.com/boards/viewtopic.php?f=6&t=110505 | |
| ; https://discord.com/channels/898554690126630914/898556726108901386/1053662963585781760 # Komorebi Discord | |
| ; | |
| #NoEnv | |
| #SingleInstance, Force |
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
| EverythingPath = ;specify the path here | |
| #IfWinActive ahk_class CabinetWClass | |
| { | |
| F6:: | |
| folder := GetFolder() | |
| run, %EverythingPath% -path "%folder%" | |
| return | |
| } |
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
| /* | |
| CustomFont v2.01 (2018-8-25) | |
| --------------------------------------------------------- | |
| Description: Load font from file or resource, without needed install to system. | |
| --------------------------------------------------------- | |
| Useage Examples: | |
| * Load From File | |
| font1 := New CustomFont("ewatch.ttf") | |
| Gui, Font, s100, ewatch |
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
| #NoTrayIcon | |
| SendMode("Input") | |
| SetWorkingDir(A_ScriptDir) | |
| ; ----------------------------------------------------------------------- | |
| ; 1. PowerToys Peek | |
| ; Use only space key to trigger PowerToys Peek | |
| ; Credit: https://github.com/deanmongel/use-space-in-peek-of-powertoys |
NewerOlder