World: r4wp
[#Red] Red language group
older newer | first last |
Kaj 27-Dec-2012 [4986] | Console binary updated |
Kaj 28-Dec-2012 [4987] | Console binary updated with the added conditionals |
Pekr 28-Dec-2012 [4988] | it almost seems, like you have to reimplement all the Red functionality for console? |
Kaj 28-Dec-2012 [4989x2] | Nah, just another wrapper over the existing runtime |
I think the interpreter added less than 10 KB to the binary | |
DocKimbel 28-Dec-2012 [4991x2] | Pekr: just the natives that are processed as keywords by the compiler and that don't needed a runtime counterpart until now. Anyway, as you can see from the commits, it's just a thin layer. |
didn't need | |
Kaj 28-Dec-2012 [4993] | Console binary updated with the added loops |
DocKimbel 28-Dec-2012 [4994x2] | Thanks Kaj. |
Kaj: congrats on the first binding made available to Red! :-) I've noticed in %examples/do-sql.red the comment for #include: "FIXME: #252". Actually, #252 is for Red/System, Red implements its own #include which behaves differently than the Red/System version. I've tried to make it more intuitive, but it still needs some adjustments, so feel free to open new tickets about that (with simple concrete test cases I can reproduce). Also keep in mind that #include at Red level is intended to be a temporary feature until we get DO, LOAD and READ working with files. I would like an include system that could work both for the interpreter and compiler without having to change any code. I'm not sure this is achievable, so in worst case, we'll keep #include as fall-back. | |
Kaj 28-Dec-2012 [4996] | Yeah, there's a question mark behind it because I wasn't sure it's the same issue, but #252 is the closest |
Jerry 28-Dec-2012 [4997] | I think SQLite-binging was misplaced in "Red/System contributions" Section in Red-lang.org. It's Red not Red/System. ... Good to know that SQLite Binding is done. Thanks. Kaj. |
Kaj 28-Dec-2012 [4998x2] | Until ten minutes ago it was a Red/System binding. :-) Now it's both a Red/System and a Red binding, built on top of the Red/System one |
The same will happen with my other bindings | |
Janko 28-Dec-2012 [5000x2] | wowo! for the console interpreter and bindings!! awesome |
I sent 70eur in from 14.Dec to now (for NickA or Gregg deals / btw thanks for that). | |
DocKimbel 28-Dec-2012 [5002] | Janko: thanks for your donations! |
Kaj 29-Dec-2012 [5003x3] | Shouldn't block/rs-head and rs-tail have a /local s ? |
Same for string. Perhaps it comes out of string/rs-length? which doesn't have s | |
block/copy seems to need /local s too | |
DocKimbel 29-Dec-2012 [5006] | Yep, copy/paste bug. |
Kaj 29-Dec-2012 [5007x2] | I've implemented the first string marshalling in the SQLite binding, of the version identifiers |
version: routine [ ; Return SQLite version. ; return: [string!] /local version ][ version: sqlite/version SET_RETURN ((string/load version length? version)) ] | |
DocKimbel 29-Dec-2012 [5009] | You should wait for me to add the marshalling and unmarshalling functions (that will be used everywhere Red needs to interface with non-Red code). In your code example, it should be: 1 + length? version (as it needs to account for terminal NUL character). Also, you need to get sure that the source c-string! buffer is always available or make a copy of it (a pointer to it is stored as a UTF-8 cache, unused yet, but intended for speeding up I/O, still experimental, not sure it will stay for v1.0). |
Kaj 29-Dec-2012 [5010] | I was wondering about those things. There's not much I can do then to make working bindings currently |
DocKimbel 29-Dec-2012 [5011] | I'll try to speed things up. |
Kaj 29-Dec-2012 [5012] | Don't tremble apart when passing the sound barrier ;-) |
DocKimbel 29-Dec-2012 [5013] | :-)) |
Kaj 30-Dec-2012 [5014] | I adapted the console to work on POSIX platforms with the ReadLine library, but due to bugs in ROUTINE it's currently impossible to keep it integrated with the Windows version |
Marco 30-Dec-2012 [5015] | Since Red compiles to Red/system, how can I get the red/system source result? Red is simpler to use but sometimes we want speed so why not let red compile to r/s and then use that source to make a routine! or as a stand-alone program? |
Kaj 30-Dec-2012 [5016] | You can use the -v options to the compiler, but you'll probably be disappointed. What Red generates is completely integrated with its runtime, not something you would use standalone or even hack |
DocKimbel 30-Dec-2012 [5017x3] | Marco: it's explained in the README file there: https://github.com/dockimbel/Red |
Red compiles to generic Red/System code, there's no optimizer yet. Routines allow you to hand-optimize Red/System code and use system programming features not available at Red level. | |
Kaj: have you reported those routine bugs somewhere? | |
Marco 30-Dec-2012 [5020] | About antivirus false positves (VERY annoing): Red exes give alerts while r/s ones not (at least not the demos), isn't it a bit strange? |
Kaj 30-Dec-2012 [5021] | I'll get around to reporting some issues later tonight |
DocKimbel 30-Dec-2012 [5022] | Marco: some antivirus have too aggressive heuristics, there's not much we can do for that. From time to time, I send some reports to AV vendors for notifying the false positive, most of the time, they take it into account. Doing a quick test on virustotal using the latest console exe, it seems that my reports have been successfully processed, I don't have the old virus reported anymore (except with Panda): https://www.virustotal.com/file/a8c189ed790fd1d5bce2d86878e85445c21880dafb4220605df4ef2e4d4f4ce5/analysis/1356894544/ What AV are you using? |
Marco 30-Dec-2012 [5023] | Avira Free Antivirus |
DocKimbel 30-Dec-2012 [5024] | I recommend you to switch to MSE (Microsoft's one), it integrates better with Windows and has no annoying ads and is totally free (I was an Avira user for long time before trying MSE). |
Marco 30-Dec-2012 [5025] | But why r/s exes do not give alerts? |
DocKimbel 30-Dec-2012 [5026] | You should ask that to the Avira developers. The heuristic routines they use might not be very stable and could be easier triggered by byte patterns produced by Red than byte patterns from hand-written Red/System programs. |
Kaj 1-Jan-2013 [5027] | Since string/load-in caches the source string when under 64 bytes, should console/input not refrain from free'ing BUFFER? |
Marco 1-Jan-2013 [5028] | About false positives: the console.exe does not give an alert, so I copy/pasted the first lines of console.red to demo.red and it did not give an alert... |
DocKimbel 1-Jan-2013 [5029] | Kaj: right, the `free` call here is unsafe. Actually both allocate/free calls in input were just meant for temporary use. The whole current console code is temporary, it will need to be replaced by a proper cross-platform full-featured console. |
NickA 1-Jan-2013 [5030] | 'm offering a matching funds drive to for Kaj and Esper Consultancy's work on Red. I'll match funds donated to them by January 31, 2013, up to a total of $200. If you're interested in Red, please help them devote some additional time and effort to this project. |
DocKimbel 2-Jan-2013 [5031] | Fast forwarding Red history: http://www.red-lang.org/2013/01/fast-forwarding-red-history.html |
Kaj 2-Jan-2013 [5032] | Cool :-) |
Arnold 2-Jan-2013 [5033] | Very good vid even without a fitting musical distraction! Today I watched a tutorial for the AVR Dragon, a kind of arduino thing, when I heard in that video the programming environment was a download of about 500MB and needed the .NET framework I stopped it and realised that would be about 5000 times bigger than the programmable memory of that board. That is why the world needs Red :) |
DocKimbel 2-Jan-2013 [5034] | If someone wants to add music, he can make a new video using gource and add appropriate music, I hadn't the time to also work on the audio part. :-) |
GrahamC 2-Jan-2013 [5035] | amazing! |
older newer | first last |