No More NDR2 Streaming Radio?

A few days ago, something really bad happened. The live stream of my favorite radio station, NDR2 from Hamburg, Germany, stopped working for me. For the last few years, NDR2 has been the music I listen to, when I’m at home and sometimes also when I’m at work. I listen to it on my mobile phone. It makes me feel like I’m staying in touch, and the last few days without it just weren’t the same.

While the NDR2 team was kind enough to respond and tried to help, unfortunately they did not know why the MP3 stream was not working for me anymore either. If I download the m3u file that NDR2 links to, and I get a streaming MP3 URL, but when I access that, I get a 404:

[cc]mgricken@scalar ~
$ wget http://www.ndr.de/resources/metadaten/audio/m3u/ndr2.m3u
Resolving www.ndr.de (www.ndr.de)… 213.71.15.227
HTTP request sent, awaiting response… 200 OK
Length: 59
Saving to: `ndr2.m3u’
2011-09-18 21:40:34 (1.73 MB/s) – `ndr2.m3u’ saved [59/59]

mgricken@scalar ~
$ cat ndr2.m3u
http://ndrstream.ic.llnwd.net/stream/ndrstream_ndr2_hi_mp3

mgricken@scalar ~
$ wget `cat ndr2.m3u`
Resolving ndrstream.ic.llnwd.net (ndrstream.ic.llnwd.net)… 69.28.151.253
HTTP request sent, awaiting response… 404 File Not Found
2011-09-18 21:49:37 ERROR 404: File Not Found.[/cc]

Curiously, the WMA stream that NDR2 offers is still working; therefore, it’s mainly a problem on my Android phone. Fortunately, on AndroidForums.com I found a work-around that’s not quite as nice as the original NDR2 web player, but at least it works:

Yourmuze.FM offers a link to a Flash web player that plays the WMA stream, and that also works on Android.

I still hope that I get back the nice original NDR2 web player, with current, previous, and next song information, but for now, I have my radio back.

Update

The original NDR2 web player is working again. It seems like whatever service NDR2 uses for streaming fixed the problem.

Share
Posted in Uncategorized | Leave a comment

Print This Post Print This Post  

Suggestions for Better Java 7 Support in DrJava

I just looked through the new language features in Java 7, and experimented with them in DrJava.

None of the changes are supported in the Interactions Pane, and there will be a lot of required work to make these things work there. We’ll have to change the parser, change the type checker, change the interpreter, and so on.

There are, however, smaller changes that we should do to provide better support in the Definitions Pane:

  1. Binary literals [cci lang=”java”]int i = 0b100000;[/cci] are not syntax-highlighted correctly.
  2. Numeric literals with an underscore in them [cci lang=”java]int i = 1_000; double d = 3.141_5927;[/cci] are not syntax-highlighted correctly.
  3. In some cases, try-with-resources is indented badly:
    [cc lang=”java”] // badly indented
    public static void tryWithResources2(String f) {
    try (InputStream is = new FileInputStream(new File(f));
    InputStream is2 = new FileInputStream(new File(f))) {
    is.read();
    }
    catch(IOException e) {
    e.printStackTrace();
    }
    }[/cc]

Everything else looks pretty good. Here’s the sample class that I used:

[cc lang=”java”]import java.io.*;
import java.util.*;

public class Java7Samples {
public static void main(String[] args) {
stringSwitch(args[0]);
intSwitch(new Integer(args[1]));
tryWithResources(args[2]);
tryWithResources2(args[2]);
multiCatch(new Integer(args[3]));

// bad integer syntax highlighting
int i = 0b100000;
System.out.println(i);

// bad numeric syntax highlighting
i = 1_000_000;
System.out.println(i);
i = 2__000__000;
System.out.println(i);
// int illegal = _1000;
// int illegal2 = 1000_;
double d = 123_456.789_012;
System.out.println(d);
}

public static void stringSwitch(String arg) {
switch(arg) {
case “one”:
System.out.println(“case one”);
break;
case “two”:
case “three”:
System.out.println(“case two or three”);
break;
default:
System.out.println(“default case”);
}
}
public static void intSwitch(int arg) {
switch(arg) {
case 1:
System.out.println(“case 1”);
break;
case 2:
case 3:
System.out.println(“case 2 or 3”);
break;
default:
System.out.println(“default case”);
}
}

public static void tryWithResources(String f) {
try (InputStream is = new FileInputStream(new File(f))) {
is.read();
}
catch(IOException e) {
e.printStackTrace();
}
}

// badly indented
public static void tryWithResources2(String f) {
try (InputStream is = new FileInputStream(new File(f));
InputStream is2 = new FileInputStream(new File(f))) {
is.read();
}
catch(IOException e) {
e.printStackTrace();
}
}

public static class Ex1 extends RuntimeException { }
public static class Ex2 extends RuntimeException { }
public static class Ex3or4 extends RuntimeException { }
public static class Ex3 extends Ex3or4 { }
public static class Ex4 extends Ex3or4 { }

public static void doSomething(int i) throws Ex1, Ex2, Ex3, Ex4 {
switch(i) {
case 1:
throw new Ex1();
case 2:
throw new Ex2();
case 3:
throw new Ex3();
case 4:
throw new Ex4();
}
}

public static void handleEx1Or2(RuntimeException e) {
System.out.println(“handlEx1Or2”);
}

public static void handleEx3Or4(Ex3or4 e) {
System.out.println(“handlEx3Or4”);
}

public static void multiCatch(int i) {
try {
doSomething(i);
}
catch(Ex1 | Ex2 ex) {
handleEx1Or2(ex);
}
catch(Ex3 | Ex4 ex) {
handleEx3Or4(ex);
}
}

public static void multiCatch2(int i) {
try {
doSomething(i);
}
catch(Ex1 |
Ex2 ex) {
handleEx1Or2(ex);
}
catch(Ex3 |
Ex4 ex) {
handleEx3Or4(ex);
}
}

public static Map diamond() {
return new HashMap<>();
}

public static void diamond2() {
Map map = new HashMap<>();
}
}[/cc]

Update

I filed bugs 3404387 and 3404389.

Share
Posted in DrJava | Leave a comment

Print This Post Print This Post  

Presidential Active Lifestyle Award

I just completed the PALA challenge: Five days of exercising at least 30 minutes, for six out of eight weeks.

I’ve run about 72 miles (115 km), biked several times, and I’ve zumba-ed (if you just look at the instructor, and not at yourself in the mirror, you can pretend that you are an amazing dancer).

Presidential Active Lifestyle Award

Presidential Active Lifestyle Award

I’m pretty satisfied with myself. In absolute terms, this is probably not an achievement worth mentioning. It’s not getting me to the Olympics (@Unless you’re talking about the Olympic Mountains, in which case, it does get me there.@). But in relative terms, it is. I have become a much better me. I’m 31 years old, I finished grad school, I’m working full time, and I’m in the best shape of my life.

Share
Posted in Uncategorized | Leave a comment

Print This Post Print This Post  

FedEx Nightmare Ended, Setting Up Quad-Core Desktop

My FedEx nightmare ended. The package was found at a warehouse and then delivered to the FedEx store where I had requested it to be held. One thing that worried me a little was that it was listed as “Delivered, signed by xxx” instead of “Held at yyy, ready for pickup.” But all turned out well, and the employee at the FedEx store were all very nice, and they were never at fault anyway. The FedEx people at the 1-800 number, on the other hand, were, without exception, complete failures. You should do FedEx a favor and quit.

Now I’m setting up my quad-core desktop. I think I’ve gotten used to Windows 7 by now because my work laptop and media PC already use it, so I guess I can move on from my 10-year-old Windows XP (which I only started using in 2007, if I recall correctly).

I’m remembering how much I hate setting up computers and installing programs.

The computer seems nice, but it has surprisingly few USB ports: Two at the top, five at the back, and none at the front. Internally, it only has PCI-Express. I’ll probably have to invest in a PCI-Express x1 USB controller, and maybe in a PCI-Express x1 video card, unless I can get both the dedicated NVIDIA card and the on-board video port to work simultaneously. Got any recommendations?

Share
Posted in Ramblings | Leave a comment

Print This Post Print This Post  

FedEx Horror, Continued

I got an encouraging email from Dell today. Apparently, someone at Dell had talked to FedEx, and they said my package is ready for pickup at the store.

Unfortunately, I just talked to the FedEx store where the package is supposed to have been held for me, and I was told the correct package has not arrived. I called the national FedEx 1-800 customer service number, and all they could tell me was that “tracking says it is at the store”. Obviously that is not the case, and tracking is wrong.

My package is still lost. Nobody I talked to knows where the package is.

James, a customer service representative on the FedEx 1-800 number, said I should talk to the Kent, Washington location, because that’s where the package was relabeled, but that location closed at 5 PM. I asked if he had a phone number, and James said yes, but repeated that the location was closed already. I asked if I could have the phone number anyway, and he said “no, it’s for internal use only.”

Great, thanks. You are so helpful. FedEx customer service strikes out again.

I will try to contact the FedEx store and the national FedEx customer service line again tomorrow, but I don’t have high hopes. FedEx has been tremendously unhelpful. Furthermore, it is not my job to find where my package has gone lost. I expect it to be delivered. I have paid for the merchandise; I want it delivered. Dell and FedEx can sort out the problems without me.

Update

I just drove to the FedEx store again. As I expected, but contrary to what Dell and the national FedEx customer service line told me, the package is not there. It is still lost.

Share
Posted in Ramblings | Leave a comment

Print This Post Print This Post  

FedEx Lost My $1500 Package from Dell

I ordered a new computer from Dell a couple of weeks ago, and it was supposed to be delivered yesterday. I work, you know, so I wasn’t here when FedEx attempted to deliver it. And because it’s a pricey item, I have to sign for it, so FedEx couldn’t just leave it with the apartment manager.

Because I work, you know, I knew I wouldn’t be at home to accept it today either. Or tomorrow. I therefore requested FedEx to hold it at their store at 5963 Corson Ave S. I got a notice today that it was available for pickup. After work, I drove there, expecting to receive a nice Dell box.

Except it wasn’t a Dell box. I told Sarif, the FedEx employee there, that I didn’t think that was my package. We looked more closely, and I found a FedEx address sticker. I pointed at it, saying “That’s not me.” He, on the other hand, pointed at another FedEx address sticker, saying “That is you.”

Marvelous. You FedEx geniuses put my address sticker on someone else’s package when you tried to redirect my package to the FedEx store.

Sarif asked what I expected the package to contain. I told him it was supposed to be a computer from Dell. Sarif carefully opened the package and found some lighting products in it. Lamps. It’s not surprising that I didn’t accept the package.

Sarif told me that he would talk to his manager, and that I have to call FedEx customer service.

That’s what I just did. I talked to Brianna. Well, first I talked to a robot and had to dictate my tracking number. Then I talked to Brianna, and I had to give her my tracking number again. She also verified my name and the original address.

She then put me on hold, and when she returned, she had come to the conclusion that it’s Dell’s fault and that there is nothing FedEx can do. She says Dell must have put two address stickers on the box.

Yeah, maybe, but then why wasn’t it a Dell box? Unless, of course, Dell is also shipping lamps.

This is so, sooo, soooo clearly FedEx’s fault, but they won’t fess up.

Now I have contacted Dell and told them the package is lost. I need to wait 24 hours for Dell to get back in touch with me. Most likely, they will want to investigate where the package is and what happened. And then, in a week or so, when we all (except FedEx, perhaps) have agreed that it was FedEx’s fault and that the package is lost, I will have to wait a couple of weeks for a new computer to be built and shipped.

I hope it ships with UPS.

Share
Posted in Ramblings | 1 Comment

Print This Post Print This Post  

New DrJava Beta Release: drjava-beta-20110822-r5448

We have made a new development release available: drjava-beta-20110822-r5448. You can download it from the DrJava website or from SourceForge.

Available for download at http://drjava.org.

DrJava is a lightweight programming environment for Java designed to foster test-driven software development. It includes an intelligent program editor, an interactions pane for evaluating program text, a source level debugger, and a unit testing tool.

In addition to bug fixes, this beta release includes a two new features introduced after the last development release:

  1. The debugger has been revised to interface properly with functional language level files. The source line numbers shown in the debugger now consistently correspond to the source files open in DrJava, even when the source files are language level files. During tracing, line numbers corresponding to augmented code that does not appear in language level files are mapped to -1.
  2. A compiler adapter for Java 7 has been added to DrJava. Unfortunately, the adapter does not find the Java 7 compiler on Windows unless DrJava is started from a JDK installation rather than a JRE installation. As a result, running this release on Windows with Java 7 will typically invoke the bundled Eclipse Java compiler rather than the Oracle/Sun Java 7 compiler.

    Note: Java 1.4 compatibility has been dropped. To use DrJava, you will need Java 5 or newer.

New features since the last release:

  • better integration of the functional languaage level with the debugger
  • a Java 7 compiler adapter.

Bug fixes since last release:

  • the code has been revised to more closely conform with the synchronization invariants governing the design.

New features since the last stable release:

  • better integration of the functional languaage level with the debugger
  • a Java 7 compiler adapter
  • refactored language level
  • improved compiler support, including support for Habanero Java
  • added support for copying the Compiler Errors pane to clipboard
  • preferences like indent level can now be stored on a per-project basis (see “Project Properties”, “Advanced”).

Bug fixes since the last stable release:

  • the code has been revised to more closely conform with the synchronization invariants governing the design
  • applet viewer not started in event thread anymore to avoid exception
  • Static type checking for primitive casts in Interactions pane.
Share
Posted in DrJava | Leave a comment

Print This Post Print This Post  

DrJava Now Works Even When Launched with the Java 7 JRE

I think I’ve got DrJava working with the Java 7 compiler the way it should, even when started with the JRE (as long as the JDK is installed as well). That was the situation that both Corky and I got into when we double-clicked on DrJava.

Please give the weekly build drjava-weekly-20110822-r5448.jar a shot.

In the original JDK7 compiler adapter, I followed the instructions and
used the [cci lang=”java”]javax.tools.ToolProvider.getSystemJavaCompiler()[/cci] method to get the Java compiler. Unfortunately, when a user starts DrJava with
the JRE, the tools.jar file is not on the boot classpath, and the [cci lang=”java”]getSystemJavaCompiler()[/cci] method will not find the
[cci lang=”java”]com.sun.tools.javac.api.JavacTool[/cci] class, even when we later provide the tools.jar file to the class loader. The [cci lang=”java”]javax.tools[/cci] package cannot be shadowed, so we can’t load one version of it for one compiler and a different version for another compiler.

Instead of using [cci lang=”java”]ToolProvider[/cci], I now do a
[cci lang=”java”]Class.forName(“com.sun.tools.javac.api.JavacTool”).newInstance()[/cci] directly. That’s exactly what [cci lang=”java”]ToolProvider[/cci] is doing too, but we can shadow the [cci lang=”java”]com.sun.tools.javac.*[/cci] packages and have control over the classloader.

I’m sorry that it took this long. I had a long day on Friday and I’m on call this coming week; I wanted to make sure I have time to goof off and enjoy the beautiful weather this weekend.

If other issues come up, please let me know.

Share
Posted in DrJava | Leave a comment

Print This Post Print This Post  

ACM Membership Certificate

I received a certificate from the ACM today.

“This is to certify that, having fulfilled the requirements for professional membership,” I am admitted into the Association for Computing Machinery.

Why yes, I really did pay that membership fee. Which is the only requirement, as far as I know. And then I’m told to proudly display the certificate.

Now I have a useless membership card (I can just write down my membership number) and a silly membership certificate.

Don’t get me wrong, I like the SIGs, the magazines, and the Digital Library, although digital papers should really be free. I don’t need these membership documents.

Share
Posted in Ramblings | Leave a comment

Print This Post Print This Post  

PPPJ 2011 Program is Up

The program for PPPJ 2011 is available now.

Of course I am excited about the Habanero Java and DrHabanero papers from Rice, but the University of Lugano paper Portable and Accurate Collection of Calling-Context-Sensitive Bytecode Metrics for the Java Virtual Machine looks interesting too, as usual.

I wish I could attend.

Share
Posted in Uncategorized | Leave a comment

Print This Post Print This Post  

Java 7 for DrJava and Concutest

I worked on Java 7 support this weekend, and I’m almost done. I just discovered that Concutest is currently incompatible with Java 7, though, so I will need to disable the ConcJUnit option in DrJava when using Java 7. I also need to test on Mac and Linux.

I’ll try to finish this tonight so we can get a beta out. Or should we release a stable version without this code?

Fixing Concutest will take a bit longer, of course.

Share
Posted in Concurrent Unit Testing, DrJava | Leave a comment

Print This Post Print This Post  

Yes, DrJava Works under Mac OS X 10.7 Lion

I just upgraded to Mac OS X 10.7, and DrJava works flawlessly. The one vague report that someone had filed therefore proved to be wrong.

When I started DrJava the first time, Mac OS X asked me if I wanted to
download a Java runtime environment. I said yes. The JRE was
downloaded and installed, and after that, DrJava opened.

I’m still not sure about Mac OS X Lion, but I continue to be excited about DrJava:

DrJava on Mac OS X Lion

DrJava on Mac OS X Lion

Share
Posted in DrJava | 2 Comments

Print This Post Print This Post  

Summer in Seattle

A radio station here in Seattle (I believe it KOMO News) had checked how many minutes of summer Seattle had so far in 2011. They defined summer as 80 degrees Fahrenheit (27 C) and no rain. Guess how many?

70 minutes.

When someone complained that 80 degrees is kind of warm, and that summer already begins earlier, they checked for 75 degrees F (24 C). How much time?

18 hours. Not even a full day.

But today definitely is summer. All of Seattle was at Alki Beach, it seemed. It looked like the Playa della Something in Mexico or Spain. I ran 3.5 miles slalom around people, but I must have done something to my left foot, because my ankle hurt pretty badly. And I mean that, because running 3.5 miles a day is a piece of cake by now.

Alki Beach in July 2011. Same amount of Space Needle, many more women in bikinis.

Alki Beach in July 2011. Same amount of Space Needle, many more women in bikinis.

Share
Posted in Pictures, Ramblings | Leave a comment

Print This Post Print This Post  

Does DrJava Work on Mac OS X Lion?

We were just informed of an entry on RoaringApps indicating that DrJava does not work on Mac OS X Lion.

Is that the case? We don’t know at this time. DrJava has always worked on previous versions of Mac OS X, but we haven’t had the opportunity to test it on Mac OS X Lion. If you have Mac OS X Lion, could you please download and run DrJava and corroborate the information?

Thanks!

Update

Yes, it does work! DrJava works flawlessly in Mac OS X 10.7 Lion.

Share
Posted in DrJava | 1 Comment

Print This Post Print This Post  

Demonstration: DrHJ – the cure to your Multicore Programming Woes

DrHJ – the cure to your Multicore Programming Woes

SPLASH 2011

DrHJ extends DrJava with support for the pedagogic Habanero-Java language derived from X10, and used to teach parallel programming at the sophomore level. The demonstration will show how a rich and powerful set of parallel programming capabilities can be easily introduced to anyone familiar with the basics of sequential programming in Java.

Share
Posted in Publications | Leave a comment

Print This Post Print This Post  

Paper: DrHJ – a lightweight pedagogic IDE for Habanero Java

DrHJ – a lightweight pedagogic IDE for Habanero Java

9th International Conference on the Principles and Practice of Programming in Java (PPPJ 2011)

The Java language and runtime environment has had a profound worldwide impact on computer software since its introduction nearly two decades ago. It has enabled the creation of a rich ecosystem of libraries, frameworks, and tools that promises to deliver significant value for many years to come. Consequently, a wide range of Interactive Development Environments (IDEs) have emerged to increase the productivity of Java programmers. They vary in functionality based on the expertise level assumed for their target user base. The Eclipse Java Development Tools (JDT) project offers a rich set of power tools for experienced programmers, but can be harder for novice programmers to set up and use. In contrast, IDEs such as DrJava and BlueJ have been developed primarily for use in introductory programming courses.

In this tool demonstration paper, we summarize the DrHJ tool which will be demonstrated at the conference. In anticipation of the need for introducing parallelism earlier in the Computer Science curriculum, DrHJ extends DrJava with support for the pedagogic Habanero Java (HJ) parallel programming language that was derived from the earlier Java-based definition of the X10 language. DrHJ builds on our past experiences at Rice with developing the DrJava IDE and the HJ language. DrJava is used by many universities world-wide, and has been downloaded over 1.1 million times since its inception in 2002.

Share
Posted in Publications | Leave a comment

Print This Post Print This Post  

Two DrJava Tutorials on YouTube

On YouTube, I found two tutorial series that describe DrJava:

  1. DrJava – Easy to use java editor (We will use this in our Java Tutorial)
  2. DrJava – The “Interaction Pane” Overview

and

  1. Introductory tour of DrJava
  2. 2nd DrJava Tutorial – Using Interactions Pane to Investigate How Java Handles Numbers
  3. 3rd Tutorial – How to write a java program finding the area of a circle

Neither of them covers very advanced topics, but I’m always happy to hear that beginners choose DrJava. It’s the primary audience for our IDE.

Share
Posted in DrJava | Leave a comment

Print This Post Print This Post  

Dell Repair Fail

The Dell technician here to repair the Ethernet port on my media computer broke the rest of the computer! The fan doesn’t spin anymore, the PC doesn’t boot up anymore, and the surround sound system makes a pulsing sound when it’s plugged into the speaker port on the computer… And the guy cut himself on two fingers and needed bandages.

Total fail. I should have done this myself, but that would void the warranty.

Update

Apparently the replacement motherboard that Dell gave the technician was broken worse than mine was. Now the technician put the one I had back in, but the hard drive isn’t working yet. But at least it’s booting again… Thanks, Dell, for the collossal waste of time.

Update

The repair guy showed up again, with another motherboard, and this time everything worked. Thanks!

Share
Posted in Ramblings | Leave a comment

Print This Post Print This Post  

PPPJ 2011 Tool Paper Accepted

A while ago I worked on a paper together with Vivek, Corky, Vincent, Jared and Raghavan at Rice. We still have to make some final revisions, but I’m happy to report that our tool paper “DrHJ — a lightweight pedagogic IDE for Habanero Java” has been accepted to PPPJ 2011 in Denmark.

Share
Posted in DrJava, Research | Leave a comment

Print This Post Print This Post  

Perforce Migration

Ever since my internship at National Instruments, I’ve been using Perforce as version control system. Thanks to their evaluation license, which is limited to two users, this has been completely free for me. I’m glad that I stuck with Perforce, because I am using it at work now too.

While at Rice, I had the Perforce server running on my office machine, a RHEL4 server. I don’t have a Linux box at home, just two Windows machines. To migrate the Perforce server from Linux to Windows, I had to run the p4migrate script to find name collisions, since Linux is case-sensitive and Windows is case-insensitive. There were a handful of different files that would have mapped to the same file on Windows. Perforce customer service has been great, even for a user of the free version like me. Thanks again!

Running the Perforce server on a Linux machine made it really easy to run scripts as part of Perforce triggers. I just ssh into the same machine and run a script:

[cc]
# See ‘p4 help triggers’ for more information about triggers.

Triggers:
run-RiceMBS.to.web change-commit //depot/DP4MBS/RiceMBS.student/*.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-and-update-RiceMBS.sh %changelist% RiceMBS.to.web”
run-RiceMBS.to.202web change-commit //depot/DP4MBS/RiceMBS.student/*.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-and-update-RiceMBS-20.sh %changelist% RiceMBS.to.202web”
run-MSThesis.to.web1 change-commit //depot/Concutest/MSThesis/pdf/thesis.pdf “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% MSThesis.to.web”
run-MSThesis.to.web2 change-commit //depot/Concutest/MSThesis.defense/MSThesis-Ricken.ppt “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% MSThesis.to.web”
run-COMP600MS.to.web change-commit //depot/Concutest/MSThesis.defense/COMP600/COMP600-Ricken.ppt “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% comp600.to.web”
run-COMP600PPPJ2009.to.web change-commit //depot/Concutest/PPPJ2009/presentation/COMP600/COMP600-Ricken-2009-08-24.ppt “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% comp600.to.web”
run-COMP600Mint.to.web change-commit //depot/Mint/COMP600/presentation/COMP600-Ricken-Mint-2010-02-08.* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% comp600.to.web”
run-RCSC20071004.to.web change-commit //depot/Concutest/MSThesis.defense/RCSC-20071004/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% rcsc-20071004.to.web”
run-Concutest-JUnit.to.web2 change-commit //depot/Concutest/concJUnit/jars/*.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% Concutest-JUnit.to.web2”
run-Kooprey.to.web change-commit //depot/DP4RDP/Kooprey.zip “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% Kooprey.to.web”
run-TempCalc.to.TempAssign change-commit //depot/OOPBook/TempCalculator/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempCalc.to.TempAssign”
run-TempCalc.to.SIGCSE06 change-commit //depot/OOPBook/TempCalculator/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempCalc.to.SIGCSE06”
run-SIGCSE06.to.web change-commit //depot/SIGCSE06/TempCalculator/webpage/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% SIGCSE06.to.web”
run-TeachJava2004.to.web1 change-commit “//depot/DP4MBS/TeachJava Presentation/*.zip” “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TeachJava2004.to.web”
run-TeachJava2004.to.web2 change-commit “//depot/DP4MBS/TeachJava Presentation/*public.ppt” “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TeachJava2004.to.web”
run-TeachJava2005.to.web1 change-commit “//depot/DP4MBS/TeachJava 2005 Presentation/*” “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TeachJava2005.to.web”
run-TeachJava2005.to.web2 change-commit “//depot/DP4MBS/TeachJava 2005 Presentation/demos/*” “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TeachJava2005.to.web”
run-TempAssign.to.web1 change-commit //depot/OOPBook/TemperatureAssignment/*.html “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempAssign.to.web”
run-TempAssign.to.web2 change-commit //depot/OOPBook/TemperatureAssignment/handout/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempAssign.to.web”
run-TempAssign.to.web3 change-commit //depot/OOPBook/TemperatureAssignment/solutions/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempAssign.to.web”
run-TempAssign.to.web4 change-commit //depot/OOPBook/TemperatureAssignment/noApplets/TempCalc.pdf “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TempAssign.to.web”
run-VMInitPaper.to.web1 change-commit “//depot/Concutest/vmSyncPoints/Synchronization During Java VM Initialization and Termination.pdf” “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% VMInitPaper.to.web”
run-VMInitPaper.to.web2 change-commit //depot/Concutest/vmSyncPoints/*.log “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% VMInitPaper.to.web”
run-laptjavac.to.web change-commit //depot/Concutest/laptjavac/jars/*.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% laptjavac.to.web”
run-tcSubtypingPaper.to.web change-commit //depot/Concutest/tcSubtyping/tcSubtyping.pdf “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% tcSubtypingPaper.to.web”
run-tcrt.to.web1 change-commit //depot/Concutest/ClassLoader/built/tcrt.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% tcrt.to.web”
run-tcrt.to.web2 change-commit //depot/Concutest/ClassLoader/built/tclib.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% tcrt.to.web”
run-tcrt.to.web3 change-commit //depot/Concutest/ClassLoader/built/tcrt.javadoc.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% tcrt.to.web”
run-tcrt.to.web4 change-commit //depot/Concutest/ClassLoader/built/tclib.javadoc.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% tcrt.to.web”
run-update-tc-javadoc change-commit //depot/Concutest/ClassLoader/built/tc*.javadoc.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /home/mgricken/bin/update-tc-javadoc”
run-subannot-to-xajavac change-commit //depot/Concutest/ClassLoader/built/subannot.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% subannot.to.xajavac”
run-xajavac.to.web change-commit //depot/Concutest/xajavac/jars/*.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-and-update-xajavac.sh %changelist% xajavac.to.web”
run-subannot-to-xajavac-web change-commit //depot/Concutest/ClassLoader/built/subannot.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-and-update-xajavac.sh %changelist% subannot.to.xajavac.web”
run-javacredir.to.web change-commit //depot/Misc/JavaCRedirector/* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% javacredir.to.web”
run-xajavac.to.ClassLoader change-commit //depot/Concutest/xajavac/jars/xajavac.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% xajavac.to.ClassLoader”
run-ant-xajavac.to.ClassLoader change-commit //depot/Concutest/xajavac/jars/ant-xajavac.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% ant-xajavac.to.ClassLoader”
run-ant-xajavac.to.web change-commit //depot/Concutest/xajavac/jars/ant-xajavac.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% ant-xajavac.to.web”
run-ant-xajavac.to.web change-commit //depot/Concutest/xajavac/xajavac-apache-ant-1.7.0/src/main/org/apache/tools/ant/taskdefs/compilers/Xajavac.java “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% ant-xajavac.to.web”
run-617seminar.to.web change-commit //depot/Concutest/seminar/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% 617seminar.to.web”
run-617seminar.to.web2 change-commit //depot/Concutest/seminar/… “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% 617seminar.to.web2”
run-resume.to.superscalar change-commit //web/mgricken.cs/tmp/resume* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-superscalar”
run-resume.to.owlnet change-commit //web/mgricken.cs/tmp/resume* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-owlnet”
run-cv.to.superscalar change-commit //web/mgricken.cs/tmp/cv* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-superscalar”
run-cv.to.owlnet change-commit //web/mgricken.cs/tmp/cv* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-owlnet”
run-references.to.superscalar change-commit //web/mgricken.cs/tmp/references* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-superscalar”
run-references.to.owlnet change-commit //web/mgricken.cs/tmp/references* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% resume-to-owlnet”
run-concjunitrt-ClassLoader-to-concjunit change-commit //depot/Concutest/ClassLoader/built/concjunitrt.jar “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% concjunitrt-ClassLoader-to-concjunit”
run-SIGCSE2010.to.web change-commit //depot/Concutest/SIGCSE2010/pdf/SIGCSE2010-Ricken-Test-First-Java-Concurrency-for-the-Classroom.pdf “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% SIGCSE2010.to.web”
run-SIGCSE2010.to.web2 change-commit //depot/Concutest/SIGCSE2010/assignment/sigcse2010-java-concurrency.zip “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% SIGCSE2010.to.web”
run-SIGCSE2010.to.web3 change-commit //depot/Concutest/SIGCSE2010/presentation/SIGCSE2010-Ricken-Test-First-Java-Concurrency-for-the-Classroom-2010-03-12.ppt “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% SIGCSE2010.to.web”
run-TWS.to.web change-commit //depot/ThesisWritingSeminar/talk/TWS-Ricken-Concutest-2010-02-25.ppt “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% TWS.to.web”
run-MintPurdue.to.web change-commit //depot/Mint/COMP600/purdue/Purdue-Ricken-Mint-2010-03-15.* “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% comp600.mint.purdue.to.web”
run-RiceResearchMixer2010.to.web change-commit //depot/Misc/Rice-grad-undergrad-research-mixer-2010/research-mixer-2010-ricken-poster-34-b.pdf “/usr/bin/ssh mgricken@finland.cs.rice.edu /local/mgricken/p4depot/scripts/integrate-branch.sh %changelist% RiceResearchMixer2010.to.web”
[/cc]

I haven’t migrated these scripts yet. I do run Cygwin on my Windows machines, of course, and I could set up sshd on them, but I’m wondering if that is still the right thing to do.

Furthermore, I really wanted to install the Perforce server on vector, the Pentium 3 machine I got over 10 years ago. Unfortunately, one of the hard drives crapped out again, and it’s a PATA drive. All drives are PATA drives. I think it may be time to retire vector.

I’m considering buying a new i7 desktop, which will become scalar, and then making the current scalar, my Core 2 Duo desktop, the new vector. But perhaps I should install Linux on vector then? What distribution? Ubuntu?

Many questions, and of course only a little time on weekends to do it.

Share
Posted in Graduate School, Ramblings | 1 Comment

Print This Post Print This Post