can anyone cap >>10692827 pb
Trump’s ex-spy chief warns American democracy may not survive November election
The former United States Director of National Intelligence, who served in the administration of President Donald Trump as the highest-ranking intelligence official until 2019, has warned that American democracy may not survive the upcoming presidential election. In a stark editorial published on Thursday in The New York Times, Dan Coats warns that whether “the American democratic experiment, one of the boldest political innovations in human history”, will survive after November, remains an open question.
https://intelnews.org/2020/09/18/01-2872/
China's assertiveness is against its economic interests
Beijing has stoked a series of flashpoints on the country's borders
Please use the sharing tools found via the share button at the top or side of articles. Copying articles to share with others is a breach of FT.com T&Cs and Copyright Policy. Email licensing@ft.com to buy additional rights. Subscribers may share up to 10 or 20 articles per month using the gift article service. More information can be found at https://www.ft.com/tour.
https://www.ft.com/content/c632696c-49fd-41ac-a966-63242c56ec81
The first shots fired in 45 years rang out across a section of the heavily-armed Himalayan border between China and India this month. The gunfire should warn not only the two nuclear powers themselves but also the wider world that Asia’s security is imperilled as anxieties build in flashpoints along China’s southern and eastern fringes.
New Delhi and Beijing agreed after the shots were fired to “quickly disengage” troops in the disputed border region in a welcome de-escalation. But tens of thousands of troops backed by heavy weaponry still guard the frontier area where 21 Indian soldiers — and an unknown number of Chinese — were killed in hand-to-hand fighting in June
https://www.ft.com/content/c632696c-49fd-41ac-a966-63242c56ec81
US accuses Hezbollah of stockpiling weapons and ammonium nitrate across Europe
State department’s Nathan Sales says group ‘represents clear and present danger to the US’ and urges Europe to take tougher line
The US has accused Hezbollah of storing caches of weapons and ammonium nitrate for use in explosives across Europe in recent years, with the alleged aim of preparing for future attacks ordered by Iran.
The allegation was made by the state department’s counterterrorism coordinator, Nathan Sales, who called on European countries to take a tougher line on the Tehran-backed Lebanese Shia political movement and militia.
https://www.theguardian.com/world/2020/sep/17/us-accuses-hezbollah-weapons-ammonium-nitrate-iran?CMP=Share_iOSApp_Other
it's you.why the fuck can't TOR users post images???
how the fuck do you access this board without TOR?
go fuck yourself, faggot
(Proverbs 15:1) A soft answer turneth away wrath: but grievous words stir up anger.
when the bat would output filenamw+"_new"
enhance the bat with something like
dir *.jpg list.txt
run
.bat <list.txt
DIR has many options, one lists only name.ext, not on win now…
found help for WIN here:
FOR %%i IN (directory*.JPG) DO [YOUR CONVERTING COMMAND]
from: https://www.hashbangcode.com/article/loop-through-all-files-directory-dos-batch
try to run this as mod_img.bat (no filename(s) as parameters)
should go through all files in same folder as started defined here:
FOR %i IN (.jpg) - all.jpg, .jpeg - all .JPEG *.PNG — all .PNG etc
not sure about the new filename made from original here:
"%i" + "_new.jpg"
:: mod_img.bat
:: Install dependencies: https://imagemagick.org/script/download.php#windows
:: During install chack "Install legacy uitilities (eg convert)"
:: Usage: mod_img.bat –*** ignore inputfile outputfile
@echo off
SET strength=12
SET /a blocksize=%RANDOM% %% 10 + 10
SET /a angle=%RANDOM% %% 90
SET /a scale=100/%blocksize%
SET /a str=100-%strength%
magick %1 -format %%wx%%h info: tmp.txt
SET /p size=<tmp.txt
del tmp.txt
echo Strength %strength%, Blocksize: %blocksize%, Angle: %angle%, Scale: %scale%
FOR %i IN (*.jpg) DO magick convert "%i" -scale %scale%%% +noise Poisson -scale %size% -distort SRT %angle% "%i" -compose Blend -define compose:args=%str% -composite "%i" + "_new.jpg"
::Stand alone command for reference
:: convert input.jpg -scale 4% +noise Poisson -scale 2000% input.jpg -compose Blend -define compose:args=85 -composite output.jpg
>Oct2
>or Oct 10
Or the time between, which would account for the highlighted 8 minutes!
> time is moving SUPER fast lately?
Just happens as you get older
Before you know it you are past it
>>10693322 (me)
yep, the FOR-DO cycle has to go through all files I'll unpack and start an old dell w/XP and get back @U frens
>We come here to laugh when we need a break from obstructing the Trump administration’s agenda.
He who laughs last - laughs longest - Anons will have the last laugh
so,
-
copy the images in an empty folder
-
copy the bat there
-
cmd and dir in the folder w/bat and images
-
mod_img.bat <ENTER>
– made some errors with images with ' ' spaces etc, should run for rest
– this will overwrite the originals in the folder, thats why you copy them
-
BATCH START mod_img.bat -
:: mod_img.bat
:: Install dependencies: https://imagemagick.org/script/download.php#windows
:: During install chack "Install legacy uitilities (eg convert)"
:: Usage: mod_img.bat –*** ignore inputfile outputfile
echo off
SET strength=12
SET /a blocksize=%RANDOM% %% 10 + 10
SET /a angle=%RANDOM% %% 90
SET /a scale=100/%blocksize%
SET /a str=100-%strength%
FOR %%i IN (*.jpg) DO echo Strength %strength%, Blocksize: %blocksize%, Angle: %angle%, Scale: %scale% & magick %%i -format %%wx%%h info: tmp.txt & SET /p size=<tmp.txt & del tmp.txt & magick convert %%i -scale %scale%%% +noise Poisson -scale %size% -distort SRT %angle% %%i -compose Blend -define compose:args=%str% -composite %%i
::Stand alone command for reference
:: convert input.jpg -scale 4% +noise Poisson -scale 2000% input.jpg -compose Blend -define compose:args=85 -composite output.jpg
hope the % signs copied correctly… lemme know
:: mod_img.bat
:: Install dependencies: https://imagemagick.org/script/download.php#windows
:: During install chack "Install legacy uitilities (eg convert)"
:: Usage: mod_img.bat –*** ignore inputfile outputfile
echo off
SET strength=12
SET /a blocksize=%RANDOM% %% 10 + 10
SET /a angle=%RANDOM% %% 90
SET /a scale=100/%blocksize%
SET /a str=100-%strength%
FOR %%i IN (*.jpg) DO echo Strength %strength%, Blocksize: %blocksize%, Angle: %angle%, Scale: %scale% & magick %%i -format %%wx%%h info: tmp.txt & SET /p size=<tmp.txt & del tmp.txt & magick convert %%i -scale %scale% +noise Poisson -scale %size% -distort SRT %angle% %%i -compose Blend -define compose:args=%str% -composite %%i
::Stand alone command for reference
:: convert input.jpg -scale 4% +noise Poisson -scale 2000% input.jpg -compose Blend -define compose:args=85 -composite output.jpg
this one run fine for me on old WIN XP
Finished:
-
copy the images in an empty folder
-
copy the bat there
-
cmd and dir in the folder w/bat and images
-
mod_img.bat <ENTER>
– made some errors with images with ' ' spaces etc, should run for rest
– this will overwrite the originals in the folder, thats why you copy them
→ this one is OK: >>10693589
when the mod_img.bat is run more times, it adds more random patterns to the images
thanks anons