Search found 4168 matches

by nnnik
24 Dec 2022, 08:07
Forum: AutoHotkey Development
Topic: congrats
Replies: 13
Views: 3097

Re: congrats

Tbh I did not expect this to happen so soon. Congratulations.
by nnnik
27 Jan 2022, 07:44
Forum: Off-topic Discussion
Topic: AHK - Once Upon A Time ...
Replies: 14
Views: 2724

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.
by nnnik
28 Sep 2021, 17:02
Forum: AutoHotkey Development
Topic: if var in/contains comma-separated list/array
Replies: 68
Views: 34116

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...
by nnnik
28 Sep 2021, 12:06
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1386278

Re: « What's on your mind? » Topic is solved

18.7 - PC was in standby during the day we are nearing the finishing line.
by nnnik
28 Sep 2021, 01:15
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1386278

Re: « What's on your mind? » Topic is solved

17.6 million as of this morning - once again PC was in standby overnight.
by nnnik
27 Sep 2021, 12:21
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1386278

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
by nnnik
27 Sep 2021, 08:30
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1386278

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.
by nnnik
26 Sep 2021, 07:23
Forum: AutoHotkey Development
Topic: if var in/contains comma-separated list/array
Replies: 68
Views: 34116

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...
by nnnik
25 Sep 2021, 17:49
Forum: AutoHotkey Development
Topic: if var in/contains comma-separated list/array
Replies: 68
Views: 34116

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 ...
by nnnik
25 Sep 2021, 06:31
Forum: AutoHotkey Development
Topic: if var in/contains comma-separated list/array
Replies: 68
Views: 34116

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 ...
by nnnik
25 Sep 2021, 05:45
Forum: AutoHotkey Development
Topic: [a137] seed.
Replies: 12
Views: 5242

Re: [a137] seed.

Its a basic feature most languages do have
by nnnik
26 May 2021, 02:04
Forum: AutoHotkey Development
Topic: [wish] Wish delete = for comparing strings
Replies: 46
Views: 14022

Re: [wish] Wish delete = for comparing strings

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.
Most work in coding does not stem from typing an extra : before =.
by nnnik
22 Mar 2021, 02:36
Forum: AutoHotkey Development
Topic: Smarter dllcall()
Replies: 8
Views: 5114

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...
by nnnik
09 Jan 2021, 07:23
Forum: Wish List
Topic: V2 - Map Lookup Fallback / Test + Lookup
Replies: 2
Views: 825

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, ...
by nnnik
01 Dec 2020, 04:32
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 10944

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.
by nnnik
01 Dec 2020, 01:03
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 10944

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...
by nnnik
01 Dec 2020, 00:57
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 10944

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 ...
by nnnik
21 Nov 2020, 03:50
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 10944

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...

Go to advanced search