Re: [fpc-pascal] fpweb fastcgi hello world example?

2011-07-27 Thread Joseph Montanez
startup file. On Wed, Jul 27, 2011 at 1:58 AM, wrote: > > > On Wed, 27 Jul 2011, Joseph Montanez wrote: > >> I am struggling to get a simple hello world with fpweb with fastcgi >> with some luck but I cant seem to get any good output. I have the >> source code pos

[fpc-pascal] fpweb fastcgi hello world example?

2011-07-27 Thread Joseph Montanez
else have some sort of example I could work off? -- Joseph Montanez Web Developer Gorilla3D Design, Develop, Deploy ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] TFPDataHashTable

2011-06-10 Thread Joseph Montanez
27;test', @Test); { <-- Crashes here because its not initialised? } writeln('Hello!'); node := HTable.find('test'); writeln(node.Key); end. -- Joseph Montanez Web Developer Gorilla3D Design, Develop, Deploy ___ fpc-pascal mailli

Re: [fpc-pascal] State of FPC docs.rant

2010-04-26 Thread Joseph Montanez
; > So it is!  I hadn't noticed that.  The FPC wiki used only to have links to > the pdfs, IIRC. >> >> Regards, >>   - Graeme - >> > cheers, > John > > ___ > fpc-pascal maillist  -  fpc-pas...@lists.freepascal.org

Re: [fpc-pascal] State of FPC docs.rant

2010-04-25 Thread Joseph Montanez
ot; of FPDoc, but their others are a greater example more of a walk through. Code examples are the most important but there is a LOT more that make documentation great. So the last thing you want is a tall wall in front before you can even help out. -- Joseph Montanez Web Developer Gorilla3D Design,

Re: [fpc-pascal] State of FPC docs.rant

2010-04-25 Thread Joseph Montanez
___ > fpc-pascal maillist  -  fpc-pas...@lists.freepascal.org > http://lists.freepascal.org/mailman/listinfo/fpc-pascal > -- Joseph Montanez Web Developer Gorilla3D Design, Develop, Deploy ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] State of FPC docs.rant

2010-04-22 Thread Joseph Montanez
this is lack luster. Seems like the FPC team is trying to centralize everything on their ends but doesn't have the resources. Although this is a big rant on my part I will be more then happy to help with anything. On Thu, Apr 22, 2010 at 2:52 PM, Vincent Snijders wrote: > Joseph Mon

[fpc-pascal] State of FPC docs.rant

2010-04-22 Thread Joseph Montanez
ntire scheme of things. In the end I think automated documentation is bad, and thats really what I see with the current state of FPC docs. It might allow better ability to stay sync with the current release but not allowing _easy_ social interaction to expand those docs, I think it is a big mistak

Re: [fpc-pascal] fpGUI Toolkit v0.7-rc1 for FPC 2.4

2010-03-09 Thread Joseph Montanez
ore fpGUI library. > * A lot of new example projects demoing various GUI components. > > > > > Regards, >  - Graeme - > > -- > fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal > http://opensoft.homeip.net/fpgui/ > >

Re: [fpc-pascal] Disposing pointers and memory leaks

2009-03-29 Thread Joseph Montanez
Paul, No wonder i had memory that kept growning. Thank you soo much! On Sun, Mar 29, 2009 at 2:14 AM, Paul Ishenin wrote: > Joseph Montanez wrote: >> >>      New(Cursor); >> > > You allocated memory for Cursor >> >>      Cursor := DrawPixel(Screen, X,

[fpc-pascal] Disposing pointers and memory leaks

2009-03-29 Thread Joseph Montanez
Im struggling to get into memory management and im having issues. New(Cursor); WriteLn('New Cursor'); Cursor := DrawPixel(Screen, X, Y, 253, 253, 253); WriteLn('Assign Cursor'); SDL_Flip(Screen); WriteLn('Render Cursor'); {It dies here were did cursor go?}

[fpc-pascal] Incompatible types: got "Extended" expected "SmallInt"

2009-03-26 Thread Joseph Montanez
Im not sure why its giving me this error, as its pointing right at the plus signs G3DPrimatives.pas(34,43) Error: Incompatible types: got "Extended" expected "SmallInt" G3DPrimatives.pas(36,43) Error: Incompatible types: got "Extended" expected "SmallInt" 2 : Index := Y * Surface^.pitch / 2

[fpc-pascal] Compiling for OS X PPC / Linux

2009-03-23 Thread Joseph Montanez
Im on an intel mac, do I need to do anything to compile my mac app i386 for powerpcs? I was looking at targets in fpc and I didn't notice an option for anything darwin / os x / powerpc. Atleast from the help menu, Also I was wondering what I need to do to compile for linux target. When I do the -T

Re: [fpc-pascal] Mac OS X SDL without gcc or XCode

2009-03-21 Thread Joseph Montanez
I am also using sdl via macports but when I run an sdl demo, i get: "2009-03-21 16:25:08.178 test[694:10b] Warning once: This application, or a library it uses, is using NSQuickDrawView, which has been deprecated. Apps should cease use of QuickDraw and move to Quartz." Am i doing something wrong?

Re: [fpc-pascal] Message Boards or Mailing List?

2009-01-03 Thread Joseph Montanez
Given that the message board is even running right now is a fluke. I'd prefer the mailing list, always up and fast responses. On Sat, Jan 3, 2009 at 4:20 PM, Jeremy Cowgar wrote: > I am curious what is the best way to get help with Free Pascal? Seems there > are two competing methods, the mailin

Re: [fpc-pascal] A Docs Unit?

2008-12-27 Thread Joseph Montanez
On Sat, Dec 27, 2008 at 12:30 PM, Marco van de Voort wrote: > > If sb really wants in-source docs, he can search for "pasdoc". Marco thanks, that is what I was looking for. I come from python, php, and java so commenting API within source is what I'm accustomed to. __

[fpc-pascal] A Docs Unit?

2008-12-27 Thread Joseph Montanez
Is there a unit for documentation in Pascal? The only documenter I know is Natural Docs, which is not a pascal unit but something I use across multiple languages. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mail

[fpc-pascal] Initializing Arrays?

2008-12-24 Thread Joseph Montanez
I've already read that its not built into pascal but how do I get around this? If I have: contacts : array [1 .. 256] of JSMContact; the only way to initialize it is? with contacts[1] do begin Name := ''; PhoneNo := ''; end; Also if I am passing a var to a procedure