Hee. Wolfram Alpha also helped me find wind speed and direction for my area. So it's funny and helpful.
Okay! So I've got a 11x17 document that I use as my quarterly newsletter. I generate it in Adobe InDesign, using a .pdf of my newsletter template as a graphic guideline, which I then hide. I (up until Tino did me in) then print it with my large format printer on my preprinted newsletter paper, front and back on an 11x17 sheet of paper, fold it, seal it, stamp it, and send it on its way.
However, all this costs me a good bit of money, and what with most people having access to this internet thing and all, I want to start sending out an email version. But still pretty, with the photos and generally looking like the print version. So I export my InDesign document, with the newsletter template graphics back visible, to a .pdf.
Which all works like a charm. Except that probably most people don't actually have a large format printer, and it's unwieldy to read it that way anyway.
So what I want to do is take the 11x17 2 page .pdf and split it into 4 8.5x11 pages. Can I do this? Does anyone know how?
It will be particularly useful to me, because as some of you recall from Natter, Tino broke my large format printer, so it would be great if I could print as well as email the letter page versions. Any help much appreciated.
Liese, I can do that, but I use ISI (Image Solutions)Toolbox to do it (at least the way I am used to). I bet there is a cheap or free .pdf download you can find that will do the trick.
I found it! If your Mac keeps coming up Australian, check the international language settings. Mine were set with Australian English at the top. Changed it to US English (I use Canadian or British sometimes in Windows, but it's never set me asea) and bing.com knows where I am. I may try looking for Gimp again. Not that Australian English should give me French, but I think Canadian French was listed above US English.
Ooh baby!
CrunchPad internet tablet's launch prototype looks seriously slick
We've been following the progress of Michael Arrington's CrunchPad tablet PC for some time now, but this is the first time I think I actually want one. They've just unveiled the launch prototype, and man is it slick.
This web-centric tablet should be announced officially next month, where details like pricing and availability will hopefully be made known. We'll see if it performs as well as it looks.
Ooh - it's like a GIANT iPod Touch.
I was JUST coming in to post an OMGWANT about the CrunchPad.
tommyrot, if you're gonna live in the other half of my brain, how 'bout getting my to-do list done while you're there?
how 'bout getting my to-do list done while you're there?
Sure! As long as you fix this bug that's making stuff round wrong in the SQL Server/MS Access application I'm working on....
Shiny pretty.
Theoretical SQL question: Given a table with the columns employee number, department, and salary, can you create a SQL statement that lists the highest salary per department where the maximum salary is over $50K?
I get that you need to use the max function, a FROM subquery, and group by, but I'm blanking beyond that.
SELECT MAX(top_salary) FROM (SELECT salary AS top_salary FROM salary_table GROUP BY department) WHERE top_salary>50000
maybe?
I'm confused.
Do you want the highest salary of each department, but only if the maximum salary for that department is > 50,000?