yellow
Mar 7, 11:48 AM
By using a 3rd party application. Here are 2 choices.
http://www.versiontracker.com/dyn/moreinfo/macosx/15490
http://www.versiontracker.com/dyn/moreinfo/macosx/17924
You might also consider creating a password protected disk image (don't store the password in your keychain :rolleyes: ). And then mount it, copy your.. umm.. sensitive material into it... and then unmount it. Next time you mount it, you will be prompted for the password.
http://www.versiontracker.com/dyn/moreinfo/macosx/15490
http://www.versiontracker.com/dyn/moreinfo/macosx/17924
You might also consider creating a password protected disk image (don't store the password in your keychain :rolleyes: ). And then mount it, copy your.. umm.. sensitive material into it... and then unmount it. Next time you mount it, you will be prompted for the password.
jondob
May 5, 10:16 PM
bump....
Learjet035
Mar 11, 12:52 PM
There is probably an easy way to do this but I can't seem to figure it out. I have Toast 6 installed on my non admin user. Do I have to re-install it on my admin user to use it there or can I somehow access it? I have music on my admin that I want to burn using Toast but didn't want to install again if I don't have to. Thanks!
TreborM
Mar 27, 10:29 AM
I have been using screen in the osx terminal to get serial access, using the following:
screen telnet /dev/tty.usbserial
Unfortunately I can't scrollback in screen, which makes copying long config files a process of :apple:-C, :apple:-V, and repeat. Any suggestions for native serial support in the osx terminal app WITH scrollback?
I do not understand why you are using screen to launch telnet instead of invoking it directly, but try using logging in screen (-L if memory serves right)
Personally I would use tee to make a copy of the output in a file and extract your config files from this file.
Also IIRC Cisco's iOS lets you save and load config files directly. I do not remember the exact syntax but try built-in help...
Hope this helps,
Trebor.
screen telnet /dev/tty.usbserial
Unfortunately I can't scrollback in screen, which makes copying long config files a process of :apple:-C, :apple:-V, and repeat. Any suggestions for native serial support in the osx terminal app WITH scrollback?
I do not understand why you are using screen to launch telnet instead of invoking it directly, but try using logging in screen (-L if memory serves right)
Personally I would use tee to make a copy of the output in a file and extract your config files from this file.
Also IIRC Cisco's iOS lets you save and load config files directly. I do not remember the exact syntax but try built-in help...
Hope this helps,
Trebor.
Formula1freak
Apr 10, 03:40 PM
I was using my case till I bought a Zagg Invisible shield and the case wouldn't fit around the shield, so I had to get a new case, no big deal though.
writeous
Jan 12, 08:36 PM
Thats a ridiculous name. naming a laptop with the word air just doesnt seem to fit, even if it is as light as a sheet of paper...
srf4real
May 4, 07:37 PM
Can I run two external displays from the 21" iMac? One from mini dp with vga converter and one from thunderbolt to vga or hdmi? It looks like the graphics card only supports one external display by the specs.. so what would be the point of using the thunderbolt over the mini display port right?
I would get a 21.5" iMac to go with my two 22" ips monitors if I knew it could work...
I would get a 21.5" iMac to go with my two 22" ips monitors if I knew it could work...
ashwinr87
Apr 26, 04:35 PM
Hi,
in my app, I am trying to move a subview which I popup. This is am doing using UIPanGestureRecognizer and gesture recognizing functions provided by apple here (http://developer.apple.com/library/ios/#samplecode/Touches/Introduction/Intro.html)
So the problem I get is that when I click on the button image and try to move the view, it does not move the view. The functionality works only when I click the button, and then click it and move it. only then does it move the view.
I would like to know what I am doing wrong.
Here is the button code to which I add this functionality
Family Tree Clipart Free.
for Family Tree Clipart
Family Tree - Vector Clipart
From a Family Tree Clipart My
Free Family Tree Outline
the tóth family tree
clipart family tree. Your Family Tree; Your Family Tree. sammich. Mar 22, 08:11 PM. * aperture now correctly handles albums contained in folders when
Family Tree
Clipart Family At Christmas.
family tree maker,
Free+family+tree+clipart
in my app, I am trying to move a subview which I popup. This is am doing using UIPanGestureRecognizer and gesture recognizing functions provided by apple here (http://developer.apple.com/library/ios/#samplecode/Touches/Introduction/Intro.html)
So the problem I get is that when I click on the button image and try to move the view, it does not move the view. The functionality works only when I click the button, and then click it and move it. only then does it move the view.
I would like to know what I am doing wrong.
Here is the button code to which I add this functionality
timmypv15
Jun 22, 09:32 PM
I'll be there, not sure what time (I live about three hours away) so I'll probably miss the opening
bluehill
May 2, 09:38 AM
The performance tool is showing leak at this position( red color).
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
Mertzen
Jan 2, 01:03 AM
Well someone needs to pay their skilled, drunken, lazy mod team .. oh wait ..they don't get payed or even supported ..
lbro
Oct 25, 12:10 AM
Looks really cool, especially the second picture.
steadysignal
May 6, 09:44 AM
enjoy your vaca.
i will be going on one soon too.
i will be going on one soon too.
sparkleytone
Sep 12, 12:58 PM
actually i believe it was macrumors that had the news of the latest g4 out first...BUT...the people who continue to give these forums a newfound bad name drove him off and flamed the hell out of him. wtg mr members.......
Beaverman3001
May 2, 08:24 PM
I found a dead pixel today. Maybe my vision just sucks but, even when I look for it knowing where its at, I can't see it unless conditions are perfect (100% screen brightness, white background, nothing else near it). It really isn't that big of a deal, no screen is perfect.
Spectrum
Dec 9, 01:19 PM
Now all I want is a way to get the behaviour of the OS9 Finder.
The OSX Finder is seriously flawed.
...and this for everyone who suffers from the silly gaudy childish look of OS X and misses the clean elegance of OS 9 (it not necessarily the extension conflicts and the lousy task-threading).
1) The Classic Platinum Theme (http://www.macupdate.com/info.php/id/15581). Installable on OS X using either unsanity.com's ShapeShifter or Duality 4
2) X-Assist (http://www.versiontracker.com/dyn/moreinfo/macosx/10519) or ASM (http://www.versiontracker.com/dyn/moreinfo/macosx/10410) to give you an application switching menu in your menubar.
3) FruitMenu (http://www.versiontracker.com/dyn/moreinfo/macosx/12974) to give you back an editable / customizable Apple Menu, to give you a hierarchical menu-view of System Prefs so you don't have to launch the entire %&## System Preferences pane and then reach with your mouse a second time to invoke the specific PrefsPane you want. And to use as a launcher.
4) WindowShade X (http://www.versiontracker.com/dyn/moreinfo/macosx/12243), to be able to minimize windows the classic Macintosh way, not like some Windows PC-wannabe. (Will also minimize-in-place to a small icon)
5) PullTab (http://www.versiontracker.com/dyn/moreinfo/macosx/18606), to pry that damn Dock's filthy hands off the keystoke combo Command-Tab, thus freeing it up for apps with original rights to it, like FileMaker Pro.
6) To get your Trash can onto the Desktop where it belongs, there are several apps that purport to be able to do so, but I prefer to just use TinkerTool to make everything visible in the Finder, then make an alias to .Trash and put the alias on the Desktop. Find a nice MacOS 9ish Trashcan icon on the internet and paste.
7) Now to dispense with the godforsaken Dock itself. Two choices: you can minimize it practically out of existence by pinning it to the left edge of your screen and then edit com.apple.dock.plist in a text editor, manually changing the tilesize parameter to 1, which will give you a Dock about the size of a pinhead in a place where you won't mouse-over on it very often by accident; or you can nuke it entirely. To nuke it entirely, first copy Dock.app from /System/Library/CoreServices and make that copy a startup item for every user account on your machine (towards the top of the list); then make an AppleScript consisting of tell application "Dock"; quit; end tell, save it as an application, and add that to your startup items (towards the end); then, finally, sudo rm the original Dock.app from within CoreServices. Hickory Dickory, baby :)
The OSX Finder is seriously flawed.
...and this for everyone who suffers from the silly gaudy childish look of OS X and misses the clean elegance of OS 9 (it not necessarily the extension conflicts and the lousy task-threading).
1) The Classic Platinum Theme (http://www.macupdate.com/info.php/id/15581). Installable on OS X using either unsanity.com's ShapeShifter or Duality 4
2) X-Assist (http://www.versiontracker.com/dyn/moreinfo/macosx/10519) or ASM (http://www.versiontracker.com/dyn/moreinfo/macosx/10410) to give you an application switching menu in your menubar.
3) FruitMenu (http://www.versiontracker.com/dyn/moreinfo/macosx/12974) to give you back an editable / customizable Apple Menu, to give you a hierarchical menu-view of System Prefs so you don't have to launch the entire %&## System Preferences pane and then reach with your mouse a second time to invoke the specific PrefsPane you want. And to use as a launcher.
4) WindowShade X (http://www.versiontracker.com/dyn/moreinfo/macosx/12243), to be able to minimize windows the classic Macintosh way, not like some Windows PC-wannabe. (Will also minimize-in-place to a small icon)
5) PullTab (http://www.versiontracker.com/dyn/moreinfo/macosx/18606), to pry that damn Dock's filthy hands off the keystoke combo Command-Tab, thus freeing it up for apps with original rights to it, like FileMaker Pro.
6) To get your Trash can onto the Desktop where it belongs, there are several apps that purport to be able to do so, but I prefer to just use TinkerTool to make everything visible in the Finder, then make an alias to .Trash and put the alias on the Desktop. Find a nice MacOS 9ish Trashcan icon on the internet and paste.
7) Now to dispense with the godforsaken Dock itself. Two choices: you can minimize it practically out of existence by pinning it to the left edge of your screen and then edit com.apple.dock.plist in a text editor, manually changing the tilesize parameter to 1, which will give you a Dock about the size of a pinhead in a place where you won't mouse-over on it very often by accident; or you can nuke it entirely. To nuke it entirely, first copy Dock.app from /System/Library/CoreServices and make that copy a startup item for every user account on your machine (towards the top of the list); then make an AppleScript consisting of tell application "Dock"; quit; end tell, save it as an application, and add that to your startup items (towards the end); then, finally, sudo rm the original Dock.app from within CoreServices. Hickory Dickory, baby :)
Josh396
Dec 9, 06:16 PM
Don't knock OS 9.
I remember using OS X for the first time when I was probably 14 and I couldn't stand it. It wasn't that I didn't like it but everything seemed so much different on OS 9. However I love OS X now. I wouldn't trade it for anything.
I remember using OS X for the first time when I was probably 14 and I couldn't stand it. It wasn't that I didn't like it but everything seemed so much different on OS 9. However I love OS X now. I wouldn't trade it for anything.
dmr727
Oct 3, 11:25 PM
Thanks for the help everyone, when I hit 250 posts I'll put this in the Marketplace and see if anyone wants it for parts or repair.
Before you jump ship, the good news is that you can drop any number of other motherboards into your Macintosh TV, as long as you don't mind losing the TV capability (and the value of the machine). An LC 575 mobo is an excellent choice:
http://cgi.ebay.com/MacIntosh-PERFORMA-LC575-MOTHERBOARD-820-0464-A-/310242340001?pt=LH_DefaultDomain_2&hash=item483be26ca1#ht_698wt_824
I don't think you need to spend that much money, but it's an example of a way to make your machine functional again.
I think you can replace the TV Tuner board just by itself. I keep reading that "they where a popular add-on for Performa owners". This seems to suggest that the TV Tuner card in a Macintosh TV is the same used in Perfromas and other early Apple computers with TV Tuners.
Unfortunately that's not true. The Macintosh TV was a complete different beast than the video add-on for the Performas. :(
Before you jump ship, the good news is that you can drop any number of other motherboards into your Macintosh TV, as long as you don't mind losing the TV capability (and the value of the machine). An LC 575 mobo is an excellent choice:
http://cgi.ebay.com/MacIntosh-PERFORMA-LC575-MOTHERBOARD-820-0464-A-/310242340001?pt=LH_DefaultDomain_2&hash=item483be26ca1#ht_698wt_824
I don't think you need to spend that much money, but it's an example of a way to make your machine functional again.
I think you can replace the TV Tuner board just by itself. I keep reading that "they where a popular add-on for Performa owners". This seems to suggest that the TV Tuner card in a Macintosh TV is the same used in Perfromas and other early Apple computers with TV Tuners.
Unfortunately that's not true. The Macintosh TV was a complete different beast than the video add-on for the Performas. :(
pilkenton
May 6, 06:41 PM
I never had this problem before. I'm in a few forums. A lot of times I took a picture from google images, copied them, then pasted it to the forum using .
Now when I click copy. My Mac makes that "clunking" sound and won't paste. What's up with that?
Now when I click copy. My Mac makes that "clunking" sound and won't paste. What's up with that?
Statusnone88
Oct 9, 06:58 PM
Wondering how these compare to the SGP iPod Touch 4th Gen screen films...
I have SGP films for my iPhone 4 and love them so I'd assume these would be great too.
I have SGP films for my iPhone 4 and love them so I'd assume these would be great too.
maflynn
Apr 18, 01:43 PM
I'll be heading to disneyworld in a few weeks with the family. In times past I'd not think twice about taking my Nikon D70s, but this year I'm kind of second guessing that.
For one thing, unlike prior years, my girls are now of an age that they'll not need or use a carriage, so they'll be walking around. Why does this matter? Well, I'd hang my camera and other stuff I take on the stroller. This time no stroller means everything I take I must lug and it gets hot in florida.
Second reason is that while it takes great shots I gets in the way often enough. on rides, or walking around.
So I'm thinking of taking a point and shoot camera. I have a panasonic DMTZ-5 which takes decent photos. What's the advice of my fellow MR inmates :)
I'm also open to a new point and shoot camera if it shoots in RAW or approaches the performance of a DSLR (speed and image quality)
Any advise and/or suggestions?
by the way if I take my D70s, I'll be using the 18-70mm kit lens which makes life a little easier. I have my everyday 28-70mm lens but that baby is a tank, and is heavy. The kit lens reduces the weight and bulk.
For one thing, unlike prior years, my girls are now of an age that they'll not need or use a carriage, so they'll be walking around. Why does this matter? Well, I'd hang my camera and other stuff I take on the stroller. This time no stroller means everything I take I must lug and it gets hot in florida.
Second reason is that while it takes great shots I gets in the way often enough. on rides, or walking around.
So I'm thinking of taking a point and shoot camera. I have a panasonic DMTZ-5 which takes decent photos. What's the advice of my fellow MR inmates :)
I'm also open to a new point and shoot camera if it shoots in RAW or approaches the performance of a DSLR (speed and image quality)
Any advise and/or suggestions?
by the way if I take my D70s, I'll be using the 18-70mm kit lens which makes life a little easier. I have my everyday 28-70mm lens but that baby is a tank, and is heavy. The kit lens reduces the weight and bulk.
xUKHCx
Jan 9, 03:43 PM
Am i doing something wrong? Or is this a known bug?
You aren't doing anything wrong this is an issue with the mobile version of the site, one that I believe we are unable to fix.
You aren't doing anything wrong this is an issue with the mobile version of the site, one that I believe we are unable to fix.
ktbubster
Jun 23, 11:47 PM
added custom dying or painting to the cases - prices are in addition to the case pieces - and one rubber foot has been sold! 1 regular left and a few for the batter corner still.
genshi
Mar 29, 06:55 AM
If you do a little bit of searing, you can see some pretty cool videos by people using nothing but iPhones, especially the iphone4.
Has anyone here played with the iPhone 4 to do some videos?
I recently did a little short film using my iPhone 4. I attached my Canon 50mm f/1.4 lens to it (so I can do rack focusing) using a 35mm adapter onto an OWLE Bubo (http://www.wantowle.com/). Here was the results:
http://www.youtube.com/watch?v=yzsqFIHWDrM&hd=1
Would love to know what people think!
Has anyone here played with the iPhone 4 to do some videos?
I recently did a little short film using my iPhone 4. I attached my Canon 50mm f/1.4 lens to it (so I can do rack focusing) using a 35mm adapter onto an OWLE Bubo (http://www.wantowle.com/). Here was the results:
http://www.youtube.com/watch?v=yzsqFIHWDrM&hd=1
Would love to know what people think!