Search found 1310 matches
- Mar 02, 2025 23:24
- Forum: Projects
- Topic: Announcing FBEjson 1.0.0
- Replies: 1
- Views: 896
Announcing FBEjson 1.0.0
Hello friends, I'm not dead yet! Project Page: https://github.com/mudhairless/fbejson This was originally a module of the FreeBASIC Extended Library but has been extracted to allow maximum usage without the extra features the Extended Library was attempting to support like generics. What's Included:...
- Oct 22, 2014 2:24
- Forum: Community Discussion
- Topic: Extended Library 0.5.0 is out!
- Replies: 13
- Views: 9658
Re: Extended Library 0.5.0 is out!
I'm gonna take a look this weekend and try to get everything working with 1.0. I've been pretty busy lately, with work, family and making a game with dr_d. I've had a chance to briefly look over the changelog and it looks like it should be fairly easy to get it going again. I also have a standalone ...
- Mar 21, 2014 15:57
- Forum: Community Discussion
- Topic: Extended Library 0.5.0 is out!
- Replies: 13
- Views: 9658
Re: Extended Library 0.5.0 is out!
libext-z-win32.a is just a statically compiled zlib for windows, it is used by default unless you define the option FBEXT_USE_ZLIB_DLL, again you would need to have ext's bin dir in the compiler search path (with -p) or put bin/*.a in fb's lib dir. As for the linking error, the issue there is with ....
- Mar 19, 2014 1:20
- Forum: Community Discussion
- Topic: Extended Library 0.5.0 is out!
- Replies: 13
- Views: 9658
Re: Extended Library 0.5.0 is out!
All third-party libraries are in the bin directory. I think there may have been an issue with library linking that has been fixed in master.
- Feb 08, 2014 17:27
- Forum: Community Discussion
- Topic: Until the html entities in code is resolved
- Replies: 5
- Views: 2530
Until the html entities in code is resolved
Here is a small program to decode all html entities found in a file. Tested with .24 and up, on windows compile then just drop a file on the exe, everywhere else just call the executable with the path to the file to fix.
https://gist.github.com/mudhairless/8887091
https://gist.github.com/mudhairless/8887091
- Feb 08, 2014 16:30
- Forum: Libraries Questions
- Topic: TTS to file??
- Replies: 8
- Views: 4185
Re: TTS to file??
( = left parentheses, ) = right parentheses, the issue is being sorted out.glove wrote:What's up with the #40; and the #41; being inserted in this code. It makes the code unusable. What's going on?
- Feb 08, 2014 16:26
- Forum: Linux
- Topic: freebasic.lang for gedit?
- Replies: 7
- Views: 4811
Re: freebasic.lang for gedit?
I made one a while ago (without checking whether one already existed), just uploaded here: https://gist.github.com/dkl/8852322 I would have sent it upstream, but I couldn't get the preprocessor directive highlighting to work even though I was 100% sure to have used the same code as done in the lang...
- Feb 06, 2014 20:28
- Forum: Community Discussion
- Topic: [solved] If XP updates ends ?
- Replies: 5
- Views: 2022
Re: [solved] If XP updates ends ?
Windows update itself will still work for XP for the forseeable future, there just won't be new updates. This is how it worked for 98/2000 so I don't see why they would change it. If you know the KB numbers for the updates you can download them manually direct from microsoft.
- Jan 30, 2014 18:10
- Forum: Community Discussion
- Topic: fbc-ng
- Replies: 10
- Views: 3990
Re: fbc-ng
Join me on IRC http://ext.freebasic.net/page/supportchrowle wrote:I would consider joining the project, if you made it support Linux.
EDIT: Never mind, seems to be compiling fine. How do I join?
- Jan 27, 2014 17:56
- Forum: Linux
- Topic: curses/ncurses
- Replies: 50
- Views: 22806
Re: curses/ncurses
I'm investigating.skystrick wrote:Any progress on this?
- Jan 27, 2014 17:48
- Forum: General
- Topic: <Shift>+<Tab> not working?
- Replies: 17
- Views: 5560
Re: <Shift>+<Tab> not working?
Shift tab seems to be handled by the terminal emulator here, multikey works properly though: #include once "fbgfx.bi" while not multikey(fb.SC_ESCAPE) var x = inkey() if len(x) > 0 then for n as integer = 0 to len(x)-1 if x[n] = 0 then print n & ": NULL" else print n & &q...
- Jan 24, 2014 21:55
- Forum: Beginners
- Topic: zoom very slow(Solved)
- Replies: 13
- Views: 3886
Re: zoom very slow
PSET has a fair bit of overhead and should be avoided in tight loops, search these forums for fast pset and you'll come up with a good option.
- Jan 24, 2014 21:53
- Forum: Beginners
- Topic: Screen and console
- Replies: 5
- Views: 2867
Re: Screen and console
Window's default console font is not pretty, but you can click the icon to get a menu and change it.AnotherLife wrote:But it doesn't look as cool as it did before, got to fix that hehe.
- Jan 24, 2014 19:49
- Forum: Beginners
- Topic: Screen and console
- Replies: 5
- Views: 2867
Re: Screen and console
If you're only doing text you don't have to use the screen statement, then you can resize your console and scrollback to your heart's content.
- Jan 23, 2014 18:31
- Forum: Linux
- Topic: Linux Notepad
- Replies: 15
- Views: 6199
Re: Linux Notepad
Looks like i missed the end quotes on the Linux and DOS tracks there, that would explain the error. With xdg-open you can check it's return value and try a different command automatically, man xdg-open will show you the possible values it will return, mine seems to exclude 0 which would mean no error.