- Together, let us create something the world desperately needs - 9 Updates
- Survey participants wanted regarding preprocessor usage - 1 Update
- Variables and references in Java - 2 Updates
Daniel <danielaparker@gmail.com>: Aug 07 04:27PM -0700 On Monday, August 7, 2017 at 1:01:05 PM UTC-4, Rick C. Hodgin wrote: > ... because once RDC is completed ... Aye, there's the rub. On the other hand, when you're willing to work for free, you can do anything that you want, there's that. Daniel |
"Chris M. Thomasson" <invalid@invalid.invalid>: Aug 07 09:58PM -0700 On 8/7/2017 4:27 PM, Daniel wrote: > Aye, there's the rub. > On the other hand, when you're willing to work for free, you can do anything > that you want, there's that. Afaict, working for Rick has to have some oddities. If you write the word "damn", well, you might get fired! |
"Rick C. Hodgin" <rick.c.hodgin@gmail.com>: Aug 08 04:54AM -0700 Daniel wrote: > ... when you're willing to work for free, you can do anything > that you want It isn't for free. It is for the Lord, and it carries with it a far greater responsibility than working for an Earthly company because by your choice to serve Him, you are representing Him. You will be under far greater scrutiny, intense examination, the subject of mocking, of ridicule and scorn, and the only reward you'll have comes from within, and when / if He chooses at some point to bless your endeavors unto Him. The reward comes in your service to Him, making Him the head of your life, and pursuing Him despite the world and the people of the world criticizing your every effort you've given over to Him, doing it all for Him. He fills you with peace, love, joy, and it endures, even when under ridicule and attacks. Our faith manifested into action is of great worth to the Lord, far more so than any Earthly gain. It is our focus on Him brought to bear for Him, even when under duress. Thank you, Rick C. Hodgin |
Daniel <danielaparker@gmail.com>: Aug 08 05:44AM -0700 On Tuesday, August 8, 2017 at 12:59:01 AM UTC-4, Chris M. Thomasson wrote: > Afaict, working for Rick has to have some oddities. If you write the > word "damn", well, you might get fired! Wait till Rick sees Flibble's variable names, in the code he contributes. Daniel |
"Öö Tiib" <ootiib@hot.ee>: Aug 08 05:48AM -0700 On Tuesday, 8 August 2017 15:44:58 UTC+3, Daniel wrote: > > Afaict, working for Rick has to have some oddities. If you write the > > word "damn", well, you might get fired! > Wait till Rick sees Flibble's variable names, in the code he contributes. If anything Flibble writes quite good code and uses reasonable names. |
"Rick C. Hodgin" <rick.c.hodgin@gmail.com>: Aug 08 08:48AM -0400 On 8/8/2017 8:44 AM, Daniel wrote: >> Afaict, working for Rick has to have some oddities. If you write the >> word "damn", well, you might get fired! > Wait till Rick sees Flibble's variable names, in the code he contributes. People are free to be as vulgar and profane as they wish. The warning from the Lord is that maintaining that state of rebellion against Him will result in their sin remaining on them, and judgment+condemnation coming to them at the end of their life. The message of the cross is a message of hope, salvation, love, peace between man and God. It is given to all people, but only those who are being saved will be able to hear it. The rest will rail on in whatever manner they feel is appropriate until they die, and then they will be cast into the lake of fire for all eternity. Jesus warns us about this in the Bible. Christians warn people about this in the world. Only those who are being saved will hear His message and be saved. The rest will perish in their sin. ----- The people who come forward and work on this project will not be doing it for me. They will be doing it for the Lord. They will be digging deep within their soul and pulling out the absolute best they have to offer, such that the thing we create unto Him is the best we can make it, and is not constrained by concerns over money, or time, or something else that would curtail our best effort. Thank you, Rick C. Hodgin |
"Rick C. Hodgin" <rick.c.hodgin@gmail.com>: Aug 08 08:52AM -0400 On 8/8/2017 8:48 AM, Öö Tiib wrote: >>> word "damn", well, you might get fired! >> Wait till Rick sees Flibble's variable names, in the code he contributes. > If anything Flibble writes quite good code and uses reasonable names. Agreed. The code I've seen from him has been excellent. His extreme use of profanity appears to be an attack against God and me, and not part of his life to the extent he makes it be here, so as to reach out to me being offensive unto me because I continue to bring the message of sin, judgment, condemnation, and of salvation and hope in Jesus Christ, because to receive that message on its merit means we are no longer in control of our lives, but we admit instead that we need the Lord. It's a bitter pill to swallow for many. Pride has and will keep many people out of Heaven. Thank you, Rick C. Hodgin |
Daniel <danielaparker@gmail.com>: Aug 08 05:52AM -0700 On Tuesday, August 8, 2017 at 8:48:55 AM UTC-4, Öö Tiib wrote: > If anything Flibble writes quite good code and uses reasonable names. I was thinking Flibble might use a different naming convention for the code that he contributes to Rick's project. Mere speculation, of course. Daniel |
"Chris M. Thomasson" <invalid@invalid.invalid>: Aug 08 12:53PM -0700 On 8/8/2017 5:52 AM, Rick C. Hodgin wrote: >>> contributes. >> If anything Flibble writes quite good code and uses reasonable names. > Agreed. The code I've seen from him has been excellent. Yes, his code is very nice. |
syssense <info@syssense.org>: Aug 08 04:13PM +0200 What about some distraction from your daily routine? As part of my master's thesis i'm looking for experienced C/C++ developers, who also use the C-Preprocessor extensively, to participate in a survey. It takes about 15/20 minutes of your time and can be found here: https://survey.syssense.org/index.php/441281?lang=en Feel free to forward the survey url to your developer colleagues. Thanks a lot and cheers! |
Juha Nieminen <nospam@thanks.invalid>: Aug 08 05:15AM >> at least one level of indirection.) > Practically true, but worth noting that strictly speaking it's not the > case that pointers have no indirection C++. I'm not talking about the memory mapping hardware nor the operating system. I'm talking about the Java runtime. References are not memory addresses to the value itself, but somewhere else. It's similar to how std::shared_ptr works. The reason why Java references have (at least one) indirection level is that it allows the runtime to use memory compaction, and it may also aid in garbage collection. |
"Öö Tiib" <ootiib@hot.ee>: Aug 07 10:24PM -0700 On Monday, 7 August 2017 23:11:10 UTC+3, Alf P. Steinbach wrote: > Are you aware that C++ interpreters exist? > Did you know that there are C++ compilers for virtual machines, > including for .NET (call it CLI or whatever)? Most impressive is that Emscripten from C or C++ into JavaScript. So we can run C or C++ programs in web browsers and thanks to asm.js it runs relatively fastly. Then the layers of such emulation can be nested and even old hardware and operating system can be emulated in web browser smoothly. For example some old MS-DOS games from Digger to Doom-2 ran in web browser https://js-dos.com/games/ Works in most of web browsers. Haven't tried with IE, but who runs it anyway? |
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page. To unsubscribe from this group and stop receiving emails from it send an email to comp.lang.c+++unsubscribe@googlegroups.com. |
No comments:
Post a Comment