Re: [Gambas-user] Switching to GitLab

2017-08-24 Thread PICCORO McKAY Lenz
2017-08-24 1:36 GMT-04:00 Christof Thalhofer : > Hello Piccoro, > > Am 24.08.2017 um 00:07 schrieb PICCORO McKAY Lenz: > > yes, i reading now with calm.. all you have right in part... > > Thank you! I did not want to offend you! Maybe you could really work > together with ML, unfortunately I do no

Re: [Gambas-user] Switching to GitLab

2017-08-24 Thread Adrien Prokopowicz
Le Thu, 24 Aug 2017 14:50:17 +0200, PICCORO McKAY Lenz a écrit: 2017-08-24 1:36 GMT-04:00 Christof Thalhofer : Hello Piccoro, Am 24.08.2017 um 00:07 schrieb PICCORO McKAY Lenz: > yes, i reading now with calm.. all you have right in part... Thank you! I did not want to offend you! Maybe yo

Re: [Gambas-user] Switching to GitLab

2017-08-24 Thread PICCORO McKAY Lenz
ah! sorry, i mean Adrien, not tobias.. yeah ... and as adrien said, i noted why mi guide are so condensed, its based from the existing SVN wiki howto i think i must read your work, see and paste some in the git made by me and then you see it and make a final work.. Lenz McKAY Gerardo (PICCORO)

Re: [Gambas-user] Switching to GitLab

2017-08-24 Thread Tobias Boege
On Thu, 24 Aug 2017, PICCORO McKAY Lenz wrote: > 2017-08-24 1:36 GMT-04:00 Christof Thalhofer : > > > Hello Piccoro, > > > > Am 24.08.2017 um 00:07 schrieb PICCORO McKAY Lenz: > > > yes, i reading now with calm.. all you have right in part... > > > > Thank you! I did not want to offend you! Maybe

Re: [Gambas-user] Switching to GitLab

2017-08-24 Thread PICCORO McKAY Lenz
yes was Adrian, i mean.. he answered.. Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-08-24 10:27 GMT-04:00 Tobias Boege : > On Thu, 24 Aug 2017, PICCORO McKAY Lenz wrote: > > 2017-08-24 1:36 GMT-04:00 Christof Thalhofer : > > > > > Hello Piccoro, > > > > > > Am 24.08.2017 um

Re: [Gambas-user] gambas | New gb.db.odbc patch. (!7)

2017-08-24 Thread PICCORO McKAY Lenz
must follow a naming format.. all the branches.. it the best practice! 2017-08-24 12:15 GMT-04:00 zxMarce : > Regarding naming the branch, Benoît, I concur. Names must differ. I think > having the ODBC branch apart will be best so I don kill anything by mistake > (same as before with SF). > > Wha

[Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread herberth guzman
Hi Benoit, how are you..? I have a question, I'm lost Lol I need a hint on how to delete duplicate items in a array I have the following function (I send you the code) And if he works Example For Each sDir In ["/usr/share/themes/", Desktop.DataDir &/ "themes/"] For Each sNames In RDir(sDir,

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread Gianluigi
I don't know if this can help you. https://gambas-playground.proko.eu/?gist=c6e63a84d209911a2b3ff50d2b46a368 Regards Gianluigi 2017-08-24 22:39 GMT+02:00 herberth guzman : > Hi Benoit, how are you..? > > I have a question, I'm lost > Lol > > I need a hint on how to delete duplicate items in a arr

Re: [Gambas-user] CRYPT function - a little help please?

2017-08-24 Thread mikeB
eGreetings, I THINK I understand that the "Crypt" function is used to encrypt a password that can be checked by challenging user input (asking to input the password). Verifies plain text against encrypted data - It can NOT be decrypted. ?1 = where does this encrypted file (or string) exist af

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread PICCORO McKAY Lenz
thanks gianluigi.. i'm search for same function.. Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-08-24 18:04 GMT-04:00 Gianluigi : > I don't know if this can help you. > https://gambas-playground.proko.eu/?gist=c6e63a84d209911a2b3ff50d2b46a368 > Regards > Gianluigi > > 2017-0

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread PICCORO McKAY Lenz
hey herbert, made it .. only return the local theme: the hint: https://gambas-playground.proko.eu/?gist=c6e63a84d209911a2b3ff50d2b46a368 Dim sA As String Dim i, e As Integer Dim ssA As String[] = ["usr/share/Lopez", "Anderson", "Clark", "Wright", "Mitchell", "Johnson", "Thomas", "Rodriguez"]

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread PICCORO McKAY Lenz
sorry, changed: If InStr(ssB[i],sA,1,gb.Ignorecase) > 0 Then ssA.Remove(e) ssC.Push(ssB[i]) ssB.Remove(i) Break Endif now done, only return the local theme for user.. not for system theme Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2

Re: [Gambas-user] CRYPT function - a little help please?

2017-08-24 Thread Tony Morehen
Dim userid As String Dim encrypted As String Dim cked As Boolean userid = "xcodex" encrypted = Crypt.md5(userid, "abcdefgh") cked = Crypt.Check(userid, encrypted) Print cked On 2017-08-24 06:14 PM, mikeB wrote: userid = "xcodex" Crypt.MD5(userid, "abcdefgh") cked = Crypt.Check(userid, "abcdefg

[Gambas-user] gambas playground only runs in docker?

2017-08-24 Thread PICCORO McKAY Lenz
https://gitlab.com/prokopyl/gambas-playground the playground seems only runs in docker.. before i try to runs at my own internal service for my job.. this its true? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com --

Re: [Gambas-user] CRYPT function - a little help please?

2017-08-24 Thread mikeB
A BIG Thanks to Tony for the quick and working example - this function is exactly what I needed. Not being able to decrypt it was a brilliant idea - who ever wrote it gets my vote. NOW - if anyone out there has a minute and knows - where does this encrypted file or string reside after it is c

Re: [Gambas-user] CRYPT function - a little help please?

2017-08-24 Thread PICCORO McKAY Lenz
2017-08-24 23:43 GMT-04:00 mikeB : > > this encrypted file or string reside after it is created? > its obviously you are afraid of security in your proyect.. its better takes more in how the project parse the information and not in how the project cryp the information > > As always - appr

Re: [Gambas-user] CRYPT function - a little help please?

2017-08-24 Thread Rolf-Werner Eilert
NOW - if anyone out there has a minute and knows - where does this encrypted file or string reside after it is created? Guess where strings reside, somewhere in memory, with a pointer to it... Depends on the interpreter. Why do you care? It's encrypted. If you care for security, the unen