Search found 530 matches

by Lost Zergling
Apr 02, 2020 16:49
Forum: Projects
Topic: LZLE List Engine with user friendly powerfull syntax - BETA 0.997a
Replies: 101
Views: 44599

Re: LZLE List Engine with user friendly powerfull syntax - BETA 0.994 -

Archive Beta 0.994 Part 1/3 ' NOTICE : Thank you to remove first single quote on the line below once you accepted the licence. /' In case redistribution of SOURCES you may ensure to reactivate the acceptance of the license. This notice may be anywhere in source code till licensed user is aware it e...
by Lost Zergling
Mar 25, 2020 12:44
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure (solved)

@Dodicat : thank you. (ps: I do know pretty nothin' about asm, just reported a compile issue).
by Lost Zergling
Mar 25, 2020 10:20
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure (solved)

@Dodicat : This seems indeed the most logical choice, for those who are comfortable with a little more "intellectual" code. For my part, I continue to work on my small code library. 3 loops: one to fill in the values, one to browse it in a pseudo recursive way and one to browse through con...
by Lost Zergling
Mar 23, 2020 14:46
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

@Badidea.I feel badly placed to take a look at your approach and that is not my goal. Without offense, it seems to me that the problem you are facing is somewhat of a nature comparable to that which I was faced with during the long-term design of LZLE: the memory management of a tree. Suppose that t...
by Lost Zergling
Mar 22, 2020 16:14
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

Very nice.
by Lost Zergling
Mar 22, 2020 13:37
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

Hi everybody. Thanks being here ! I got this output using lists itemD itemE itemI path1 path1/path2 path1/path2/itemA path1/path2/itemB path3 path3/itemC path3/itemH path3/path3 path3/path3/itemJ path3/path5 path3/path5/path7 path3/path5/path7/itemF path4 path4/path9 path4/path9/path7 path4/path9/pa...
by Lost Zergling
Mar 22, 2020 12:33
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

Replace the following "L_tmp.HashTag(Str_tmp2)" (the first one outside the while wend, the second one represents tree parse double) with "If L_tmp.HashTag(Str_tmp2)=1 Then : Print "Double on : " & L_tmp.HashTag : End If" Erratum : Just insert this line : Str_tmp2=St...
by Lost Zergling
Mar 22, 2020 9:17
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

@Badidea. While writing the code, I found a bug in lzle: the HashTag property is not always neutral on the parameter passed in reference, in general it is not visible. To work around this problem and not patch the version just for that, I had to use an intermediate variable (Str_tmp2).This will be c...
by Lost Zergling
Mar 21, 2020 22:20
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

On first code, remove comment on 'MyList.hashtag("path1")… hashtag is loading a unique key into a tree, building that tree key by key. You should get something closer to what you are looking for. To de-linearize you just need to encapsulate hashtag into a loop so as to do a setting wich bu...
by Lost Zergling
Mar 21, 2020 15:39
Forum: General
Topic: Parse string to tree structure (solved)
Replies: 61
Views: 8729

Re: Parse string to tree structure

Suggest this one #Include once "F:\Basic\LZLE.bi" Dim MyList As List ' MyList.HashTag("path1") : MyList.HashTag("path1/path2") : MyList.HashTag("path3")'? MyList.HashTag("path1/path2/itemA") MyList.HashTag("path1/path2/itemB") MyList.HashTa...
by Lost Zergling
Mar 14, 2020 22:09
Forum: Projects
Topic: Gas64 (no more use of gcc, only gas) WDS / LNX
Replies: 494
Views: 107955

Re: Gas64 (no more use of gcc, only gas) WDS / LNX

@Sarg : thank you again for this work and open comments around it.
by Lost Zergling
Mar 14, 2020 13:35
Forum: Community Discussion
Topic: Dream of sugar
Replies: 12
Views: 2962

Re: Dream of sugar

@oyster. As you are looking for a "ForEach" like feature, I suggest you have a look to lzle project on wich I may do some support and evolutions. About multi dimensional operators on arrays, lzae project (wip) is targeting instructions to help users designing their own routines between arr...
by Lost Zergling
Mar 10, 2020 15:56
Forum: Projects
Topic: Gas64 (no more use of gcc, only gas) WDS / LNX
Replies: 494
Views: 107955

Re: Gas64 (no more use of gcc, only gas) WDS / LNX

Hello SARG, I did some tests because the project seemed really interesting to me. As because of my way of programming I use the lists a lot (this allows me to save time on management applications), the idea of ​​doing without gcc is nice. If I may, I will have a few comments: No significant speed di...
by Lost Zergling
Mar 08, 2020 23:46
Forum: Community Discussion
Topic: Installing FreeBasic with Scoop on Windows
Replies: 21
Views: 3177

Re: Installing FreeBasic with Scoop on Windows

There were historical issues of contention between GPLV2 and V3 (https://lwn.net/Articles/343608/), what about? Issues solved? There are really "weird" things in V3 : as I see it the author seems to give up the right to freely distribute his own code himself. Thus, the code can be distribu...
by Lost Zergling
Mar 04, 2020 10:03
Forum: Community Discussion
Topic: Very different result
Replies: 22
Views: 3420

Re: Very different result

@Nov79 (ps a little philosophy instead coding). "I admit that I feel really lost when I come to Free Basic and I want to limit myself to a small subset only." But that's how most people who use FB do! The important thing is not to learn everything, but to have varied opportunities later wh...