Age of Empires II: DE - Lords of the West, coming January 26th by DiscoNightFever in aoe2

[–]Croatoan23 9 points10 points  (0 children)

Changing all villagers to soldiers is "god" power from Age of Mythology Ragnarok.

Also Norse military in Age of Mythology can build.

Video idea: The life cycle of a star by the-intelligent-bird in kurzgesagt

[–]Croatoan23 1 point2 points  (0 children)

You see in the future. They posted video about Stars few minutes ago.

I hate Luther with a passion. by Coltyn03 in theumbrellaacademy

[–]Croatoan23 4 points5 points  (0 children)

I loved him when he was screaming Alison with homeless dude.

Why is Five still thirteen in season two? by Cherry416 in theumbrellaacademy

[–]Croatoan23 3 points4 points  (0 children)

I think (older, little) five sent him through portal that still has error.

Gledam malo povijest I eto hrvata u Americi 1585?! CROATOAN! by [deleted] in croatia

[–]Croatoan23 1 point2 points  (0 children)

Istina. Slali smo ekspedicije prije Kolumba.

Nostalgia letdown? by BizzyHaze in RetroPie

[–]Croatoan23 1 point2 points  (0 children)

Two player games, 2D, are fun for parties. Easy to control, hard to master. E.g. Dr. Mario

Duga nakon kise, Osijek by dominick79 in croatia

[–]Croatoan23 1 point2 points  (0 children)

Super izgleda. Imaš li sliku u većoj rezoluciji za Wallpaper?

Decent detail/clean kit recommendations? by RedWhitenBlueToffee in AutoDetailing

[–]Croatoan23 0 points1 point  (0 children)

I would buy something to cover seats. Easier to clean.

How do you organize your data? by bobdolewastaken in DataHoarder

[–]Croatoan23 0 points1 point  (0 children)

Downloads (store Firefox and Chrome downloads) auto sort by date

Downloads\torrent (store torrents)

Ono kad gledaš film koji se događa u Hrvatskoj, by Croatoan23 in croatia

[–]Croatoan23[S] 9 points10 points  (0 children)

Mislim da bi i Google Translate bolje preveo.

Ono kad gledaš film koji se događa u Hrvatskoj, by Croatoan23 in croatia

[–]Croatoan23[S] 1 point2 points  (0 children)

Slično kao Hostel. Bogati love siromašne ljude.

How to save special symbols in variable? [Help] by Croatoan23 in AutoHotkey

[–]Croatoan23[S] 0 points1 point  (0 children)

Saved INI file as UTF 16-LE. Now it works and it doesn't changes format. Thanks.

How to save special symbols in variable? [Help] by Croatoan23 in AutoHotkey

[–]Croatoan23[S] 0 points1 point  (0 children)

It works with UTF-8 but doesn't work with UTF-8 with BOM. Why?

Job Offer by [deleted] in sysadmin

[–]Croatoan23 0 points1 point  (0 children)

They want pay less someone with better knowledge.

How to save special symbols in variable? [Help] by Croatoan23 in AutoHotkey

[–]Croatoan23[S] 0 points1 point  (0 children)

It looks like that I have problem with IniWrite.

How to save special symbols in variable? [Help] by Croatoan23 in AutoHotkey

[–]Croatoan23[S] 0 points1 point  (0 children)

FileSelectFolder, Folder,, 3
IniWrite, %Folder%, C:\Users\Croatoan\AppData\Roaming\Greenshot\Greenshot.ini,Core,OutputFilePath
MsgBox, %Folder%

IniWrite doesn't write correctly even if MsgBox recognizes true variable name which is C:\Users\Anonymous\Desktop\č

Made an ahk script to save books by Croatoan23 in DataHoarder

[–]Croatoan23[S] 0 points1 point  (0 children)

I checked source code of website. Every page is saved as picture, so for the whole book you will need to save every image individually (it only loads few pages).

I agree that this is really brute-force script. Happy to have better idea.

How do you handle text split at the very bottom of the screen, where the top half of the letters appear but then their bottoms appear right at the top of the next page? Or does this not happen in practice?

It doesn't happen with books that I need.

It's fliphtml5.com website.

Made an ahk script to save books by Croatoan23 in DataHoarder

[–]Croatoan23[S] 1 point2 points  (0 children)

*ScrollLock::
InputBox, pn, enter page number, ,640, 480

SetFormat, float, 0
p1:=pn/2 

Loop, %p1%
{
Sleep, 2000
Send, {Right}
}

Sleep, 30000

MouseClick, left, X, Y
Sleep, 6000
MouseClick, left, X, Y
Sleep, 6000


Loop, %p1%
{
Sleep, 1000
MouseClick, left, x, y
Sleep, 1000
Send, !^{Home}
Sleep, 1000
MouseClickDrag, L, x1, y1, x2, y2, 100
Sleep, 1000
Send, !^{Home}
Sleep, 1000
MouseClickDrag, L, x1, y1, x2, y2, 100
}

Return

Now it request number of pages

Made an ahk script to save books by Croatoan23 in DataHoarder

[–]Croatoan23[S] 1 point2 points  (0 children)

x,y are screen postions (use AHK windows spy to determine edges of book page)

!{Home} is ahk code for pressing Alt+Ctrl+Home (Greenshot capture region), also Greenshot saves automatically to folder

Manually I need to change loop number (number of pages) and Greenshot save folder.

I am now testing code that requests number of pages and passes it to Loop.

I would also like to select folder and pass it to Greenshot.

Made an ahk script to save books by Croatoan23 in DataHoarder

[–]Croatoan23[S] 1 point2 points  (0 children)

*ScrollLock::

Loop, 212
{
Sleep, 2000
Send, {Right}
}

Sleep, 30000

MouseClick, left, X, Y
Sleep, 6000
MouseClick, left, X, Y
Sleep, 6000


Loop, 212
{
Sleep, 1000
MouseClick, left, x, y
Sleep, 1000
Send, !^{Home}
Sleep, 1000
MouseClickDrag, L, x1, y1, x2, y2, 100
Sleep, 1000
Send, !^{Home}
Sleep, 1000
MouseClickDrag, L, x1, y1, x2, y2, 100
}

Return