Search found 1309 matches

by sir_mud
May 20, 2013 20:11
Forum: Community Discussion
Topic: QB64 has support for android...
Replies: 6
Views: 4632

Re: QB64 has support for android...

You can do native apps as well but the interface isn't as robust as the java api and (last i looked at it) is missing components
by sir_mud
May 01, 2013 6:41
Forum: Community Discussion
Topic: Need a little help testing my android framework
Replies: 13
Views: 4669

Re: Need a little help testing my android framework

Dr_D wrote:Never even tried to find gmail chat on mobile. It would be pretty sad, if they didn't include it though... and kinda weird?
It's Google Talk
by sir_mud
Apr 27, 2013 21:19
Forum: Community Discussion
Topic: Jafile, the Filehost (new version of the FreeFile service)
Replies: 24
Views: 9584

Re: Jafile, the Filehost (new version of the FreeFile servic

1000101 wrote:What's the server path to access my files on there? Everything I try I get a 404 error.
http://jafile.com/uploads/1000101/
by sir_mud
Apr 26, 2013 20:28
Forum: General
Topic: Help with Library Extended Module Player
Replies: 4
Views: 987

Re: Help with Library Extended Module Player

I looked at the c header and it should pass through swig no problem although your download keeps getting corrupted for me. Does the player work for you?
by sir_mud
Apr 26, 2013 20:03
Forum: Documentation
Topic: Unable to edit GfxLib wiki page
Replies: 3
Views: 1608

Re: Unable to edit GfxLib wiki page

I can confirm it doesn't work for me either, it is getting a 404 error which is handled by the drupal installation. I tried using the non shortened version and it gives the same behaviour. I would check the logs to see the real error message.
by sir_mud
Apr 21, 2013 3:27
Forum: Beginners
Topic: Questions about the language
Replies: 8
Views: 1892

Re: Questions about the language

Thought so :) i did write some applications that managed to work with Savant web server awhile ago um how would i go with using that library since i can't find any documentation on any commands unless im not looking properly :) There isn't any documentation yet, but it shouldn't be too hard to figu...
by sir_mud
Apr 20, 2013 5:13
Forum: General
Topic: Squares
Replies: 8041
Views: 773192

Re: Squares

@Dodicat I got the treadmill, yeah, I smoke a cig every hour on the hour. 12 a day of non-filtered, roll your own, tobacco. I burned almost 100 calories jogging at 4 MPH , for a quarter mile, walking alone doesn't make you lose weight, unless your walking real fast or jogging. Nice cigarette progra...
by sir_mud
Apr 20, 2013 4:52
Forum: Game Dev
Topic: asteroids [ line version ]
Replies: 1
Views: 1203

Re: asteroids [ line version ]

Looks like a great start. When I break an asteroid it just disappears instead of breaking into smaller ones though. I would also recommend working on the code organization before it gets larger to make it easier to work on. I like to separate types/classes into their own file(s), it makes changing t...
by sir_mud
Apr 20, 2013 2:06
Forum: Beginners
Topic: Installing FreeBASIC and FBIde
Replies: 12
Views: 8028

Re: Installing FreeBASIC and FBIde

Windows Vista and up restrict writing to certain system folders like Program Files to help deflect some simple security issues. Simple resolution is copy any files you want to compile to a directory you can write to like C:\projects or your My Documents folder.
by sir_mud
Apr 20, 2013 0:35
Forum: General
Topic: Extended lib xml file problem
Replies: 4
Views: 1136

Re: Extended lib xml file problem

Thank you for waiting bojan.dosen. I have determined that there actually is not an error per-se, just the result is not documented. The code point is actually encoded as UTF-8. You can convert a string to wstring using the wstr function, however I am not sure if it will convert the UTF-8 to the plat...
by sir_mud
Apr 19, 2013 0:59
Forum: Beginners
Topic: Questions about the language
Replies: 8
Views: 1892

Re: Questions about the language

Q3: Can i use Free basic for CGI applications or web server applications Yes it can, I have used freebasic executables with Apache successfully. There are bindings to the FastCGI library as well which can be used with Apache and other servers but works a bit different than say PHP. Of course since ...
by sir_mud
Apr 12, 2013 19:33
Forum: General
Topic: (SOLVED) Ways - How erase variable created via VAR command ?
Replies: 10
Views: 2591

Re: Ways - How erase variable created via VAR command ?

The var is created in the local scope, so it will be destroyed when the scope exits. You can be explicit with that by using the scope...end scope block as you stated. If you need different behavior you can always create and destroy it yourself, but it takes a bit more management. var x = new integer...
by sir_mud
Apr 11, 2013 5:24
Forum: General
Topic: Extended lib xml file problem
Replies: 4
Views: 1136

Re: Extended lib xml file problem

The unicode portion of the xml module is rather hackish looking to me. I know it only supports a common subset of what is actually required by the standard. I'm looking into proper handling. I've filed this as Issue 26: https://code.google.com/p/fb-extended-lib/issues/detail?id=26 If you have a goog...
by sir_mud
Mar 23, 2013 23:08
Forum: Libraries & Headers
Topic: Extended Library 0.3.2 Dev Release
Replies: 4
Views: 1847

Re: Extended Library 0.3.2 Dev Release

BitArray A lot more functions could be defined. Functions to toggle whole ranges of bits or clear/set ranges, functions to obtain the difference and the union of bitsets etc... A possible interface can be found here http://lucene.apache.org/core/old_versioned_docs/versions/3_0_2/api/core/org/apache...
by sir_mud
Mar 19, 2013 0:58
Forum: Libraries & Headers
Topic: Extended Library 0.3.2 Dev Release
Replies: 4
Views: 1847

Re: Extended Library 0.3.2 Dev Release

If anyone that has downloaded is able to update from the Mercurial source then there have been a few bugs squashed. Notably the graphics module was mid-conversion to use new image class and is now complete (and fixes loading issues). Also the JSON module now will parse a json document consisting of ...