
Gaby Roslin PicsHello everyone, I'm looking to get into Macs as I've been very impressed with what I've seen at our local Apple store. I'm definately getting an iPhone someday and am leaning towards getting a Macbook.
Couple things REALLY p'd me off about Job's address today.....
1. No announced blu-ray support. I thought something would be coming(FINALLY) being that blu has all but sealed up the format war and that Apple was a partner. Instead...no. Nothing. I want a Macbook with an optical drive...and I don't want it limited to DVD. I have 52 blu-ray movies and the ability to store 25GB per layer on a single blu-ray disk makes me yearn for a notebook with support and I don't want to go get a Sony Vaio. I would like to use Leopard.
2. iPhone updates. New software upgrades. Yay, great. Seriously, the map feature is cool and all that. Neat. Wheres the HARDWARE upgrades?! All these leaked rumors about 3G capability and the need for more storage space only to get neither issue addressed. WHY?
The MBA is really cool and neat, but will be just a niche product - at least for now until there features added. Right now its just a slimmer version of the Macbook with less power, no optical drive, and no user-replaceable battery. A really cool niche product, but not practical at all.
MW isn't over yet....could it be that more announcements such as those I addressed could still be made? I'm hoping so, because if not I am VERY disappointed in what I saw today.
Gallery | gaby roslin datinghttp://www.ss64.com/osx/
maybe you will find a bit more functionality here :D
http://www.macdevcenter.com/pub/a/mac/2001/12/14/terminal_one.html
this is helpful if you've never used terminal before
Gallery | gaby roslin datingmilitaryman911
Apr 24, 08:35 PM
Hey I'm looking into buying a preferably new Macbook or Macbook Pro. I need one soon as I'm moving out for my freshman year of college. The things I'm mainly concerned about is 500+GB, 4GB RAM, and 2.4+Ghz. I was wondering what might be some good places to begin looking for the right laptop.
Maybe something like this (http://www.buy.com/prod/13-3-macbook-intel-core-2-duo-2-4ghz-4gb-ram-500gb-hard-drive-nvidia/q/sellerid/31064376/loc/101/217650314.html)?
Or this (http://store.apple.com/us/browse/home/shop_mac/family/macbook_pro?mco=MTM3NDc0NDI)? (2nd option, for $1,499.00)
Also how important is the Processor? What should I look for? Currently I have a Intel Core 2 Duo, but I know theres new ones such as Quad, i5, i7, etc.
Gallery | gaby roslin companyif you get a google voice number (FREE) and download that app on your ipad you can use that number to text.
I have google voice on my iphone and ipad and use it to text because it is 100% free!
Can u receive replies?
more...
with tips from Gaby RoslinI was able to torrent a bootcamp 3.0 installation, install, set boot to mac osx, and then delete the partition. What a nightmare, this consumed my entire night and morning. Thanks for all the help everyone, hopefully when I get back to school I can get a a partition working with all my disks there.
Gaby Roslin - Más Barato SeguroIbanez Strummer
Oct 11, 08:16 AM
I second Andy McKee and Raul Midon. I would look at somebody like Newton Faulkner. He's big in england and his live set is just him and acoustic rather than with some of the other instruments on the two albums. Maybe City & Colour for something a bit more emo.
Did you mean generally acoustic or instrumental?
more...
Eddie Izzard on Gaby Roslin#39;sI wonder when macminipaperweight will come out :D
That's my best design so far :o I saw this guy on techtv who happened to take 8 plasma displays (his work gave them to him for free) and a mac mini to make virtual windows in his house. Pretty awesome concept. Having guests around, hearing them say "woh... your neighbourhood is beautiful", when really you live in apartment up against a brick wall :p
Gaby Roslin#39;s secrets of goodI just purchased a DVT prototype iMac G4 from eBay. I'll post some pictures when it arrives.
The only thing the seller posted was a picture with a sticker indicating it is a prototype. He also said that the screen doesn't work.
Paid $160 for it including shipping.
You can see images here ---> http://forums.macrumors.com/showthread.php?p=9835935#post9835935
I figured it would get more attention in the iMac section
more...
Guest Review: Gaby RoslinOriginally posted by eyelikeart
don't forget sneaking into the Capital in DC or abandoned mental assylums...
...without pants... ;) :p
gaby roslin photos.In the first picture - theres a white shirted old guy, thats me infront of him (you can see my head right above his shoulder).
more...
Gabby RoslinWould you care to elaborate on this, and its security implications?
Also, if you modify your httpd.conf file (which *is* the best method, but rarely available in shared hosting environments), don't forget to restart Apache ;)
If the file is writable, it depends on the user who owns it. If it is writable by the user running the web server, someone might be able to write a shell script into that file. Now that it has execute privileges, it's not that far of a stretch to get it to execute.
A good rule of thumb is don't give any more permissions than are necessary. If it only needs to be readable, then there's no reason to give write or execute privileges. Many security incidents happen due to lax security. Don't be one of them.
Also, you're right on with the shared server piece. I didn't recognize that the original question was concerning a shared web server.
Gaby Roslin Picsapplemacdude
Aug 28, 08:01 PM
Is it the classic moments? The years on teh site? Post count? What is is?
more...
Gallery | gaby roslin datinghomerjward
Dec 5, 11:04 PM
wow...that code is really messy, but the site looks great!
i'm not entirely sure which boxes you're talking about either. html code really isn't all that scary in fact. once you know a few basic tags and such it's pretty easy. like here's the code to make a really basic page that says "hello world" in helvetica, size 5, green, and centered. oh, and with a title.
<html>
<head>
<title>Hi</title>
</head>
<body>
<center>
<font face="helvetica" size="5" color="green">Hello World</font>
</center>
</body>
</html>
the <html> tag tells the browser to start an html document, the <head> tells it that there's information about the page that won't be displayed in the page, the <title> opens a tag that says what to display in the title bar, the </title> says that the title is finished. the </head> says that the info about the page is done. the <body> tells what to display, basically. the <center> tells it to center the following info, the <font> tag, along with the attributes face, size, and color, and the values helvetica, 5, and green tell it how to style the text. "Hellow World" tells it the text to display. </font> tells it that that's the end of the text styled that way. </center> stops text after that from being centered, </body> ends the main info, and </html> closes the document. in general to open a tag it goes like <tag> and to close it it's <tag> and to define attributes and values it's <tag attribute="value"> and then </tag> there are, of course, exceptions...
knowing the basics of the code and such can really help you simplify the code that golive generates, and a lot of things are easier, imo, to do by hand than in golive. link targets, for example. for the life of me i cant figure out how to get a link to open in an iframe in golive without going into the source...:rolleyes:
sorry for the long post :o
Gaby Roslinmacpro2000
Apr 26, 09:27 AM
If you are a rational person, one should know that it isn't reasonable to expect a break until Lion is officially announced. However, you could always write a letter to Obama and 'hope' that things will 'change.' :) People are getting things in this country they shouldn't have and they just expect more and more.
more...
the Gaby Roslin and Pauldotcomlarry
Oct 19, 06:57 PM
Would love for them to open a store near Lancaster or Harrisburg, but until then KOP is the closest. Dunno if I'm in the mood to pay tolls to get there, though. Having never been to a launch event, is it really worth it if I'm not going to buy it?
The Breakfast Show with GabyYou'll need a hack (http://homepage.mac.com/geerlingguy/mac_support/mac_help/pages/15-burn_idvd_other.html) to get iDVD to "see" external burners.
I am very, very happy with my LaCie d2 16X dual-layer external burner, which comes with Toast 6 Titanium, all for $199 at the Apple Store. Same front size as all d2 drives, about 50% deeper than the "normal" d2 drives (fits nicely on the LaCie desktop rack with my 120GB and 250GB LaCie d2 externals).
more...
Mark Little amp; Gaby Roslin - I snapped these exclusive photographs of the zany pair early one dark morning on a make believe railway line just outside theWhat's older? The Mac's or the clear phone? :p
The clear phone is actually older!! It's a 1980s model FunPhone� :)
CHILDREN IN NEED 2010IgnatiusTheKing
Apr 10, 10:34 PM
hth :cool:
Gaby Roslin is best known for her career as a Ulrika Jonssonmr evil brkfast
Sep 25, 07:06 PM
No. I think the 1Ghz is the better deal.
I really like the value of the 867- finally a non-crippled Pro machine at $1699 or $2699 in Canada is great. I'd wait until the next upgrade to even consider the top of the line.
chrono1081
Mar 28, 03:33 PM
Seriously! Hour and a half would be the most I could use, my time would be better spent on something else.
But, as long as your sister is pleased with the shots, awesome! You should see if you can post some up here when she gets them!
I'll be allowed to post. There were a ton of photo ops all over this place and the photog still didn't get to them all (even though he was working fast as were his assistants). It was a good time stalking them to see what shots they were getting. There were two shots I'd of loved to seen but I kept my mouth shut since its rude to harass the photog.
For an awful second I thought I was going to be e :DYou wish buddy, I know your game http://up.edesignuk.com/files/1/Images/Smilies/Dogeyes.gif
The only logical thing, should anything get released, would be Final Cut Server.
Other related products are DVD Studio Pro 5, Blu-Ray Drives, Phenomenon (Shake Successor) and Cinema Displays. I do not expect the first three until NAB at the earliest. The Displays maybe at the developers conference.
Apple would not announce Newton 2 at a Final Cut User Event.
Altogether accurate except for the fact that FCS wouldn't qualify as much of a secret. If you read the thread on the original appleinsider article, you'd get a hint as to why Jobsy didn't show:
http://forums.appleinsider.com/showthread.php?s=&threadid=82733
The organizer of the LAFCPUG Supermeet in question claimed he started this rumor. I'm not sure if he was joking or not.
Fairly annoying really. In all my years visiting rumour sites, I've never got my hopes up about something only to learn that it was a fabrication by a singular person in the industry I work with some kind of agenda (presumably to increase turnout at his FC Meet). But then, that's the nature of the rumour beast, I guess. Phenomenon, Bluray, DVDSP5 and the ACDs will just all have to wait.
I can make calls on At&t just fine
iStudentUK
Feb 15, 02:59 PM
I'll try and make this logical-
Is there a quick way to include what the person I am quoting quoted when I quote them?
In other words, if somebody quotes me and I want to reply, when I press quote it only includes what they wrote, not what I originally wrote as well. On busy threads it can would be useful to be able to quote everything.
Thanks, hope that made sense!
0 comments:
Post a Comment