Search found 4168 matches
- 24 Dec 2022, 08:07
- Forum: AutoHotkey Development
- Topic: congrats
- Replies: 13
- Views: 3834
Re: congrats
Tbh I did not expect this to happen so soon. Congratulations.
- 06 Dec 2022, 13:01
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
- 27 Jan 2022, 07:44
- Forum: Off-topic Discussion
- Topic: AHK - Once Upon A Time ...
- Replies: 14
- Views: 3403
Re: AHK - Once Upon A Time ...
At one point an exploit was discovered in the old forum code after it had been actively abused leading to many passwords being leaked.
- 28 Sep 2021, 17:02
- Forum: AutoHotkey Development
- Topic: if var in/contains comma-separated list/array
- Replies: 68
- Views: 37861
Re: if var in/contains comma-separated list/array
Finally its done --------------------------- Performance.ahk --------------------------- RegexMatch produced 1234567 hits in 25.559957399999998 seconds the map produced 1234567 hits in 0.52017780000000002 seconds --------------------------- OK --------------------------- Its 0.52 seconds using iseah...
- 28 Sep 2021, 12:06
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
Re: « What's on your mind? » Topic is solved
18.7 - PC was in standby during the day we are nearing the finishing line.
- 28 Sep 2021, 01:15
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
Re: « What's on your mind? » Topic is solved
17.6 million as of this morning - once again PC was in standby overnight.
- 27 Sep 2021, 12:21
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
Re: « What's on your mind? » Topic is solved
No its going slower and faster sometimes
16058536 - its been on the last few hours - so 1 million in 4 hours rn
16058536 - its been on the last few hours - so 1 million in 4 hours rn
- 27 Sep 2021, 08:30
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
Re: « What's on your mind? » Topic is solved
15025144 put my PC to sleep for a while so I do not know how long it took to get this far.
- 26 Sep 2021, 16:03
- Forum: Off-topic Discussion
- Topic: « What's on your mind? » Topic is solved
- Replies: 4946
- Views: 1534792
Re: « What's on your mind? » Topic is solved
viewtopic.php?f=37&p=422185&sid=5f54fe255aece311a2c0ec9b373fe48f#p422185
22 hours in 13940580 entries so far
22 hours in 13940580 entries so far
- 26 Sep 2021, 07:23
- Forum: AutoHotkey Development
- Topic: if var in/contains comma-separated list/array
- Replies: 68
- Views: 37861
Re: if var in/contains comma-separated list/array
So in order to really see how the performance of the lookups scale I tried to create a Mp with 20 Million entries. To my dismay it has yet to finish executing after roughly 13 hours. Performance appears to be dropping even further. Of course adding to a sorted list is a O(n²) operation - (unlike bin...
- 25 Sep 2021, 17:49
- Forum: AutoHotkey Development
- Topic: if var in/contains comma-separated list/array
- Replies: 68
- Views: 37861
Re: if var in/contains comma-separated list/array
iseahound I don't think I will adapt my regex as most regexes are language specific so I don't see the point in even attempting at making that one common syntax. string operations are in general faster than objects Could you explain what makes you say that? This clearly isn't about object creation ...
- 25 Sep 2021, 06:31
- Forum: AutoHotkey Development
- Topic: if var in/contains comma-separated list/array
- Replies: 68
- Views: 37861
Re: if var in/contains comma-separated list/array
I can tell you that regex is extremely fast, and string operations are in general faster than objects. Use the RegEx suggestion with the case insensitive option. If you were to benchmark your code, you'd only be hitting the regex cache anyways. Even though objects are slow, they are not noticeably ...
- 25 Sep 2021, 05:45
- Forum: AutoHotkey Development
- Topic: [a137] seed.
- Replies: 12
- Views: 6075
Re: [a137] seed.
Its a basic feature most languages do have
- 26 May 2021, 02:04
- Forum: AutoHotkey Development
- Topic: [wish] Wish delete = for comparing strings
- Replies: 46
- Views: 16319
Re: [wish] Wish delete = for comparing strings
Most work in coding does not stem from typing an extra : before =.So, why not change := to = so that we can save lots of unnecessary inputs and greatly improve the development efficiency. At present, we have to extra press a "shift" plus a ; for every assignment which is everywhere.
- 22 Mar 2021, 02:36
- Forum: AutoHotkey Development
- Topic: Smarter dllcall()
- Replies: 8
- Views: 5462
Re: Smarter dllcall()
No, it isn't better. long and long int are 32-bit (on all the platforms AutoHotkey runs on). If you want to save characters, there are numerous solutions that can be implemented in script, with DllCall.Bind , now without the need for %% or .Call . The cost of calling via BoundFunc is negligible eve...
- 09 Jan 2021, 07:23
- Forum: Wish List
- Topic: V2 - Map Lookup Fallback / Test + Lookup
- Replies: 2
- Views: 988
Re: V2 - Map Lookup Fallback / Test + Lookup
Using try is really an antipattern in this case. I would suggest the following function names (taken from https://docs.oracle.com/javase/8/docs/api/java/util/Map.html) map.Get(my_key,my_default) -> map.getOrDefault(my_key,my_default) map.SetIfMissing(my_key,my_value) -> map.computeIfMissing(my_key, ...
- 01 Dec 2020, 04:32
- Forum: Off-topic Discussion
- Topic: IE's dead.
- Replies: 37
- Views: 14022
Re: IE's dead.
6 is fundamentally wrong. 1-5 are personal preference. 7 is not an argument but a suggestion as to what to use instead.
- 01 Dec 2020, 01:03
- Forum: Off-topic Discussion
- Topic: IE's dead.
- Replies: 37
- Views: 14022
Re: IE's dead.
why not chrome: 1) google 2) google 3) it's too bare without addons 4) relies on addons 5) using too many addons is gross 6) it's not 2008 anymore, all browsers work great with all sites (except may some fringe experiment sites testing experimental features of a specific browser) 7) Vivaldi browser...
- 01 Dec 2020, 00:57
- Forum: Off-topic Discussion
- Topic: IE's dead.
- Replies: 37
- Views: 14022
Re: IE's dead.
@nnnik. What is the name of the language used by Internet Explorer? Where can I find information about it? People who don't use Chrome, can you say why? Thanks. JScript is Microsofts extended implementation of JavaScript (ECMAScript) in IE. Actually looking it up I find conflicting information. On ...
- 21 Nov 2020, 03:50
- Forum: Off-topic Discussion
- Topic: IE's dead.
- Replies: 37
- Views: 14022
Re: IE's dead.
boots instantly and I never had rendering issues beyond the phase webdevs went through for a few years of limiting their sites to certain browsers. Simply changing the UA proved IE could would on most of those sites. Devs were just being elitists or w/e. for years Internet Explorer worked on a diff...