Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
User Journal

Journal Journal: The first 5 minutes with an iPad 9

Work is using iPad mini tablets for a project. They gave me one so that I could better support the project.

I've been busy and out of town so this morning I finally got to unbox it and set it up. The box is nice. The tablet itself feels heavy. The instructions to set it up and feedback were awkward. There was a little spinner thing and sometimes it would be spinning so I'd sit and wait to see what was going to happen but nothing would happen. It was waiting for me to hit "next". The next button was not always in the same place.

Whenever I had to type something I realized that the iOS keyboard is horrendous. It is so very, very bad. I always hear that people can't use Android because it isn't quite polished enough. How does any person use that horrible iOS keyboard, if they are picky about things. You can't even tell if you are typing upper or lower case unless you look to see what color the little shift key is. Unreal.

And it apparently wont charge off my desktop or laptop because those usb ports don't send enough power. Really? I read that turning off the screen will allow it to charge very slowly. So that's what I've done.

How do people make such a big deal about this platform. I haven't even gotten around to actually using it and I already don't like it.

User Journal

Journal Journal: Chrome New Tab Behavior 4

Opened up Chrome this morning and the page it loads on start is not my apps - which is what I want to see immediately. I had set it to always start with apps. Thought to myself, "Huh, I must have accidentally switched it somehow." and started looking to fix it.

Noticed that there is a new item on my bookmark toolbar that is called apps.

Do a little searching and realize that this is how it works now. I can't change it back through settings - looks like it will take poking around in the guts of chrome or finding an extension that fixes this.

What do I get instead of my apps? 8 thumbnails of my most recently visited sites and a google search text box. Right below my omni bar which I use to search with google. Now I have to add in a click to a little icon up in the corner - it feels and looks very much like using the corners on my wife's new windows 8 machine. Which is pretty funny if you think about it.

On a side note - Windows 8 isn't that bad in my opinion (for windows). My wife really likes it and I think it's pretty easy to use. It still has some annoyances that Windows has always had and maybe a couple new ones, but on the whole I think it's pretty similar to win 7 with some nice additions. Her laptop does not have touch but we haven't found it to be an issue. But I wander.

I guess Google beta tested this new tab behavior and received tons of negative feedback. I found this article saying be glad the new tab changes wont make it out of beta but unfortunately that guy was wrong. I found a google groups thread asking for feedback and it's almost completely against the change - but that apparently didn't outweigh whatever other considerations were pushing for the change.

I don't care if they want to play with the most viewed sites format - but I really don't understand taking away my ability to choose the apps view instead and forcing me to an extra mouse click to get to it. Seems to be the wrong direction.

Enough griping for today - got stuff to do.

User Journal

Journal Journal: California Scholarships for Undocumented Immigrants 2

I just read an article that interviewed a few kids taking advantage of college scholarships even though they aren't US citizens. Undocumented Students Get First Grants
 
I'm all for immigration reform and I think the US ought to be embracing immigration from Mexico in a big way. But this article made me sad. Look at what these kids want to study. Psychology? In my house we call that "getting a degree in retail management." Mostly because everyone I know with an undergrad degree in psych works as a manager in retail.
 
Please - give them scholarships - in fields that we need. medicine, technology, engineering - something. Not psychology and political science.

User Journal

Journal Journal: Windows Sound

I was doing some work and listening to music. The music was coming from the desktop that sits in my entertainment center, connected to my TV via hdmi. I'm no audiophile and my tv's audio is good enough for me. It was playing an Audioslave album in Google Music.

In the middle of a song the audio just cuts out. Total silence.

I kick over to a regular tv channel and it is fine. So the tv works.

I check the volume control and nothing is muted. Then I start digging around and there are a crazy number of places that have audio options/hardware settings. I was thinking, "Man I wish this was KDE - so much easier." I finally tracked it down. I'm not sure what happened - maybe an update to a driver for the audio stuff? There's a new audio manager program and I have no idea what started it or why it decided to change my default audio device, but it did. The machine had been up and running for quite a while. And the easy to find interface wouldn't let me switch the default. I had to find another menu via the control panel.

Pretty funny.

User Journal

Journal Journal: Sunday Comics

I never thought about this before. I was 11 when Bloom County started and 26 when Calvin and Hobbes ended. I consider myself very fortunate to have had the opportunity to read both as they were published.

I don't think either have been matched since. Not for a guy growing up anyway. I don't want to take anything away from Trudeau and others. But for me that was an amazing thing that my youth and those strips lined up so perfectly.

User Journal

Journal Journal: Journal Archiving re-re-re-revisited 3

I have written many times about how much I'd like to have a tool to archive my journal entries here. I've also written about the very nice tool that LeoP made. (wow - I wrote about it four years ago) But that sucker is now broken.

It probably says a lot about me that I'm interested in saving these. It's just me rambling on and most of it is rather limited in the length of time that it is relevant. But there's a part of me that doesn't like the idea that if slashdot is shut down tomorrow that all my journal entries go with it.

So anyway - I took a couple stabs at getting things working but usually got stuck and just got busy with other stuff. But now I have a script that I think will work.

I am not a proper programmer like Leo. There is no error handling. You need to put your username and password into the script. And I ran into a really odd case that I haven't handled yet that made it break. I had a journal entry listed, but when I followed the link to the entry I got a message about it not being there or that I couldn't see it. Strange. I hit the "edit" link from the list. That brought it up. I saved it from there and now it seems to be working properly. I've started the script again to see if it gets past it. (it did)

I'll post the script here and link to it so you can grab it if you are interested. I don't know what happens if you don't have a subscription. All this is built around how the site works for me right now.

I think it is also worth pointing out that it is rather slow. It takes anywhere from 1.5 - 3 seconds per journal entry. It took 52 minutes to download my 1,436 entries (Don't look at me like that). It doesn't look like it is doing anything when I run it in Konsole - that is because it outputs the html of each page and they always end the same. But it should either print out DONE when it finishes - or stop when it hits an error. I know, pretty amazing work.

Each entry is written to a text file. In the file is the url to the entry, the timestamp from when it was written, the title and the body. The body is in html format with the div that is wrapped around it in place.

Another file is created, linklist which will have every journal url in it. (without the http: part - it starts //)

I have not done anything to save comments yet - though I think I'd like to get that in there too. Quite a few of my entries are worthless without them. But that will have to wait for another time.

You can see it below or just download it. jarch.py

It should also be obvious - but just in case- you will need Python 2, twill and beautifulsoup installed to use it.


from twill.commands import *
from bs4 import BeautifulSoup

nick = 'your nickname here'
password = 'your password here'
uid = 'your user id here'

go("http://www.slashdot.org")
fv("3","unickname",nick)
fv("3","upasswd",password)

submit()

go("http://slashdot.org/journal.pl?op=list&uid="+uid)
all_links = showlinks()
lf = open("linklist",'w')

urllen = 25 + len(nick)

for item in all_links:

        if item.url[:urllen-1] == "//slashdot.org/~"+nick+"/journal" and len(item.url)>urllen:
                print>>lf,item.url
                jurl = "http:" + item.url
                go(jurl)
                soup = BeautifulSoup(show())

                journalid = soup.find('span',{'class':'sd-key-firehose-id'})
                bodytag = "text-" + journalid.string
                titletag = "title-" + journalid.string
                entrydate = soup.time.string[3:]
                entrytitle = soup.find('span',{'id':titletag}).text
                entrybody = soup.find('div', {'id': bodytag}).prettify()
                journalfile= "jfile" + journalid.string

                f = open(journalfile,'w')
                f.write(jurl.encode('utf8')+'\n')
                f.write(entrydate.encode('utf8')+'\n')
                f.write(entrytitle.encode('utf8')+'\n')
                f.write(entrybody.encode('utf8'))
                f.close()

print("DONE")
lf.close()

User Journal

Journal Journal: Pulled the Plug on Nvidia

I couldn't take all the problems and constantly fighting with my system any more. This morning I took the Nvidia card out of my Linux desktop. I plugged the second monitor into my little Windows laptop and I hooked up my main monitor to the on-board intel video.

All my issues are gone. All my software runs, the system does what it should, looks the way it should, etc. I'm not thrilled to have to work this way - synergy makes it a little more palatable but this is where I'm at for the time being. A little while down the road I'll try it again and see if things improve but for now I've got stuff to do.

User Journal

Journal Journal: Recent Travel 1

The family and I spent a couple weeks out and about. It was pretty fun - and a little stressful at a couple points. The stress parts were due to our ignorance mostly.

July 12th we drove from our home near Budapest down to Tetovo, Macedonia where we spent the night. Tetovo was a bigger place than I anticipated and I did not know it's inhabitants are mostly Albanian and Muslim. So when we rolled into town around 9 pm it was super busy as the sun had gone down and folks were out and about. It was a lot of fun. We had a light dinner and crashed as we were hitting the road again the next day.

Oh - when we crossed the border into Serbia they gave us a flyer encouraging us to drive safely. That's the first time I've seen that and I thought it was smart. I don't know if it helps but it seems worth making the effort.

We left Macedonia in the morning, on our way to meet friends in Tirana, Albania. All our driving to this point had been on good motorways. As we got closer to the Albanian border it switched. I was following the GPS and we'd never driven this way before. Our Garmin and my lack of familiarity with driving outside EU/Schengen were about to make the day interesting. The first wrinkle came as we were winding our way through the mountains - I looked at our track and realized we weren't doing what I'd seen when I'd previously looked over the route on google maps. We'd swung north when I thought we'd head south. I called my buddy in Tirana, but just as I started talking to him we rolled into the border crossing. So I got off the phone and told him I'd call him back once we were through into Albania.

The Macedonian border guard took our passports and car papers. He asked for our "green paper" and I said, "You have it there." I thought he meant our vehicle registration. What he actually meant was our insurance paperwork for the car. I had a paper proving I had paid for insurance but the not green paper showing what countries they covered. I had until this point never known we had or would need such a thing. (Being an American with little experience driving about here bites me in the butt on occasion. I'm learning slowly.) He said, "Well, we don't know what we are going to do with you. You should not have been allowed into Macedonia, you shouldn't have been driving around in our country without proper insurance." So it was a little tense for a while as we waited and a few men conferred. This guy was rather imposing and took some time to shout at some Albanians for a while who were coming into Macedonia. Finally he said, "We are just going to let you go. You are leaving, so you can't have problems here now. But this is a once in a lifetime, never again thing. When you get to the Albanian crossing they will make you buy insurance." We were just relieved to get going and we moved ahead to the Albanian side. They didn't ask or say anything about the insurance, so we were good.

Once I got through all that I called my friend back. He said, "You went the wrong way and you need to turn around and go back." I said, "I really don't want to try to go back into Macedonia. I feel fortunate to just have gotten out without any trouble." He said, "Well you are on a bad road and it is going to take you a lot longer."

He was right and it probably added 3 hours or so onto our trip to Tirana. The Garmin didn't have correct data to differentiate between different roads. What we were on was rough but it kept wanting me to turn onto stuff that was completely impassable in our Avensis. So we stopped occasionally to ask for directions. We stopped occasionally for sheep and cows too. The scenery was stunning. We were in the mountains and saw beautiful rivers, farms and lakes. It was just very, very slow.

We made it to Tirana and driving around in that city made me yearn for the country roads. It was an insane free for all of traffic. The city population has outgrown the infrastructure and it was like muscling yourself through a packed crowd in a club - but behind the wheel. Fortunately after meeting our friends and getting a quick lunch we were on our way down to Vlora.

Vlora is south, on the coast. Driving continued to be a bit crazy but when we got to our hotel the scenery was just breathtaking. We loved it. We were there a week, tutoring Albanian students in English. It was a blast. I'm a pretty reserved guy. My wife was thrilled when we learned to dance in traditional Albanian style and danced together for the first time since our wedding. (The first and only time I've ever danced prior to this trip.) The students were mostly university students from the area, with a few highschool students mixed in. They were a blast. When the young guys found out I worked in IT they would always ask me if I "hack". It was pretty funny. They weren't using it in the positive sense at all and I always laughed and told them I spend some amount of time working on not being hacked rather than trying to hack others.

The food was good, the music was good, the scenery was stunning and it was just a super pleasant time. I like the Albanians relaxed take on time. I never felt like I was in a rush. I also had a friend back in Hungary get the insurance papers I needed and he emailed me a copy of them and I printed that out.

When we were done, rather than going home the way we came we took a ferry from Vlora to Brindisi, Italy. We drove from Brindisi to Pompei. It was beautiful countryside and my first visit to Italy. It was amazing and I had to be careful to keep my eyes on the road. We spent the better part of a day touring the ruins of Pompeii. The next day we went to the top of Mount Vesuvius. We went right from there up to Florence. (We didn't have a lot of time before I needed to get back to work.) We didn't scratch the surface of Florence but walked around to a lot of the more popular sites, visited the DaVinci museum and the Academia museum. We were there two nights and then we drove back home. It's about 10 hours from Florence to where we live. How close things are in Europe still blows my mind, especially when I actually experience it.

I don't know if my kids really appreciate how fortunate they are to get to see and experience all of this. My son's favorite part of the whole trip was looking for cool rocks on Mount Vesuvius. I think he gets burned out pretty quickly on looking at old churches and statues. My wife and I though, we were just in awe for almost all the time we were gone.

We were in down town Budapest this last week-end. (Not many people out - maybe because it was crazy hot or maybe everyone was up at the Hungaroring track, either way it was fun to have so few tourists around on a summer day.) And I have to confess, having visited Florence has tempered some of my view of the city. Which bothers me a little. But Florence was just so crazy amazing. And I love Budapest but man. It gives me interesting stuff to think about anyway.

I'm back in my office. We wont go anywhere for a bit. In September I'll be back in Albania but that will be a short trip to train some people. And we have so many, many places we still need to see but a part of me just wants to go back to Italy and see all the other things we haven't seen yet. Though I think our next family trip will be to Germany. We still haven't visited my mother-in-law's home town there. My wife really wants to do that and so do I. And while I love the Mediterranean flare for life and food, I look forward to the German approach to driving.

User Journal

Journal Journal: Video Sadness

I was reading this front page story about a 3 monitor set up and I have to confess that it made me feel rather inadequate. I don't want three monitors - I just want two but it's a real pain. I got home and back in the office last week and ran updates on my fedora machine. I don't remember where things stood last I checked but as of that update - starting Firefox means my systems completely locks up and I have to force it to shut down with the power button. Chrome works - but if I close it after using it for a bit - same deal. The entire system locks up and nothing I do with keyboard or mouse has any effect. I have to power it down and start it up again. This is all with the Nvidia drivers. If I try to run the Nouveau drivers I can't get the system to boot at all - which is fine as they didn't work well before anyway. The proprietary drivers sort of work - with the exceptions noted above.

Oh - shut down/restart wont work from the launcher. Nothing happens. I have to open a terminal and shut down from the cli. Locking works but only to lock and unlock. Trying to switch users ends up with a non-responsive machine that must be hard powered down.

It got to me enough today that I thought about switching distros. Because I see a lot of people are using KDE and Nvidia and not having all these issues. But maybe it is my card and so it wouldn't matter. Plus I know Fedora best so I'm reluctant to change. I could go back to using the on board video and one screen but I really don't like working that way. Maybe I will have to do it though. I'll give that some serious consideration this week. A lot of what I do on the second screen is looking up documentation and what not - windows is good enough for that so my little travel laptop hooked up to the second monitor would suffice.

User Journal

Journal Journal: I Can't Leave Well Enough Alone 10

My desktop machine at work is now running Fedora 19. It just came out, I'm busy - what the heck is wrong with me?

So something about how stuff works regarding the nvidia drivers, the kernel and what not changed. So that saga continues. Getting both my monitors working was a real exercise in pain. I tried a lot of stuff before I ended up with it working and I went down so many different trails that I don't remember for sure how I got here so I'm not even help to anyone else. Stand out moments were that lots of paths that included just plugging in the card and both monitors led to lock ups at various points in the booting up or getting KDE going process. So while I don't remember specifics I can say that in general- I did the main install using the on board video (intel) and a single monitor. When I got that all working (mostly) then I put in the Nvidia card and hooked it up to a single monitor. Then I installed the nvidia drivers. All was fine (mostly) and it was hooking up that second that made everything go square shaped.

What fixed it? I don't freaking know. The order of how things went? What was hooked up first and then second? I really don't know. I just know now that the nvidia drivers are working and it is using both screens and they look rather nice. That's all I know.

Oh but get this -- I posted a lot about my struggles with Firefox. Well right at this moment Chrome crashes X and kicks me back to logging in. Firefox works fine - and google hangouts works fine with Firefox. What?! I don't know. I can't explain it. It just is what it is. Starting Chrome makes SELinux complain - maybe that's related. Maybe the Google folks will fix it at some point. They update Chrome pretty regularly. I like Fedora better anyway. And Opera works fine. Konqueror too of course. Oh man - there were some early attempts where Konqueror was all that worked and those were fun times.

I've got the new kscreen deal for setting up screens. And it's so much better than the old stuff but frankly I'm terrified to go anywhere near it right now. I'm sort of scared of messing stuff up. The nvidia x server settings program runs and that seems sufficient. I had fun earlier when using either of them locked up the system and it wouldn't take input from the keyboard. That went away do to some amazing, smart thing I did without knowing it.

It's not all that crazy different from my F18 setup. Oh - I've got MariaDB now instead of MySQL and they don't have the MySQL workbench (data modeling is still borked) in the repos any more. I can't say I'm totally on board with this decision. Now I've got to keep track of it and update it when appropriate. And I get that Oracle is the evil - but whatever. If I'd been running the world back in the when it would be PostgreSQL everywhere and I wouldn't even have to worry about this.

Here's a fun error message that apparently doesn't really matter - "A start job is running for Wait for Plymouth Boot Screen to Quit." Have fun parsing that puppy.

User Journal

Journal Journal: MySQL Workbench on Fedora 18 64 bit - Updated

Update -- The query and admin functionality all seem fine. It's just the modelling portion that tanks.

Not sure what happened but the data modeling portion (maybe more - haven't checked) of MySQL workbench is completely unusable on my Fedora 18 machine. I've tried everything I can think of and Google doesn't turn up anything - so I don't know what the cause is, but I can't use it. Which is too bad. I like the tool a lot. I get it up and going but pretty quickly it becomes slow to the point of appearing unresponsive. Later when I feel like messing with it more I'll try to dig around and see if I can figure it out. I don't have to use it - I can just write out everything but sometimes visual tools like that help me process - and I could draw it on paper but it's nice to make my picture and then just get my sql with it automagically.

And while I'm here - in somewhat related news - I reported earlier that swing fonts were looking better on my system and I wasn't sure why. I can now confirm that if I don't use OpenGL as my compositing type they don't look so good. The java options for font rendering seem to have no impact but if I switch compositing to XRender the font appearance become crappy. This is with the NVidia driver. So that feels a little bit like less of a mystery.

User Journal

Journal Journal: Stuff Stoolpigeons Like 2

I finished the new season of Arrested Development on Netflix and I liked it. I'm almost done with Eureka and have started watching Longmire, which I really enjoy so far. (I think I'm 7 episodes in.) I have fun spotting BSG people when they pop up in stuff - caught a couple in the new Superman movie over the week-end. My family really liked Man of Steel. I've never been able to really get into Superman as a super hero.

I'm driving down to Vlora, Albania in a couple weeks to work at an English camp. Then we are going to take a ferry to Italy and drive home up through Italy with a stop to check out Pompeii and the area around there. Should be a lot of fun. We'll drive down through Serbia and Macedonia. All new places for me so I'm looking forward to it.

We've had a really strange spring and summer here, weather wise. It was cold, then it was flooding, then it got hot. Now it's nice again. Due in large part to the flooding (my guess) we have a lot of mosquitoes about so it makes it more difficult to enjoy the very pleasant evenings that have arrived. I'm so picky. I'm enjoying the weather though (and I never would have guessed this) I find myself looking forward to fall and cooler weather. I don't like bitter cold but fall and winter here are pretty mild and that I like a lot.

AWOLNATION - it's not life changing music but Sail is a fun song. I'm not afraid to like pop stuff.

I enjoy watching StarCraft replays. I pretty much only watch stuff produced by HuskyStarcraft. The guy is a great broadcaster. He has a series - Bronze League Heroes. I highly recommend it. A lot of fun to watch and makes me feel less bad about my StarCraft skills - or more appropriately the lack thereof.

Croatia is in the EU now. Just need to get it in the Schengen and I'll be a happy camper. Beautiful, beautiful country and not having to stop at the border will make it just that much more of an easy choice when we have some time off. GIS Split or Plitvice and you'll see what I mean.

I've enjoyed reading about the new consoles coming out - but it's funny - we have our wii and mostly still play gamecube games on it. We play a couple wii games but the most popular are the older games. By the time the consoles after these new consoles come out my son will be a teenager and we'll probably upgrade then. Though he plays a lot of minecraft - so that's newer so maybe we'll just stick to pc stuff. I dunno. He really wants a tablet - so we are waiting to see what the new Nexus 7 looks like.

Myself - I'm a casual gamer right now. I just don't have the time to dig into something that takes more commitment. I never even got very far into Skyward Sword. And that's just messed up. In fact if I did have time, that's probably what I would play.

All right - that's the current state of the entertainment world for the stoolpigeon. I'm not reading anything for fun right now - so no books. Maybe later.

User Journal

Journal Journal: PackageKit and Apper

Fedora has yum for installing packages and I am a big fan. In front of yum is PackageKit. PackageKit checks for updates and does some work on my behalf. As I use KDE - the gui provided for interacting with PackageKit is Apper. Apper has been around for a long time and it's a nice way to look for packages and software that I might want. I like to browse through it sometimes and see what is up. When it installs updates for me it lets me know if I need to log out or reboot for everything to be in effect.
 
The down side is that Apper absolutely sucks at letting me know what is going on. During a normal update what it presents as information to the user is usually completely disconnecting from what is actually happening. It will, for example, say it is downloading and sit at 10% for a long time and then suddenly jump to cleaning up and some much higher percentage. If there is a problem it will fail without really giving any meaningful feedback on what went wrong.
 
It's interesting because I would assume the point is to make it easier for people but in reality it does just the opposite. I really need to stop using it for updates and stick to only using yum from the command line. If I open up console and run a 'yum update' I get constant feedback of exactly what is happening. I never have the issues I have with apper. If it fails it tells me why and often gives me very useful suggestions on what to do to fix things. I love yum and how friendly it is. Apper on the other hand is just a way to cause myself grief.
 
I'm thinking about this especially today because it made my morning difficult. I haven't been in the office in quite a while. I knew I'd have a lot of updates waiting for my desktop system. Sure enough the little notifier icon was there. Now - I didn't initiate the updates from there. KDE now has a little panel widget that will let you start updates without opening apper up - but it sucks too. It gets ahead of itself and tells you that you need to log out/reboot before the updates are even all applied. So when I see the icon there, I just opened apper to the updates tab. I looked over what was available and told it to start.
 
It chugged along for quite a while and ultimately just sat there - doing nothing that I could tell. There was no disk activity - I couldn't see anything going on but it hadn't finished either. Eventually I killed it and restarted the machine as there was a kernel update.
 
Well - that created quite a mess. With yum I was eventually able to get it all cleaned up. I had some duplicate packages, some unfinished transactions and some other nonsense. So as I said, my new promise to myself is that all future updates take place in bash with yum.

User Journal

Journal Journal: Fedora 17 and Scanning from HP All-in-One 3

I have an HP Officejet J6480 All-in-One that we use for printing and scanning stuff. It works pretty well. I had managed to avoid inkjet printers until the kids got to school age and then we needed color. So the ink thing is crazy (and I can't find the cartridges here in Hungary - which is really annoying. I think HP limits what they sell in different regions to control pricing. Stupid.) But other than that, I've been pretty happy with it.
 
When I moved our PC in the office out to the living room and hooked it up to the TV - I put my old laptop running Fedora 17 in its place. I'd never used that machine with a scanner before so I had to figure out how to set it up. I googled around a bit and found a few things I needed to install but the various parts were spread around, so here it is all in one spot.
 
I probably didn't need to install all these things. But I figured some might be helpful so I grabbed them anyway. Disk space is cheap. The packages I installed were

  • sane
  • sane-backends-drivers-scanners
  • xsane
  • simple-scan
  • skanlite
  • hplip
  • hplip-gui

Now I think if I'd done hplip-gui it probably would have pulled hplip as a dependency. As it was this took very little time. Just quick "yum install" and the package name. Once I had them all I ran hp-setup and walked through a little wizard that made it all work. It was very easy. Skanlite is the main KDE scanning application I guess and since I use KDE that's what I went with. It works pretty well and does what I want. I have just scanned stuff as images. I haven't tried messing around with OCR. I haven't used simple-scan. I just grabbed it to have other options if I needed to trouble shoot any issues.
 
The printer/scanner is on the network and not connected to the computer via usb. The HP setup program handled this without issue. The whole thing was just very, very painless and I love sharing stories of when Linux works so well.

User Journal

Journal Journal: Pretty In Pink

Just watched it for the first time. Nostalgia city. They should have kept the original ending.

Slashdot Top Deals

"Ninety percent of baseball is half mental." -- Yogi Berra

Working...