Re: [Gambas-user] Gambas migration to github (or something else?)

2015-05-30 Thread Benoît Minisini
Le 30/05/2015 21:42, Adrien Prokopowicz a écrit :
 Le Sat, 30 May 2015 20:23:17 +0200, Benoît Minisini
 gam...@users.sourceforge.net a écrit:

 Hi,

 I'm currently testing the SVN import feature of github for Gambas.

 The plan is to migrate from subversion to something else, that else
 having to provide git (or svn) and a bug tracker.

 The main reason is the Gimp sourceforge case.

 If anyone has a problem against using git instead of subversion, please
 tell. I don't know how to use git yes, and I think it will be better and
 faster.

 I don't know if I can import Google issues into github with the Google
 code export, I will check.

 And at the moment, GitHub tells me that 87% of the repository is
 imported, while sending me a mail telling that the import has failed at
 the same time... Weird!

 Regards,


 I have used Github (and therefore Git) for both school and personal
 projects for quite some time, so personally I have no problem with Gambas
 switching to it.

 However, Github does not provide website hosting nor mailing-list features,
 so will these stay on SourceForge ?

 Also, I haven't found any Gambas organization, do you plan to make one
 before importing the repository ?

 Regards,


I just created a personal account to check svn import.

-- 
Benoît Minisini

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas migration to github (or something else?)

2015-05-30 Thread Adrien Prokopowicz
Le Sat, 30 May 2015 20:23:17 +0200, Benoît Minisini  
gam...@users.sourceforge.net a écrit:

 Hi,

 I'm currently testing the SVN import feature of github for Gambas.

 The plan is to migrate from subversion to something else, that else
 having to provide git (or svn) and a bug tracker.

 The main reason is the Gimp sourceforge case.

 If anyone has a problem against using git instead of subversion, please
 tell. I don't know how to use git yes, and I think it will be better and
 faster.

 I don't know if I can import Google issues into github with the Google
 code export, I will check.

 And at the moment, GitHub tells me that 87% of the repository is
 imported, while sending me a mail telling that the import has failed at
 the same time... Weird!

 Regards,


I have used Github (and therefore Git) for both school and personal
projects for quite some time, so personally I have no problem with Gambas
switching to it.

However, Github does not provide website hosting nor mailing-list features,
so will these stay on SourceForge ?

Also, I haven't found any Gambas organization, do you plan to make one
before importing the repository ?

Regards,
-- 
Adrien Prokopowicz

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread tsukuba GIMP user
i want when i click button (button_1) LCDpanl(LCDLabel1) will be Generation 12 
random letters
how to do??
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Ru Vuott
Hello,

I propose:


Public Sub Button1_Click()

  Dim j As Byte
  Dim s As String
  
  For j = 1 To 12
If Fix(Rnd(0, 2)) Then
  s = Chr(Rnd(48, 58))
Else
  s = Chr(Rnd(65, 91))
Endif
  Next

  Print s

End



Sab 30/5/15, tsukuba GIMP user tsukubagradua...@foxmail.com ha scritto:

 Oggetto: [Gambas-user] how to generation 12 random letters (A-Z and 0-9)
 A: gambas-user gambas-user@lists.sourceforge.net
 Data: Sabato 30 maggio 2015, 11:16
 
 i want when i click button (button_1)
 LCDpanl(LCDLabel1) will be Generation 12 random letters
 how to do?
 --
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user
 

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] ERROR Segmentation fault (core dumped)

2015-05-30 Thread Jørn Erik Mørne
Hmm only difference is I have 64-bit. Any recently added dependencies?

Den 30. mai 2015 00:34, skrev Benoît Minisini:
 Le 29/05/2015 21:45, Jørn Erik Mørne a écrit :
 I have it installed though

 So I have compiled and installed the latest trunk on a Mint 17.1 64 bits
 and on a ArchLinux 32 bits: everything works as expected, no crash at
 all... Strange!



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Jussi Lahtinen
You can write that in nicer way with rand() function, than rnd() function.
But that doesn't really matter, your code works anyway.


Jussi

On Sat, May 30, 2015 at 3:12 PM, Ru Vuott vu...@yahoo.it wrote:

 Hello,

 I propose:


 Public Sub Button1_Click()

   Dim j As Byte
   Dim s As String

   For j = 1 To 12
 If Fix(Rnd(0, 2)) Then
   s = Chr(Rnd(48, 58))
 Else
   s = Chr(Rnd(65, 91))
 Endif
   Next

   Print s

 End


 
 Sab 30/5/15, tsukuba GIMP user tsukubagradua...@foxmail.com ha scritto:

  Oggetto: [Gambas-user] how to generation 12 random letters (A-Z and 0-9)
  A: gambas-user gambas-user@lists.sourceforge.net
  Data: Sabato 30 maggio 2015, 11:16

  i want when i click button (button_1)
  LCDpanl(LCDLabel1) will be Generation 12 random letters
  how to do?

  
 --
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user



 --
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user