Berkeley CSUA MOTD:Entry 48708
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/05/24 [General] UID:1000 Activity:popular
5/24    

2007/11/28-12/6 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages] UID:48708 Activity:nil
11/28   T gold indicator forms rare double sell signal
        http://www.minyanville.com/articles/gold-T-mr/index/a/15012
        \_ This is the funniest thing on the motd. Thanks.
           \_ Agreed. This is superb.
2025/05/24 [General] UID:1000 Activity:popular
5/24    

You may also be interested in these entries...
2014/1/14-2/5 [Computer/SW/Languages/C_Cplusplus] UID:54763 Activity:nil
1/14    Why is NULL defined to be "0" in C++ instead of "((void *) 0)" like in
        C?  I have some overloaded functtions where one takes an integer
        parameter and the other a pointer parameter.  When I call it with
        "NULL", the compiler matches it with the integer version instead of
        the pointer version which is a problem.  Other funny effect is that
        sizeof(NULL) is different from sizeof(myPtr).  Thanks.
	...
2013/4/9-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Apps, Computer/SW/Languages/Perl] UID:54650 Activity:nil
4/04    Is there a good way to diff 2 files that consist of columns of
        floating point numbers, such that it only tells me if there's a
        difference if the numbers on a given line differ by at least a given
        ratio?  Say, 1%?
        \_ Use Excel.
           1. Open foo.txt in Excel.  It should convert all numbers to cells in
	...
2013/4/29-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Compilers] UID:54665 Activity:nil
4/29    Why were C and Java designed to require "break;" statements for a
        "case" section to terminate rather than falling-through to the next
        section?  99% of the time poeple want a "case" section to terminate.
        In fact some compilers issue warning if there is no "break;" statement
        in a "case" section.  Why not just design the languages to have
        termination as the default behavior, and provide a "fallthru;"
	...
2012/7/19-11/7 [Computer/SW/Languages/C_Cplusplus] UID:54439 Activity:nil
7/19    In C or C++, how do I write the code of a function with variable
        number of parameters in order to pass the variable parameters to
        another function that also has variable number of parameters?  Thanks.
        \_ The usual way (works on gcc 3.0+, Visual Studio 2005+):
               #define foo(fmt, ...) printf(fmt, ##__VA_ARGS__)
           The cool new way (works on gcc 4.3+):
	...
2011/3/7-4/20 [Computer/SW/Languages/C_Cplusplus] UID:54056 Activity:nil
3/7     I have a C question.  I have the following source code in two identical
        files t.c and t.cpp:
                #include <stdlib.h>
                int main(int argc, char *argv[]) {
                  const char * const * p1;
                  const char * * p2;
	...
2011/2/5-19 [Computer/SW/Languages/C_Cplusplus] UID:54027 Activity:nil
2/4     random C programming/linker fu question.  If I have
        int main() { printf("%s is at this adddr %p\n", "strlen", strlen); }
        and soda's /proc/sys/kernel/randomize_va_space is 2 (eg; on)
        why is strlen (or any other libc fn) at the same address every time?
        \_ I don't pretend to actually know the right answer to this, but
           could it have something to do with shared libraries?
	...
2010/2/12-3/9 [Computer/SW/Languages/C_Cplusplus] UID:53708 Activity:nil
2/12    I need a way to make a really big C++ executable (~200MBs) that does
        nothing.  No static initialization either.  Any ideas?
        \_ static link in lots of libraries?
        \_ #define a   i=0; i=0; i=0; i=0; i=0; i=0; i=0; i=0; i=0; i=0;
           #define b   a a a a a a a a a a
           #define c   b b b b b b b b b b
	...
2009/9/28-10/8 [Computer/SW/Languages/C_Cplusplus] UID:53409 Activity:nil
9/28    http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html
        Java is #1!!! Followed by C, PHP, C++, Visual Basic, Perl,
        C#, Python, Javascript, then finally Ruby. The good news is
        Pascal is going waaaay back up!
        \_ C is still more popular than C++?  I feel much better about myself
           now.
	...
2009/8/7-14 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/Java] UID:53252 Activity:high
8/6     In C one can do "typedef int my_index_t;".  What's the equivalent in
        C#?  Thanks.
        \_ C#? Are you serious? Is this what the class of 2009 learn?
           \_ No.  I have to learn .NET code at work.  I am Class of '93.
           \_ python is what 2009 learns, see the motd thread about recent
              cal courses and languages
	...
2009/7/21-24 [Computer/SW/Languages/Java] UID:53168 Activity:moderate
7/20    For those who care btw, it looks like eclipse is now A Standard Tool
        at UCB ugrad cs, probably replaced emacs.  Furthermore, people get
        angry at seeing Makefiles, (since eclispe takes care of that).  I
        guess it's just a sign of the times.
        \_ The more people at my work use eclipse the less the code is
           managable in emacs.  I'm not sure which application's fault
	...
2012/7/29-10/17 [Computer/SW/Languages] UID:54447 Activity:nil
7/23    Hey mconst, check this out:
        int main()
        {
            int i_value   = 16777217;
            float f_value = 16777217.0;
            printf("The integer is: %d\n", i_value);
	...
2012/7/23-29 [Computer/SW/Languages] UID:54443 Activity:nil
7/23    Hey mconst, check this out:
int main()
{
    int i_value   = 16777217;
    float f_value = 16777217.0;
    printf("The integer is: %d\n", i_value);
	...
2012/3/15-6/1 [Computer/SW/Languages, Computer/SW/OS/Windows] UID:54340 Activity:nil
3/15    Why does MS put double-quotes around the '8' in Windows Server 8, like
        the following?
        - Windows 8
        - Windows Server "8"
        \_ Because when they didn't do it, code didn't see the '\0'
           and went over?  Looks better than '8','\0' *shrug*
	...
2010/1/26-2/8 [Computer/HW/Memory] UID:53665 Activity:nil
1/26    What's a good motherboard I can get that will fit in a 1U
        case, with sata connectors, gig-e ethernet, and lots of
        slots for RAM?  I also don't want to have to use expensive
        double buffered RAM.  Can you tell I havne't bought a PC in
        years?  thanks.
        \_ Buy a mac. Haven't you heard? if you don't buy a Mac people
	...
2009/5/6 [Computer/HW/CPU] UID:52952 Activity:moderate
5/5     Any idea why the AMD only added 8 more registers with the AMD64 arch.?
        Why 16 registers and not, say, 32?
        \_ To double the accessible register count, you need one more bit
           in the instruction stream _per_ register field.  x86 instruction
           set is already packed like rat's nest as is.
	...
Cache (6861 bytes)
www.minyanville.com/articles/gold-T-mr/index/a/15012
Special Update: Mr T Gold Indicator Forms Rare Double Sell Signal In a stunning development, the Minyanville Mr T Gold Indicator has formed a rare double sell signal on the chart. The first signal was generated when Mr T began appearing in a national television spot for the World of Warcraft video game. See the YouTube clip below: The second signal, formerly called the Hindenberg Omen until we realized there was another indicator already called the Hindenberg Omen, is now known as a Romney Retracement Parable. the following exchange between Republican presidential candidate Mitt Romney and CNN's Wolf Blitzer: Wolf Blitzer: "Mike Huckabee has, in his corner, Chuck Norris, the TV action hero. Barack Obama has invited Oprah to come campaign for him in Iowa next week. But I am going to put up on the screen your secret weapon, because we were just introduced to your grandson, Parker Romney, who is 18 months old. He looks like he's a good guy to have in your corner, a sweet little boy. Blitzer: "So, I take it you would rather have Parker Romney than Oprah or Chuck Norris." Romney: "That is true, although my son yesterday suggested that I see if I could sign up Mr T" About the Mr T Gold Indicator * What is the Mr T Gold Indicator? The Mr T Gold Indicator is a proprietary technical indicator created by Minyanville to identify and anticipate prospective exhaustion points in the price data for gold. Some technical indicators rely on formulas applied to the price data of a security, but these types of indicators can be very subjective, requiring an analyst to view the signals that are generated within the context of still more indicators! The Mr T Gold indicator, on the other hand, is completely objective and easy to use. All you have to do is look at Mr T What could be easier than that? Just kidding (although it would be cool if that really was the Mr T Gold Indicator formula). The truth, however, is the Mr T Gold Indicator is simply based on the appearance and popularity of Mr T Minyanville has discovered that over the years Mr T's appearance and popularity is simply a subconscious reminder telling us when the yellow metal has reached an important price peak. not a specific fool, mind you, but just pitying the fool in general; The reason Mr T pities the fool is because Mr T knows his gold. In fact, Mr T developed his gold-wearing ability during his days as a bouncer, confiscating the gold jewelry of those he kicked out of nightclubs as a symbol of his toughness and virility. Some pinhead precious metals analyst at Bigwig, Doofus and Booyah Securities? You're going to believe a guy whose first name is "Mister", middle name is "period", and whose last name is "T"! Mr T Gold Indicator in Action (1982 - 1994) At this point you are probably thinking, "Quit your jibba jabba." Wikipedia (the free, somewhat accurate encyclopedia that anyone can edit, even that guy who works in your building with the weird comb-over and Charlie's Angels lunch box... Let's take a look at the historical accuracy of the Mr T Gold Indicator. Gold 1981 -1994 Mr T Gold Indicator in Action (1995 - Present) Gold 1995 - 2005 A Fractal-Based Look at the Mr T Gold Indicator As you can see, the Mr T Gold Indicator is a robust tool for identifying high-probability price exhaustion points in gold, both on the upside and the downside. In the above charts we took a long-term view of gold, using the Mr T Gold Indicator to identify price exhaustion points on a long-term monthly chart. But what about weekly, daily, even hourly and minute-by-minute charts? Naturally, it stands to reason that if the Mr T Gold Indicator is indeed a robust price exhaustion tool then it should apply to smaller time frames of gold price data. That is, because the gold market is a self-organizing complex system with self-similarity on different time scales, the Mr T Gold Indicator should be just as useful in these self-similar and subdivided minute time frames as it is on a larger scale. As you can see from the chart below, on February 22, 1983, gold opened very strong as the opening title sequence to the A-Team television show rolled. Bad Day at Black Rock", (see A on the chart below) Mr T's character, Sgt. About 15 minutes after the first commercial break (see B on the chart below) gold began a brief rebound as The A-Team found medical attention for BA from a small-town doctor. However, in the next few minutes, it became clear the small-town doctor suspected BA may be part of a biker gang returning to rescue their jailed leader. Gold collapsed intra-day (see C on the chart below) as the doctor warned the local sheriff of his suspicions. But about 22 minutes later (See D on the chart below) Hannibal was able to convince the sheriff that BA was one of the good guys. Gold rebounded by the end of the episode as BA recovered and the A-Team helped the sheriff protect the town. Gold, five-minute intra-day chart, February 22, 1983 For more, watch as Hoofy and Boo report on the Mr T Gold Indicator and have an unexpected guest! Check out Minyanville's Buzz and Banter, a real-time tool that delivers ideas and analysis as the market moves from over 30 of Wall Street's top minds direct to your desktop. Prior to joining Minyanville, Kevin spent more than five years as an analyst with Dorsey, Wright & Associates where he contributed to and edited the firm's daily research. Mr Depew may trade securities that are discussed on the site, both before and after the articles are published and/or may have a position in such securities. Mr Depew will indicate whether he, individually, or Todd Harrison has a position in stocks or other securities in any of the companies he discusses in an article but will not disclose the direction of the position. He will not disclose his or Mr Harrison's ownership of any securities issued by companies that are not discussed in an article. The disclosures will be accurate as of the time of publication of an article and may change thereafter. The information on this website solely reflects an analysis of market trends or conditions by Mr Depew or any guest writer, and nothing contained in this article or on this website should be interpreted as or deemed to be a recommendation to any investor or category of investors to purchase, sell or hold any security. Any investment decisions must in all cases be made by the reader or by his or her investment adviser. Mr Depew will not respond to requests for investment advice. Nothing contained on this website is intended as a solicitation for business of any kind or for investment. The views expressed on this website are solely those of the writers whose articles appear on this site and do not necessarily reflect the views of the Todd Harrison or of any other person except where expressly indicated. Copyright 2007 Minyanville Publishing and Multimedia, LLC.