Tag Archives: tech tips
Death to _blank

Death to _blank

https://chromewebstore.google.com/detail/death-to-blank/gneobebnilffgkejpfhlgkmpkipgbcno

Websites are becoming annoying  with fresh tabs being open for every item your shopping for is clicked on.

Death to _blank opens links on the same tab.

 

Posted on January 27, 2024, 1:27 pm By
Categories: tech tips Tags:
Export quickaccess

Quick access data is save in path\file

%AppData%\Microsoft\Windows\Recent\AutomaticDestinations\f01b4d95cf55d32a.automaticDestinations-ms

 

Export windows share files

Batch file to:
extract mapped windows shares
exclude saving H:\
produce an import.bat  file to be used to remap them
only paths with spaces need to be wrapped around quotes “” manually.

 

@echo off
setlocal enabledelayedexpansion

del import_shares.bat /q

REM Run net use command and filter lines containing “\”

 

for /f “tokens=2*” %%A in (‘net use ^| find “\”‘) do (

:: remove h:\
if /i “%%A” neq “H:” (

REM Remove “Microsoft Windows Network” text
set “sharePath=%%B”
set “sharePath=!sharePath:Microsoft Windows Network=!”

REM Trim leading and trailing spaces
for /f “tokens=* delims= ” %%C in (“!sharePath!”) do set “sharePath=%%C”

REM Display the result
echo net use %%A !sharePath!
echo net use %%A !sharePath! /persistent:yes >> import_shares.bat
)

)

endlocal

TIMEOUT /T 10

Download any Windows ISO

Visit uppdump.net

Posted on October 26, 2023, 11:23 pm By
Categories: tech tips Tags:
Free Microsoft Word Excel Powerpoint

Press CTRL ALT SHIFT WINDOWS signed up for free web  office 365.

Posted on October 19, 2023, 7:17 am By
Categories: tech tips Tags:
Bandcamp

Extracting audio from them I found this type of url on footer code

Yet to decipher more…

https://t4.bcbits.com/stream/a1bf3ff8f57f8c6122842fe526ce9aec/mp3-128/1208179075?p=0&ts=1678122596&t=ab79193bfc95614eade484ba948e2d015fc04607&token=1678122596_01143f52c2374c2391457740cc512503723dce54

https://bandcamp.com/stream_redirect?enc=mp3-128&track_id=286068639&ts=1678036257&t=73dbf6a875a58358cb1ecf61ddbca7eaad3b9dc0

 

converts itself to

 

https://t4.bcbits.com/stream/896453365a3d7c4268e35e1bd5478bae/mp3-128/286068639?p=0&ts=1678123639&t=9af110e6c96d9cfc115fd92be9e33d0f8e718b64&token=1678123639_6cac1e0e851f3f78bf79b3b0f880fa0542f01bae

Posted on March 5, 2023, 5:23 pm By
Categories: tech tips Tags:
Barrier – Sharemouse equivalent

https://github.com/debauchee/barrier/wiki

Posted on November 24, 2021, 10:03 pm By
Categories: tech tips Tags:
Yealink – Adjusting the sending volume (outgoing volume) on the T2, T4 and T5 Series Phones

Log into the web interface of the phone, in the audio tab, in the section highlighted change the values, 0 is default, -50 to 50 is the range.

Youtube to MP3 on android

Get F-Droid – Install Newline

move all mp4 files into dated directory

The objective of this bat file is recursive search for MP4s in a source folder and move them into a single dated folder.

@echo off
for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
set "YY=%dt:~2,2%" & set "YYYY=%dt:~0,4%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
set "HH=%dt:~8,2%" & set "Min=%dt:~10,2%" & set "Sec=%dt:~12,2%"

set "datestamp=%YYYY%%MM%%DD%" & set "timestamp=%HH%%Min%%Sec%"
set "fullstamp=%YYYY%-%MM%-%DD%_%HH%-%Min%-%Sec%"
echo datestamp: "%datestamp%"
echo timestamp: "%timestamp%"
echo fullstamp: "%fullstamp%"


FOR /R "X:\SOURCE" %%i IN (*.mp4) DO (
MD "X:\DESTINATION\%datestamp%\"
MOVE "%%i" "X:\DESTINATION\%datestamp%\")

rem delete the source files left over and folders
x:
cd "X:\SOURCE"

del * /S /q

rd /s /q .

Next Page