Re: [fpc-pascal] download mirror is missing

2017-05-24 Thread Marco van de Voort
In our previous episode, Mattias Gaertner said: > > https://www.freepascal.org/down/x86_64/linux-netherlands.var > > 550 /pub/fpc/dist/3.0.2/x86_64-linux Not missing, but wrong url. The dutch ftp mirror is of the form: ftp://freepascal.stack.nl/pub/mirrors/fpc/ The dutch mirror shows the

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Graeme Geldenhuys
On 2017-05-24 18:36, Marcos Douglas B. Santos wrote: I've searched the code and don't know whether that I found is the official or the more updated repository. So, I found this http://www.indyproject.org/Sockets/Download/svn.EN.aspx If I understood right, the good version to use with FPC is 10.

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Marcos Douglas B. Santos
On Wed, May 24, 2017 at 11:07 AM, Graeme Geldenhuys wrote: > n 2017-05-24 14:52, Marcos Douglas B. Santos wrote: >> >> What do you propose to use to make an embedded HTTP server nowadays? > > > I really like Indy components. They are complete and well tested for

Re: [fpc-pascal] FPC Graphics options?

2017-05-24 Thread Martin Schreiber
On Saturday 20 May 2017 21:34:34 Jonas Maebe wrote: > > Also in summary, very little was learned from this. We have known for a > long time that FPC needs SSA for better code generation for loops (and > Florian has been working on it for a long time too). > Here for comparison the results of FPC /

Re: [fpc-pascal] OpenGL and SDL frustrations

2017-05-24 Thread Ryan Joseph
> On May 24, 2017, at 7:18 PM, Graeme Geldenhuys > wrote: > >> Any ideas on what’s wrong with this? > Ok, I got an answer from a person on YouTube and figured this out. The problem was 1) that SDL is returning a different version then I asked for and I didn’t

Re: [fpc-pascal] FPC Graphics options?

2017-05-24 Thread Nikolay Nikolov
On 05/24/2017 06:14 PM, James Richters wrote: I was finally able to get this working, and now my keyboard issues are solved, so thank for the help and fix Nikolay! I can't believe the performance increase using ptcgraph instead of graph, I am now even able to run my program on a tiny

Re: [fpc-pascal] FPC Graphics options?

2017-05-24 Thread James Richters
I was finally able to get this working, and now my keyboard issues are solved, so thank for the help and fix Nikolay! I can't believe the performance increase using ptcgraph instead of graph, I am now even able to run my program on a tiny windows 10 tablet with no performance issues. Also

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Graeme Geldenhuys
On 2017-05-24 14:52, Marcos Douglas B. Santos wrote: What do you propose to use to make an embedded HTTP server nowadays? I really like Indy components. They are complete and well tested for over a decade. There support is fantastic too, and you have tons of resources available on the

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Marcos Douglas B. Santos
On Wed, May 24, 2017 at 10:40 AM, Graeme Geldenhuys wrote: > I've done this before in a project for one of my previous employers. Out > desktop application did user logins, reporting and for some functionality > offloaded it to the web browser (which was launched

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Graeme Geldenhuys
On 2017-05-24 10:01, Michael Van Canneyt wrote: 2. to make an app that will be a local web server, after the user has installed. The web real app could make requests to http//localhost and have a communication between them. I think this is your best option. I've done this before in a project

Re: [fpc-pascal] OpenGL and SDL frustrations

2017-05-24 Thread Graeme Geldenhuys
On 2017-05-24 04:13, Ryan Joseph wrote: Any ideas on what’s wrong with this? I actually used the Java + OpenGL tutorials on YouTube, and translating those examples to Object Pascal + OpenGL + SDL2 was pretty easy. This is my favourite one, and uses "modern OpenGL" only.

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Marcos Douglas B. Santos
On Tue, May 23, 2017 at 11:02 PM, wrote: > On 2017-05-23 20:52, Marcos Douglas B. Santos wrote: >> ... >> I'm still thinking on these options: >> >> 1. NativeMessaging: >> https://developer.chrome.com/extensions/nativeMessaging >> >> 2. to make an app that will be a local web

[fpc-pascal] download mirror is missing

2017-05-24 Thread Mattias Gaertner
Hi, https://www.freepascal.org/down/x86_64/linux-netherlands.var 550 /pub/fpc/dist/3.0.2/x86_64-linux Mattias ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Browser and exe

2017-05-24 Thread Michael Van Canneyt
On Tue, 23 May 2017, Marcos Douglas B. Santos wrote: 2. to make an app that will be a local web server, after the user has installed. The web real app could make requests to http//localhost and have a communication between them. I think this is your best option. Michael.