Jay McGavren's Journal

2013-04-12

Linux - What to Learn First

Originally wrote this as a Facebook post to guide my brother, who’s been stuck in Windows-land for a long time and needs to learn some Linux for work…

I dunno why there still isn’t a single definitive reference I can point someone to… Too big a topic, I guess.

Step 1

Acquire a good reference. Ask around at the office - everyone will have a favorite book. Here’s a decent one I’ve used: Unix in a Nutshell - Fourth Edition. (Cheap older edition here.)

Step 2

Learn to ignore elitists who tell you you’re going to shoot your eye out. You don’t need to know everything - wait until you get stuck, and then Google the error messages you get. (In the bad old days you used to be able to erase your whole file system, but nowadays ordinary users aren’t given the kind of system permissions that would let them do that kind of harm.)

Step 3

Learn some commands. I spend the most time with these:

SSH: Get to prompts on remote systems. Learn this one inside and out, including passwordless login via public/private keys.

man: Bring up a manual page on any command. Reading manpages is itself an art, so find a good tutorial on fully understanding manpages.

bash: Learn this shell; it’s the most common. It will change the way you work with files forever. Learn how to pipe programs’ standard input and output. Learn how to redirect output to a file.

ls: List files and directories. Learn this inside and out.

find: recursively search the whole hard drive for files and folders.

xargs: run commands on the files brought up by ls and find.

chmod: Control who can read, write, and execute (run) files. This will cause you grief if you don’t know it.

scp: Secure CoPy. Transfer files. Combines with SSH to do it passwordless-ly.

rsync: Even more powerful copying tool. Again, combines with SSH.

less: Read text; something you’ll need to do a lot. man and other programs pipe output through less, so learning it is worthwhile. Especially learn its string search capabilities.

vi: If and only if you have to edit files while they’re sitting on a remote server, learn vi. It’s a pain, it’s counterintuitive, and you’re going to be expected to know it.

cron: Schedule commands to be run at a particular time of day/week/month/year. Look like you’re working hard when you’re not even at the office.

Step 4

Get a buddy. Until you have some experience, you’ll want someone to confer with on the best way to do things. If a local buddy isn’t available, get good at Googling and posting questions on forums like ServerFault.

…all that’s a bit much, I know. If you learn only two of those, learn SSH and bash. Any time spent learning these topics will pay dividends, even if all it does is save you time.

Read more...
2013-03-08

I brought some SNES games to Heatsync Labs’ Vintage Game Night in Mesa tonight…

Attendee: “Cool, Tetris Attack? You guys should be playing this one.” Me: “You show excellent taste, sir. I bet you’ll appreciate this…” [I reach into a box to retrieve my prized Japanese import…] Attendee: “Oh, did you bring Panel de Pon?”

…There’s no impressing anyone any more. :P

Read more...
2012-12-05

Try R!

The Try R course is out on Code School! All lesson content by: me! Badass remote executor (that shows your graphs in the page!) by Thomas Meeks. Challenge implementation by me, Adam Fortuna, and Casey Jenks. Sponsorship by O’Reilly, which means the course is free to you!

It takes about an hour to complete, it’s pretty fun, and you’ll learn a language that can help you present data in compelling ways. Hope you’ll go try it!

Try R

Read more...
2012-09-02

SVG Tweets and HTML5 Canvas Tweets are both a bust...

…A data: URL can hold everything fine, sure, but I can’t get ‘em under 140 characters (at least, not while doing anything exciting with them). There’s just too much boilerplate. I’m under 256, at least!

Canvas - Rotate and Scale

Paste this into your address bar:

data:text/html,<canvas id='c' width='999' height='999'/><script>c=document.getElementById('c').getContext("2d");for(s=1;s<99;s++){c.scale(1.1,1.1);c.rotate(4);c.fillText("☃",1,2)}</script>

Or, just click this link.

SVG - Animation

SVG animations are EXCITING! (Or, in the wrong hands, seizure-inducing.)

Paste this into your address bar:

data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><g transform="translate(500,400)"><text x='-15' y='5'>SVG!<animateTransform attributeName="transform" type="scale" values="0;99;0" dur="0.3s" repeatCount="99"/></text></g></svg>

Or, just click this link.

Well, it was a fun experiment, anyway. And there may be techniques for shaving off a few bytes out there; I might cram something worthwhile into a tweet yet.

Read more...
2012-09-01

Time for the FAA to join the 21st century.

Sent at the encouragement of this LifeHacker article.

Date: Sat, 1 Sep 2012 15:00:08 -0700

Subject: Please allow electronic devices during takeoff!

From: Jay McGavren

To: PEDcomment@faa.gov

Dear sir or madam,

I will not claim to have data regarding whether non-radio-transmitting electronic devices (or even those that do transmit) interfere with aircraft equipment. I’m sure the research resources of the FAA and other institutions far exceed my own in that regard.

I can, however, tell you that what I hear as an ordinary consumer and citizen from reputable news outlets is that they do not, and so it’s really frustrating when I’m asked to stop editing code (I’m a web developer who bills by the hour) and sit idle in observance of a rule that I believe has no benefit for anyone. I can only imagine how foreign visitors to the U.S. must feel.

Please, revisit the issue of whether electronic devices during takeoff are safe - I believe the FAA will find that they are.

Sincerely,

Jay McGavren

Scottsdale, AZ

I encourage you to send your comments as well! Copy-paste my letter if you need to (though we’ll both have more effect if you personalize yours a bit).

Read more...