My only problem with this setup is that the line numbers are missing. I can pass in the -c flag, or --line-numbers, it doesn't matter: I never get line numbers. And I tried installing enscript on my linux box too and it also leaves out the line numbers. Does anyone have any ideas, or at least know the last working version of enscript?
Info:MacBook Pro (15-inch Mid 2009), Mac OS X (10.7.3), 3GHz, 8Gb RAM, 40GB SSD + 750GB HDD
Is there any way to get a list of all inode numbers on a volume? I have a "find -x /Volumes/thedisk/* -exec stat {} ;" going but requires lots of CPU time. Seems like I should be able to look directly at the file allocation table...oh wait, that is DOS. This is on an HFS disk: /dev/disk0s2 on / (hfs, local, journaled)Â
HiThe usual tale of an Applescript beginner getting lost but, I want to be able to search for a selected membership number within a Numbers spreadsheet, extract that member’s email address and send a message. I have managed to create a script that creates and sends the email but after several attempts I cannot work out how to start searching cells for a particular value and how to extract data from cells in the selected row.
I'm creating a Service in Automator, and would like incorporate an Apple script that will "cut" the first word in any Numbers cell that I select, and "paste" it into the cell directly to the left of the the cell I've selected. Let's assume the column I'm selecting from is Column C. As a very rough start, here is what I have (with some of things I'm trying to accomplish in brackets): on run {input, parameters} try set MyText to input as string set FirstWord to first word of MyText set [remove the first word and a single space from what I've selected]tell application "Numbers"tell table 1 of sheet 1 of document 1 set theRow to [the row of the cell I've selected] set value of cell 3 of theRow to FirstWord end tellend tell end try return inputend run.
/Users/mac/Sites/bithoist/BitHoist-PPC-MacOS-X  -offset 0x0000 /Users/mac/Sites/bithoist/commandLine/bins/aSunbird.bin  -stdout -hex  -r 0x0000,0x002fÂ
I'd like to move quickly to the last 0 in -offset 0x0000.Â
I know about control + a and I found out about esc + f. I do not find pressing esc then f then esc then f that easy. I'd like to at least be able to hold down the esc key and press f's.Â
Could I redefine a word to only be " " (space) in the terminal? Not sure I like this idea.Â
I have thousands of text files that are named with random unique numerical ID in a specific folder. The problem is I want to be able to do quick sort of the files by a category. The category of each text file is always written as the fourth line of each text file. I would like to write an Applescript to append the fourth line of the text file onto the file name with a underscore in-between. (i.e. Category_1235678.txt).
I've been ripping my hair out trying to find the answer to this.
In Numbers for Mac, I need to fill a column automatically with a series of integers (1 - 50) and then the next column with a function that interacts with the first column.
For example:
Column A - 1 - 5
Column B - (value in Column A * 5)
I can't figure out how to do it in Numbers When I try to fill column a with 1 - 50 all it does is fill all 1's and I cant find an option how to make that change so it automatically numbers when I highlight them.
The best I can describe is how in Excel you can type 1 in the first cell, then highlight a bunch of cells and the little box appears that lets you click "Fill Series"
See above title. i get that there's the "degree(cell)" function, but there has to be an easier way to change the settings so you can just input in degrees rather than radians.
like how calculators have a degrees and radians mode, i find it so hard to believe that there isn't one in numbers. if there really isn't, this is an incredibly flawed program.
Double poll here. There are two questions: How much DATA do you have Oo-line?
This is data and not total capacity. This includes all your on-line data: music, images, video, the OS, all of it. It doesn't include back-up data even if it's on-line like Time Machine tho. Just active data.
And of the on-line storage devices used for that DATA totally, what % are they filled to?
For example if you had two 500 GB drives and about 400 GB of data you would answer: "I have < 500 GB of DATA on-line." and,"My on-line storage is between 25% and 50% full.".
i'm having some issues recording in garage band which should hopefully be easy to clear up. i record an instrumental track into garage band through the line-in jack in the back. the track shows up in garage band just fine and plays, but i'm running into trouble recording while that track is playing. i plug my headphones in so i can try to hear the track while i am recording vocals, but i am unable to hear the track. i checked the inputs/outputs in system preferences and output is set to headphones, microphone is set to line in. so i'm not too sure what it could be.
I've had this problem since Friday with my Mac Pro (March 2009) and haven't been able to solve it.
On Friday my speakers suddenly stopped working. After first having confirmed that the speakers were working with another source, I tried headphones both in frontal headphone slot and with the analog line out in the back, both without success. There's a red light in the optical audio out, indicating that it's on for some reason, although I have selected different audio out source. The internal speaker works just fine, only the normal audio out doesn't give me anything.
I found a thread in the MBP section similar to this problem, but solutions for MBP didn't work.
Seems like it should be a straight forward deal, but it's not obvious how to make this happen. I can tell the audio is coming in, as the input levels are reflected under System Pref's. But I can't hear the audio on the line-out speakers and there doesn't seem to be an option to explicitly route the audio.Â
I have a 2nd monitor and hooked up my xbox 360 to it. I have it connected through HDMI and then have a regular audio jack going from the monitor to my Mac Pro. When I open up my sound preferences and select: Line In - Audio Line In the "Input Level" bar goes up and down meaning it is registering or hears the sound coming from my xbox.
For some reason though, the sound will not output from my Mac Pro. My speakers which are connected to Line Out: Built In Line Output still outputs sound coming from my mac pro but it won't output the sound from my 360. Is there a remedy for this?
So quickly again.
Line In - Audio Line In is "hearing" the sound from my xbox 360 as the "Input Level" bar goes up and down.
Line Out - Built In Line Output still outputs sound from my Mac Pro but not the 360.
My line out port on my late 2007 white macbook recently died and I no longer have AppleCare. I never use the line in port on my computer and use the line out quite alot. I have tried all kinds of fixes to fix the problem but nothing works. I would like to use the line in port as a line out port. I am not sure if this is possible so I thought I would ask here if anyone knew of a way.
I've recently switched from the dark side to Apple and am converting an Excel spreadsheeet. The spreadshet keeps track of subscriptions, things that a re due once a year, etc.. One of the spreasheet's formulas uses 'NOW()'.. The user can specify a day-range, like 15, so that the spreadsheet would highlight due dates within 15 days..  MS handles dates in serial numbers which allows date comparisons ( I'm guessing you already know all of this ) .. anyway, For example, the user enters the renewal or due date in a certain cell and then the next cell would subtract that date's serial number from the current date's serial number using something like 'B3-NOW()'.. The resulting number could be cast to an integer and compared to the '15' .. and if the result is less than that, aka 'due within 15 days', then the cell would be highlighted red.. I gave up on the conditional formatting but I don't know how to use the equivalent of 'NOW()'..
Info: iPhone 3G, Mac OS X (10.7.3), Excel to Numbers
i purchased iwork 08. do i need to repurchase for 09 or is there update. has anyone used numbers 09 and is there a reason to update? can i get numbers without whole iwork?
Have used AppleWorks 6 for years - used for spreadsheet application. Range of sheet: A80 thru AG 80. Printing on Canon MX850 requires 2 (two) pages to legibly cover contents. Was told by Apple Tech to use "Numbers" application as found in Snow Leopard for future tech support, as AppleWorks is no longer recognized by Apple. Same spreadsheet was copied from AppleWorks to "Numbers". When asked to print, 48 (forty-eight) pages would be required! Apple Tech was unable to solve problem, after a one-hour telephone call with Level 2 Support.
My macbook is relatively new and, for some reason, the numbers and letters won't type. It seems like I've looked up every shortcut and I haven't found one that works. The track pad and mouse work perfectly, and when I startup my keys will type in my password, but after logging in they stop typing. The F keys and the command and control and option keys also work along with delete and the arrows but enter and neither shifts work.
When using Time Machine on my new iMac the number of megabytes remaining for backup seem to be mistaken. Each time it starts up is says that it has about 925MB remaining to back up. It will then back up about 2MB and then it will finish that. It then says preparing and will do about a 1MB backup and will say it is finished.
I just cant get numbers form app store. Every time I want to get it, it shows "There was an error in the App Store. Please try again later. (100)". And no matter how i try, it is just not downloading...
I am building a rendering of a catering facility I am working with and need to create some funky tables for my template. how I could get more shapes in to numbers to choose from?Â