Increasing brain activity

Boosting Brain Power <Payne@leesburgbrainclinic.com> Thu, 19 March 2015 14:21 UTC

Return-Path: <LydiaPayne@mypassionisfootball.leesburgbrainclinic.com>
X-Original-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Delivered-To: ietfarch-krb-wg-archive@ietfa.amsl.com
Received: from localhost (ietfa.amsl.com [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 0D4C11ACCF3 for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Thu, 19 Mar 2015 07:21:41 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: 0.799
X-Spam-Level:
X-Spam-Status: No, score=0.799 tagged_above=-999 required=5 tests=[BAYES_50=0.8, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_REMOTE_IMAGE=0.01, T_RP_MATCHES_RCVD=-0.01] autolearn=ham
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7PGn1RkXI-LF for <ietfarch-krb-wg-archive@ietfa.amsl.com>; Thu, 19 Mar 2015 07:21:38 -0700 (PDT)
Received: from mypassionisfootball.leesburgbrainclinic.com (mypassionisfootball.leesburgbrainclinic.com [107.181.133.3]) by ietfa.amsl.com (Postfix) with ESMTP id 23FD71ACCF2 for <krb-wg-archive@lists.ietf.org>; Thu, 19 Mar 2015 07:21:35 -0700 (PDT)
Message-ID: <.201503190607834111lVb4sFTuhn1O@mypassionisfootball.leesburgbrainclinic.com>
Date: Thu, 19 Mar 2015 06:21:34 -0800
From: Boosting Brain Power <Payne@leesburgbrainclinic.com>
To: <krb-wg-archive@lists.ietf.org>
Reply-to: <Lydia@leesburgbrainclinic.com>
Subject: Increasing brain activity
Content-Type: multipart/alternative; boundary="===============8376866095751611990=="
MIME-Version: 1.0

Re: Krb-wg-archive Can you please send over what we need for the meeting? I was unable to see the updated reports you send the other day. thanks for getting back to me so fast.

Breaking News: FDA Approves Brain Power Booster http://www.leesburgbrainclinic.com/harmonizer/48942/narcissist-8213-tempest.html
///>//////>//////


CNN-- With much media praise controversy is on the rise for the brainpower booster in a bottle, dubbed 'Fuel for the brain' (http://www.leesburgbrainclinic.com/harmonizer/48942/narcissist-8213-tempest.html) . Reported to increase brain power by 89.2%, sharpens your mind and sky-rockets energy levels.

Read More >> (http://www.leesburgbrainclinic.com/harmonizer/48942/narcissist-8213-tempest.html)
///>//////>//////
With such overwhelming evidence and media mention, the question is not whether it works, but whether it should be legal.

http://www.leesburgbrainclinic.com/harmonizer/48942/narcissist-8213-tempest.html
If you were able to get your hands on this would you try it?


US Edition | Video | TV | Opinions | Rem-settings (http://www.leesburgbrainclinic.com/snooper-64145_hairballs_1579-aviations_contemporarily.php) | CNF Reports Live | 9306 Bova :: Louisville :: KY 40291 :: Thanks


///>//////>//////

Thanks~ Maybe I should use "raw data" to replace "binary data" because all data in computer is binary... It's true that writing raw data is a dangerous behavior for a cross-platform application. But for applications on embedded systems which focus more on efficiency rather than portability, this may be a helpful approach :)  Mr. Ree Feb 18 at 3:02
1
@Mr.Ree: for sure - the functions are there to be called - just ever-so-slightly harder to do so for class/struct types, needing that cast. Regarding the dangers - if there are virtual functions, pointer data members etc. you're in trouble even on an embedded system, but C++ provides traits you can easily assert to ensure your struct data should be safe to read/write as a binary block....  Tony D Feb 18 at 4:39

@Mr.Ree: appended a response to another of your questions to my answer. Cheers.  Tony D Feb 18 at 4:51

I agree with what you have written. But, Java has 3 different layers of classes for reading text from a file (a stream, a reader and a buffered reader). I am not defending their design decisions but this also shows that current std::iostream implements different responsibilities into one gigantic construct. Using std:: objects are usually encouraged by Stroustrup himself just because of their RAII behavior. So instead of fwrite there should be a better alternative for current stream classes in the standard for byte streams imho.  zahir Feb 18 at 16:58

@zahir: from one perspective I agree with you it "ticks a box", from another it seems excessive, verbose and confusing for new devs to have an extra set of stream classes that only differ by having read and/or write functions take void* instead of char* - the Standard is long enough already. Users who want it can trivially roll their own. Buffering variations are already supported - see