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
~726 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

4 Posted Topics

Member Avatar for CodeWarrior14

The problem is that you are passing a pointer by value and expecting to be able to change it. What you need to do is to pass a pointer to the int pointer: int initialize(PTR_VLAUE_ARRAY *value_array) { *value_array = (PTR_VLAUE_ARRAY)malloc(sizeof(int) * MAX_VALUE_ARRAY_SIZE); if (*value_array == NULL) return -1; return 0; …

Member Avatar for CodeWarrior14
0
233
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
72
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
192
Member Avatar for EYALSE

If you want to develop iOS or OS X applications, you have to have a Mac to do the final packaging on (either you or an agent of yours). If you use our "8th" development language (8th-dev.com), you can do all your dev work on Windows (or Mac or Linux), …

Member Avatar for Ron_2
0
227

The End.