Re: [racket-users] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2016-02-03 Thread Mark Lee

To All,

This message has been chronically sent to the mailing list. Can we 
classify it as spam and unrelated to the Racket Language?


Regards,
Mark

On Wed, Feb 3, 2016 at 3:17 PM, Kasem A  wrote:




YouTube videos of

 U.S. Congress money laundering hearing

of

Saudi Billionaire  " Maan  Al sanea"
 with bank of America

and  The  owner of Saad Hospital and  Schools
 in the Eastern Province in Saudi Arabia

and the Chairman of the Board of Directors of Awal Bank  in Bahrain


With Arabic Subtitles


موقع اليوتيوب الذي عرض جلسة استماع 
الكونجرس الأمريكي

 لمتابعة نشاطات غسل الأموال ونشاطات

السعودي معن عبدالواحد الصانع

مالك مستشفى  وشركة سعد  ومدارس سعد 
بالمنطقة الشرقية بالسعودية   ورئيس 
مجلس ادارة بنك اوال البحريني


مترجم باللغة العربية

http://www.youtube.com/watch?v=mIBNnQvhU8s












































































--
You received this message because you are subscribed to the Google 
Groups "Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, 
send an email to racket-users+unsubscr...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [racket-users] Strange behavior when writing to a file

2015-06-03 Thread Mark Lee
On Tuesday, June 02, 2015 04:47:33 PM Matthew Flatt wrote:
 I think you wanted `(and (=` in place of `(or (`.

That did it, thanks a lot!
Mistake on my part when I wrote it, the string-length check was added 
afterwords so I used an or statement instead of an and.

Regards,
Mark

-- 
You received this message because you are subscribed to the Google Groups 
Racket Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: This is a digitally signed message part.


[racket-users] Re: raco demod : 'cannot instantiate `racket/gui/base' a second time in the same process

2015-04-25 Thread Mark Lee
On Saturday, April 25, 2015 01:03:13 PM you wrote:
 On Saturday, April 25, 2015 01:39:54 AM you wrote:
  On Saturday, April 25, 2015 01:34:59 AM you wrote:
   To all,
   
   I have a project that I'm trying to compile to a single bytecode file
   via
   (raco demod). I compile a module .rkt file which requires several
   library
   module .rkt files. One of these module .rkt files is a windowing library
   that call on #lang racket/gui. (raco demod) manages to flatten and
   generate
   the bytecode but the bytecode fails to run with (racket). This is the
   error
   I get from (raco decompile).
   -
   
   (#%apply-values
   
_print-values4927
(if (_scheme_register_process_global10921

 'GRacket-support-initialized
 (_cast8910 '1 _scheme _pointer))
  
  (error
  
   'cannot instantiate `racket/gui/base' a second time in the same
   
   process)
   
  '#void))
   
   -
   The program runs fine when I compile it with (raco make) and (raco exe).
   In
   addition, the windowing library is only required once. What could be
   causing this error?
   
   Regards,
   Mark
  
  This error also repeats if I just (raco demod) the windowing library
  itself.
  
  Regards,
  Mark
 
 I tried a simple sample of GUI code and I get the same error:
 
 -
 #lang racket/gui
 
 (let ([window (new frame% [label Test Window]
   [stretchable-width #t]
   [stretchable-height #t])])
   (new message% [label testing]
 [stretchable-height #t]
 [stretchable-width #t]
 [parent window])
   (send window show #t))
 --
 
 Regards,
 Mark

I tried a hello world program without calling any windowing but using #lang 
racket/gui. It seems the issue lies with raco demod and #lang racket/gui.

---
#lang racket/gui

(displayln Hello World)
---

Regards,
Mark

-- 
You received this message because you are subscribed to the Google Groups 
Racket Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: This is a digitally signed message part.


[racket-users] Re: raco demod : 'cannot instantiate `racket/gui/base' a second time in the same process

2015-04-25 Thread Mark Lee
On Saturday, April 25, 2015 01:39:54 AM you wrote:
 On Saturday, April 25, 2015 01:34:59 AM you wrote:
  To all,
  
  I have a project that I'm trying to compile to a single bytecode file via
  (raco demod). I compile a module .rkt file which requires several library
  module .rkt files. One of these module .rkt files is a windowing library
  that call on #lang racket/gui. (raco demod) manages to flatten and
  generate
  the bytecode but the bytecode fails to run with (racket). This is the
  error
  I get from (raco decompile).
  -
  
  (#%apply-values
  
   _print-values4927
   (if (_scheme_register_process_global10921
   
'GRacket-support-initialized
(_cast8910 '1 _scheme _pointer))
 
 (error
 
  'cannot instantiate `racket/gui/base' a second time in the same
  
  process)
  
 '#void))
  
  -
  The program runs fine when I compile it with (raco make) and (raco exe).
  In
  addition, the windowing library is only required once. What could be
  causing this error?
  
  Regards,
  Mark
 
 This error also repeats if I just (raco demod) the windowing library itself.
 
 Regards,
 Mark

I tried a simple sample of GUI code and I get the same error:

-
#lang racket/gui

(let ([window (new frame% [label Test Window]
  [stretchable-width #t]
  [stretchable-height #t])])
  (new message% [label testing]
[stretchable-height #t]
[stretchable-width #t]
[parent window])
  (send window show #t))
--

Regards,
Mark

-- 
You received this message because you are subscribed to the Google Groups 
Racket Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: This is a digitally signed message part.