Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~692 People Reached
About Me

Programmer for three decades. Author of "8th" cross-platform language (8th-dev.com)

Interests
too many to list here ...
Favorite Tags
Member Avatar for CodeWarrior14

I need to allocate memory to a pointer variable passed by parameter. #include <stdio.h> #include <stdlib.h> typedef int* PTR_VALUE; int initialize(PTR_VALUE value_array) { value_array = (PTR_VALUE)malloc(sizeof(PTR_VALUE) * 94); return 0; } int main() { PTR_VALUE pValue; initialize(*pValue); printf("%d", pValue); gets(""); return 0; } but I get an error when I …

Member Avatar for CodeWarrior14
0
220
Member Avatar for Ron_2

Does anyone have experience adapting the "JUCE" TextEditor (or similar) for RTL languages? We are working on our own version of it for 8th (8th-dev.com) but it is pretty slow going. Ideally we would like to handle Hebrew and/or Arabic text mixed with "LTR" languages.

0
70
Member Avatar for Ron_2

I recently posted a code sample to rosettacode on the "8th" section there, for the '24 game'. The code is also present as well as some discussion on the 8th forum, here: http://8th-dev.com/forum/index.php/topic,294.0.html It shows some interesting techniques that are 8th-specific, like restricting the user's access to the underlying interpreter …

0
183
Member Avatar for EYALSE

I have windows 7. I know C# and web services (HTML, CSS, JS, ASPX). I want to develop mobile apps with my skills for iOS (the most important option) and android. I'm looking for a studio platform that I could develop there with my skills, something that I can build …

Member Avatar for Ron_2
0
217