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
| For anyone who might read this in the future, I've found the best solution to this problem. For some reason I didn't need to go through all these steps on my surface pro adobe programs, but my desktop gave me issues. So if you're still having issues after doing the following, read on. | |
| If you just end the process in Task Manager, the pop-up comes back up eventually. | |
| If you just delete the files in "C:\Program Files (x86)\Common Files\Adobe\AdobeGCClient" or the folder itself, they may just recreate themselves every day or two. | |
| If you delete/disable the Adobe services or schedules in Task Scheduler, those may just come back too. | |
| To solve these issues, I decided to make a .bat file that deletes every file in that AdobeGCClient folder (exact location may depend on your Adobe install folder) and schedule it to do this every time I log on/turn on my pc. So far that has worked for the past few days. |
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
| :: ################################################################ | |
| :: ## 🔥 WinMasterBlocker 🔥 # | |
| :: ################################################################ | |
| :: # Author: https://github.com/ph33nx # | |
| :: # Repo: https://github.com/ph33nx/WinMasterBlocker # | |
| :: # # | |
| :: # This script blocks inbound/outbound network access # | |
| :: # for major apps like Adobe, Autodesk, Corel, Maxon, # | |
| :: # and more using Windows Firewall. # | |
| :: # # |
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
| @echo off | |
| set /a _Debug=0 | |
| ::========================================== | |
| :: Get Administrator Rights | |
| set _Args=%* | |
| if "%~1" NEQ "" ( | |
| set _Args=%_Args:"=% | |
| ) | |
| fltmc 1>nul 2>nul || ( | |
| cd /d "%~dp0" |
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
| #!/bin/sh | |
| # Example of job definition (as add job using crontab -e): | |
| # .---------------- minute (0 - 59) | |
| # | .------------- hour (0 - 23) | |
| # | | .---------- day of month (1 - 31) | |
| # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... | |
| # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat | |
| # | | | | | | |
| # * * * * * user-name command to be executed | |
| # 30 02 15,28 * * /root/opkg_updater.sh |
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
| Плагины для онлайн просмотра: | |
| 1️⃣ Онлайн Stream: http://arkmv.ru/vod | |
| 2️⃣ Онлайн Prestige: https://bwa.to/plugins/prestige.js | |
| 3️⃣ Stream 2: http://llpp.in/v/vod.js | |
| 4️⃣ Онлайн Мод: https://nb557.github.io/plugins/online_mod.js | |
| 5️⃣ Онлайн MODS's: http://lampa.stream/modss |
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
| [_√_] The X-Robot (_2:5020/8500.300_) -> [*X-MUSIC38*] | |
| (из коллекции "Электронная музыка") 10/04/20 (втоpник) | |
| history of electronic music | |
| > House | |
| В середине 80-х в Чикаго возник новый вид танцевальной музыки | |
| - хаус. Он просто появился. Десять лет спустя он кажется |
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
| // DarkMan|B.o.D's Quake 3 Configuration Script | |
| // =========================================================== | |
| // Copyright 1998,1999,2000,2001 DarkMan|B.o.D, All Rights Reserved. | |
| // =========================================================== | |
| unbindall | |
| // Section 1: FPS Enhancing GFX Settings | |
| seta r_glDriver "opengl32" // opengl driver |
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 pandas as pd | |
| # Read the first CSV file with semicolon separator | |
| file1 = 'file1.csv' | |
| df1 = pd.read_csv(file1, sep=';', skiprows=1) | |
| # Read the second CSV file with semicolon separator | |
| file2 = 'file2.csv' | |
| df2 = pd.read_csv(file2, sep=';', skiprows=1) |
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
| # grab products and filter by needed fields, save result in csv file | |
| # malfini api docs https://api.malfini.com/api-docs/index.html | |
| # Step 1: Authenticate and get the JWT token | |
| TOKEN=$(curl -s -X POST "https://api.malfini.com/api/v4/api-auth/login" \ | |
| -H "accept: application/json" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"username":"username","password":"password"}' | jq -r '.access_token') | |
| # Step 2: Use the JWT token to get the product list |
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
| # /etc/unbound/unbound.conf.d/pi-hole.conf | |
| server: | |
| # If no logfile is specified, syslog is used | |
| # logfile: "/var/log/unbound/unbound.log" | |
| verbosity: 0 | |
| interface: 127.0.0.1 | |
| port: 5335 | |
| do-ip4: yes |
NewerOlder