Berkeley CSUA MOTD:Entry 29449
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2003/8/23-25 [Computer/Networking] UID:29449 Activity:high
8/23    Anybody know of a computer dial up number. I just want to test my modem.
        \_ go to a random isp's home page and look up their local access
           numbers.
           \_ Thanks, good idea. BTW, did eecs discontinue the annex
              modem pool numbers -op
              \_ a long long time ago.
                 \_ Wow. For some reason, that makes me feel old.
                    What about the <DEAD>hip.berkeley.edu<DEAD> accounts? (Home-IP/PPP)
                    \_ they started charging for them this semester. i.e.,
                       they're as good as dead too. jk. actually, they're an
                       OK deal i guess. $20/semester.
                        \_ Can I get one as a CSUA member and Cal alumni?
                        \_ Can I get one as a CSUA member and Cal alumnus?
                           \_ #f
                              \_ ?
                                 \_ I see they got rid of Scheme from the CS
                                    courses, too. -- "Wow" poster
                                    \_ I'm not CS, my major was ME.
                                       so what is the #f  -- ?guy
                                       \_ false. #t means true. http://csua.org/u/40p
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2010/11/1-2011/1/13 [Computer/Networking] UID:54002 Activity:nil
11/1    I'm moving from a home in Fremont to another home within the same ZIP
        code in Fremont, and AT&T customer service says I cannot transfer my
        DSL service because DSL is not available at my new home.  Is that BS?
        Are they just trying to push me to subscribe to their more expensive
        U-verse service?  I'm not asking for any lightening-speed connection.
            \_ could be
	...
2008/6/16-20 [Computer/Networking] UID:50272 Activity:nil
6/16    What the minimum you can get away with paying for cable modem,
        in the South Bay?  Slowest available speed should be ok.
        Everythings seems to go to +$40/mo after teaser rates end.
        I need something faster than 56k modem but nothing really fast.
        Wondering if possible to keep under $20, since I'm out of town
        maybe 25% of the time.
	...
2007/9/12-14 [Computer/SW/OS/Windows] UID:48034 Activity:low
9/12    I need to receive a fax. I don't have a fax machine. What are
        some decent PC fax software for Windows? It's been too long since I
        used one. Thanks.
        \_ Doesn't efax still have a free service?
           \_ Apparently:
              http://home.efax.com/s/r/efax-cj2?VID=36258&TYPE=300087
	...
2007/8/16-18 [Computer/Networking] UID:47622 Activity:low
8/16    I have this extra ATT 2701HG-B AT&T dsl modem thing that I think
        has wireless.  Can I do something with it?  Flash it?  Install
        Linux on it?  Turn it into a laser?  help me out here.
        \_ doorstop
	...
2007/8/8-13 [Computer/Networking] UID:47565 Activity:nil
8/8     Deal EE engineers. Can you please tell me if the following is
        possible? My condo offers HOA-paid basic DirecTV/Multiband
        (re-broadcasted into channel 2 all the way to 70) cable. It also
        offers TimeWarner broadband. There is only ONE cable going from
        the condo switch box into my unit, and I've been told that
        I can either get DirecTV/Multiband cable, or broadband cable, but
	...
2006/9/27-28 [Computer/Networking, Computer/SW/Security] UID:44564 Activity:low
9/27    I'm currently using http://johncompanies.com and getting close to their
        40G/month bandwidth quota. I'm already paying $47/month for 5G disk
        storage and 40G/month bandwidth, and while the customer service
        has been superb, I'm a bit budget conscious and a bit reluctant to
        pay $80/month to johncompanies for the next level of service. I'm also
        a big socialist, and I support proletarian revolution. I've
	...
2006/8/2-6 [Computer/Networking] UID:43879 Activity:nil
8/2     So my deal with SBC is up in a few weeks and I'm thinking of
        switching over to Speakeasy DSL, as it costs the same as what I'm
        paying now, gives me twice the bandwidth, and has no landline
        (which I rarely use on SBC). Any previous experiences with
        Speakeasy to speak to their character? --michener
        \_ Speakeasy's great. I've had DSL with them for over 6 years
	...
2006/5/23-28 [Computer/Networking] UID:43157 Activity:nil
5/23    I have DSL through AT&T. The service was originally established
        through PacBell, transitioned to SBC, and now AT&T. I still have
        my original plan and never converted to a SBC Yahoo! (now AT&T
        Yahoo!) account. I noticed the price will be a lot cheaper if I
        do. Are there any drawbacks? I thought someone mentioned some
        negatives about the Yahoo! tie-in once upon a time.
	...
2006/2/18-23 [Computer/Networking] UID:41923 Activity:low
2/18    My DSL modem's ip address is 192.168.0.1, my internal network
        behind my router is 10.0.0.x. Is there a way I can configure
        the router so I can access the DSL modem from my 10.0.0.x
        network directly without re-wiring? Static routes? I tried it
        but no much luck. I also tried changing my internal network to
        192.168.0.x, but still does not work. Thanks.
	...
Cache (1896 bytes)
csua.org/u/40p -> www-pu.informatik.uni-tuebingen.de/users/sperber/pfg-2001/scheme/schintro-v14/schintro_87.html
Booleans and Conditionals In Scheme, falsity is represented by the value false, written #f. Conceptually, #f is a pointer to a special object, the false object. Predicates are procedures that return either #t or #f, and don't have side effects. Calling a predicate is like asking a true/false question--all you care about is a yes or no answer. Scheme>(> 1 2) #f Here we told Scheme to apply the predicate procedure to 1 and 2; The important thing about #f is its use in conditionals. If the first subexpression (the condition) of an if expression returns the value #f, the second subexpression is not evaluated, and the third one is; Scheme>(if #f 1 2) 2 Here the second subexpression was just the literal 2, so 2 was returned. Now try it using the predicate > Scheme>(if (> 1 2) 1 2) 2 This is clearer if we indent it like this, lining up the "then" part (the consequent) and the "else" part (the alternative) under the condition. Scheme>(if (> 1 2) 1 2) 2 This is the right way to indent code when writing a Scheme program in an editor, and most Scheme systems will let you indent code this way when using the system interactively--the you can hit <RETURN>, and type in extra spaces. Scheme won't try to evaluate the expression until you write the last closing parenthesis and hit <RETURN>. This helps you format your code readably even when typing interactively, so that you can see what you're doing. The false value makes a conditional expression (like an if) go one way, and a true value will make it go another. In Scheme, any value except #f counts as true in conditionals. Try this: Scheme> (if 0 1 0) What result value does Scheme print? One special value is provided, called the true object, written #t. There's nothing very special about it, though--it's just a handy value to use when you want to return a true value, making it clear that all you're doing is returning a true value.