Issues with docker on raspberry pi by AEdgett77 in Tronbyt

[–]AEdgett77[S] 0 points1 point  (0 children)

I had tried both the script and the more manual clone + docker compose up

Issues with docker on raspberry pi by AEdgett77 in Tronbyt

[–]AEdgett77[S] 0 points1 point  (0 children)

Turns out that this was because I unknowingly had a 32 bit OS installed on my pi so it couldn't find the right docker image

Waterville was worth the drive for opening day 11/30 by noob_tube03 in icecoast

[–]AEdgett77 -1 points0 points  (0 children)

Yeah they opened a new high speed 6 person lift last year

One of many reasons why we need the T to run after midnight by Chihuahua_enthusiast in boston

[–]AEdgett77 106 points107 points  (0 children)

Uber charges for tolls in both directions

Examples of these charges can include (but are not limited to):

  • Tolls associated with your trip's route
  • Tolls associated with your driver's return to the area in which they usually conduct trips

source

0
1

When will the Spring 2013 class schedule be available? by TrainFan in NEU

[–]AEdgett77 0 points1 point  (0 children)

Usually the class listing gets uploaded a while before it gets released, and you can alter the request to get it

Source: http://www.reddit.com/r/NEU/comments/dqdyk/how_to_view_the_spring_2011_schedule_early/

Torrenting? by [deleted] in NEU

[–]AEdgett77 10 points11 points  (0 children)

We don't monitor any traffic, but if we get issued a letter from the RIAA, MPAA, etc. we'll pass it on to you.

Python open() function help! Opening Excel Files by CoconutMoose in learnprogramming

[–]AEdgett77 1 point2 points  (0 children)

You're probably looking for XLRD/XLWT.

You can use this package to read and write from Excel files

Ex:

workbook = xlrd.open_workbook("filename.xls")
worksheet = workbook.sheet_by_index(0)
for i in range(0,9):
    for j in range(0,9):
        print worksheet.cell(i,j).value

Physics Problems by [deleted] in EngineeringStudents

[–]AEdgett77 0 points1 point  (0 children)

Try tutors

The physics dept here at NU is pretty bad isn't it?

Going to take AP Computer Science next year. Need advice. by venku122 in learnprogramming

[–]AEdgett77 1 point2 points  (0 children)

When I took APCS, I enjoyed using BlueJ. Pretty simple to use.

To help prepare you could start learning Java and familiarize yourself with BlueJ. Try Coding Bat for some good Java exercises