wordoflife
Apr 10, 08:04 PM
Apple bumper?
Mechcozmo
Jan 11, 06:39 PM
er... I just tried, but I broke the magic. wasn't as easy a change as I thought. I'll have to get back to you on this one.
arn
Hmm. Odd. Because that page isn't very human-readable (I count myself as more Borg-like than human) is really why I was wondering about the HTML encodings and the comma separations and stuff.
arn
Hmm. Odd. Because that page isn't very human-readable (I count myself as more Borg-like than human) is really why I was wondering about the HTML encodings and the comma separations and stuff.
plinden
Apr 15, 12:49 PM
Edit: Oops - don't know how I replied to the wrong thread - deleting.
themadchemist
Jul 24, 07:45 PM
some people rock. this guy stands among them.
more...
szark
Feb 6, 03:38 AM
Based on the database-driven backend, and reading through the online manual, I doubt there is a limit on the number of levels he can define.
So we'll just have to wait and see. :)
So we'll just have to wait and see. :)
Cybergypsy
Feb 2, 07:20 PM
I was suppose to trade this to another member, but the member Never ship his as agreed, I was able to have mine sent back to me, he just printed a label and never shipped...
So I am looking to trade this phone for a unlocked 4G iphone, Must work on Tmoble, I have tons of refs here and sold over 100 items....
Please PM me if you want to trade really need it ...I also do not use MP3 or videos so a 4G is great :)
you will also get the 100.00 rebate....
So I am looking to trade this phone for a unlocked 4G iphone, Must work on Tmoble, I have tons of refs here and sold over 100 items....
Please PM me if you want to trade really need it ...I also do not use MP3 or videos so a 4G is great :)
you will also get the 100.00 rebate....
more...
mrsir2009
Mar 20, 12:45 PM
Could you take a screenshot of these new buttons, as I can't see any change to any buttons in the screenshot above...
Thanks! :D
Thanks! :D
Mikesus
Apr 30, 06:18 PM
This started happening around Thursday. The touch screen do not response anymore. Hardware button works. Rotational sensor works. A hard reset (home+power for 10 seconds) sometimes work.
Being a tech person, I systematically deleted apps that I installed to that date, but that was not the problem.
I wonder if it is related to network -- i.e. if it is access the wireless network (checking mail, push notification etc) and gets locked up.
Any one else starting to having this problem?
P.K.
Yes happened after latest update... Did a RESTORE and everything is fine now.
Being a tech person, I systematically deleted apps that I installed to that date, but that was not the problem.
I wonder if it is related to network -- i.e. if it is access the wireless network (checking mail, push notification etc) and gets locked up.
Any one else starting to having this problem?
P.K.
Yes happened after latest update... Did a RESTORE and everything is fine now.
more...
bousozoku
Mar 3, 09:05 PM
They were first with the most applications on Mac OS X and they've done more for optimisations on it?
Considering that their applications still don't work well, I have my doubts.
Still, we need them and Macromedia was forced to stop offering xRes when it just didn't sell as a competitor to Photoshop. Pity Live Picture.
Yes, Adobe has a good strategy but they're not as great as they would have everyone believe. We know that and they know that.
Considering that their applications still don't work well, I have my doubts.
Still, we need them and Macromedia was forced to stop offering xRes when it just didn't sell as a competitor to Photoshop. Pity Live Picture.
Yes, Adobe has a good strategy but they're not as great as they would have everyone believe. We know that and they know that.
calvol
Apr 22, 03:10 PM
Skype caused my 13-UMBA CPU temp to rise to 80C, installed Coolbook and now runs about 70-73C. Normal CPU temp at idle is 43C, and 38C with Coolbook (at .92v settings). Interestingly, when I run Skype on my Dell Latitude with an i5-540M processor/4MBram, the CPU only heats up from 50C to 55C. So the Skype temp effect is much greater on the MBA, probably because of the C2D is working harder.
more...
ryan0402
Sep 24, 06:40 PM
I am bying the ipod 4 but love the iphone 4 form factor. I am not going to go out and buy and iphone so I was wondering what case would work with the ipod 4mto make it feel like the iphone 4.
Saphrosit
Apr 7, 12:49 PM
Hi,
I wrote a simple server application in C. This server do nothing except print the received message, then exit. Here is the code
int listenfd,connfd,n;
struct sockaddr_in servaddr,cliaddr;
socklen_t clilen;
char *mesg = (char*) malloc(1000*sizeof(char));
listenfd=socket(PF_INET,SOCK_STREAM,0);
bzero(&servaddr,sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = INADDR_ANY;
servaddr.sin_port=htons(20600);
bind(listenfd,(struct sockaddr *)&servaddr,sizeof(servaddr));
listen(listenfd,5);
clilen=sizeof(cliaddr);
connfd = accept(listenfd,(struct sockaddr *)&cliaddr,&clilen);
n = (int) recvfrom(connfd,mesg,1000,0,(struct sockaddr *)&cliaddr,&clilen);
sendto(connfd,mesg,n,0,(struct sockaddr *)&cliaddr,sizeof(cliaddr));
printf("-------------------------------------------------------\n");
mesg[n] = 0;
printf("Received the following:\n");
printf("%s\n",mesg);
printf("-------------------------------------------------------\n");
close(connfd);
close(listenfd);
I managed to establish a connection using telnet and running
more...
That#39;s how Alek Wek#39;s career
Alek Wek for Dutch Glamour
more...
what I love about Alek Wek
Alek Wek: the Sudanese black
more...
Alek Wek and her amazing self.
faces, including Alek Wek,
alek wek - PicArena Image
I wrote a simple server application in C. This server do nothing except print the received message, then exit. Here is the code
int listenfd,connfd,n;
struct sockaddr_in servaddr,cliaddr;
socklen_t clilen;
char *mesg = (char*) malloc(1000*sizeof(char));
listenfd=socket(PF_INET,SOCK_STREAM,0);
bzero(&servaddr,sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = INADDR_ANY;
servaddr.sin_port=htons(20600);
bind(listenfd,(struct sockaddr *)&servaddr,sizeof(servaddr));
listen(listenfd,5);
clilen=sizeof(cliaddr);
connfd = accept(listenfd,(struct sockaddr *)&cliaddr,&clilen);
n = (int) recvfrom(connfd,mesg,1000,0,(struct sockaddr *)&cliaddr,&clilen);
sendto(connfd,mesg,n,0,(struct sockaddr *)&cliaddr,sizeof(cliaddr));
printf("-------------------------------------------------------\n");
mesg[n] = 0;
printf("Received the following:\n");
printf("%s\n",mesg);
printf("-------------------------------------------------------\n");
close(connfd);
close(listenfd);
I managed to establish a connection using telnet and running
more...
EMKoper
Nov 1, 07:35 PM
I'd second the recommendation for the 5400. I have found that the scan quality is quite good (text or photos), printing low quality B/W pages is cheap and fast, and I've been pretty happy with the occasional high quality photo print. I think the provided software is a little clunky, but it seems to get the job done (completed about 500 scans) with lots of "save as" options. I paid $125 about 1 year ago ... $60 is a great deal!
John.B
Oct 29, 09:13 AM
Well if you mosey on over to OSX Audio (http://www.macosxaudio.com/forums/viewtopic.php?f=2&t=49112), you might want to check what Markus Fritze has to say...and see what responses are posted there. A lot of Logic users there, who will soon tell you what's going on!
:)
Thanks, Shagrat! I hadn't heard of that site, it looks like it could be very useful! :cool:
:)
Thanks, Shagrat! I hadn't heard of that site, it looks like it could be very useful! :cool:
more...
solvs
Jun 12, 04:42 PM
Originally posted by rhpenguin
I just picked up my iBook a few weeks ago (seven days before they drop the price... bastards...)
You know if there is a price change with-in a certain time period, you can be refunded the difference right? I though ti was 10 days, but I could be wrong.
Don't know if you're beyond the statute of limitations though.
I just picked up my iBook a few weeks ago (seven days before they drop the price... bastards...)
You know if there is a price change with-in a certain time period, you can be refunded the difference right? I though ti was 10 days, but I could be wrong.
Don't know if you're beyond the statute of limitations though.
tech4all
Oct 7, 04:24 PM
http://blog.deconcept.com/flashobject/
Thanks, kingjr3, I'll check out!
Thanks, kingjr3, I'll check out!
more...
JarinS1
Sep 16, 12:17 PM
I am looking at purchasing a 160GB (Lacie) external drive. I have a 12" iBook with 30GB of storage (only 600MB available). I need a place to backup my hard drive and store these video files of astronomical size. Is there a difference between the d2 and Porsche designs?
- auto shutoff?
- easy syncing?
-noise?
Thanks.
JS
- auto shutoff?
- easy syncing?
-noise?
Thanks.
JS
KnightWRX
Apr 24, 05:10 PM
Did you try googling the obvious: palindrome python program
One of the top 10 hits is this:
http://forums.macrumors.com/showthread.php?t=861800
nstead this sounds like an academic assignment/exercise/what-have-you.
A quick suggestion OP : If this is homework, do not try "googling the obvious" and especially do not copy/paste code from the top 10 hits. If it was that easy to find, your teacher already found it also and will fail you with good reason when you try to turn in "Internet" code.
One of the top 10 hits is this:
http://forums.macrumors.com/showthread.php?t=861800
nstead this sounds like an academic assignment/exercise/what-have-you.
A quick suggestion OP : If this is homework, do not try "googling the obvious" and especially do not copy/paste code from the top 10 hits. If it was that easy to find, your teacher already found it also and will fail you with good reason when you try to turn in "Internet" code.
boss.king
May 3, 03:30 AM
Interesting to see a bunch of you use your cameras less now.
So no one's tried the telescopic/telephoto lenses?
So no one's tried the telescopic/telephoto lenses?
Vylen
May 5, 05:12 AM
Hyper threading is only useful in multithreaded applications that are used for things like video or photo processing or 3D rendering. In a general sense, hyper threading is useful when multiple threads of execution are similar enough to each other. This is obviously true enough when applications are designed to make use of hyper threading. It will not be useful when doing multiple different things (e.g. running a lot of different applications at once).
As for video RAM, go with 1GB... would be a good idea if you ever decide to plug in a second monitor to your machine.
As for video RAM, go with 1GB... would be a good idea if you ever decide to plug in a second monitor to your machine.
iFiend
May 2, 09:24 AM
This thread is full of win.
Chrispy
Sep 23, 04:32 PM
Hey all,
My friend who goes to IU called me up today for information on buying a mac. I explained to him that for what he wanted to do a 12" iBook would be more than enough power. He was really sold, however, when I let me in on the deal macmall is running right now.
They have $50 off all iBook ($100 off powerbooks and powermacs)
A Free 1GB stick of ram with $39.99 install charge
A Free All-In-One Espon Printer
And a Free Carrying case and sleeve
After rebate he would only pay $990 :eek: He then got really pumped and said he is going to place his order in the next few day haha. My work here has been done... and this from the guy who has been burned many times by Apple ;)
P.S. I just had my first very negative experience with Dell but that is for another time and another thread haha.
My friend who goes to IU called me up today for information on buying a mac. I explained to him that for what he wanted to do a 12" iBook would be more than enough power. He was really sold, however, when I let me in on the deal macmall is running right now.
They have $50 off all iBook ($100 off powerbooks and powermacs)
A Free 1GB stick of ram with $39.99 install charge
A Free All-In-One Espon Printer
And a Free Carrying case and sleeve
After rebate he would only pay $990 :eek: He then got really pumped and said he is going to place his order in the next few day haha. My work here has been done... and this from the guy who has been burned many times by Apple ;)
P.S. I just had my first very negative experience with Dell but that is for another time and another thread haha.
wrmoody
Nov 18, 02:48 PM
Dear ,
iTunes Connect will be temporarily shut down from Thursday, December 23 to Tuesday, December 28 for the winter holidays. Access will resume on Friday, December 29.
During this shutdown, iTunes Connect will be unavailable. In addition, app releases and pricing changes which are scheduled to take place during the shutdown will be handled as follows:
� All releases will not appear in the App Store until Friday, December 29. This includes apps scheduled to appear on the App Store for the first time as well as updates to existing apps.
� Pricing changes will cause the app to become unavailable for purchase until Friday, December 29, at which point the app will become available at the new price. Please check to ensure you have not scheduled any price changes during this time.
Regards,
The iTunes Connect Team
iTunes Connect will be temporarily shut down from Thursday, December 23 to Tuesday, December 28 for the winter holidays. Access will resume on Friday, December 29.
During this shutdown, iTunes Connect will be unavailable. In addition, app releases and pricing changes which are scheduled to take place during the shutdown will be handled as follows:
� All releases will not appear in the App Store until Friday, December 29. This includes apps scheduled to appear on the App Store for the first time as well as updates to existing apps.
� Pricing changes will cause the app to become unavailable for purchase until Friday, December 29, at which point the app will become available at the new price. Please check to ensure you have not scheduled any price changes during this time.
Regards,
The iTunes Connect Team
e-coli
Jul 25, 12:37 PM
Originally posted by Eniregnat
6.) If your dog does pee on the screen, it should just drip off. If it doesn�t, you dog may be diabetic. Glucos in the urin will cause it to stick.
OMG that's the funniest "tech help" answer I've ever heard.
LMAO :D :D :eek: :D
6.) If your dog does pee on the screen, it should just drip off. If it doesn�t, you dog may be diabetic. Glucos in the urin will cause it to stick.
OMG that's the funniest "tech help" answer I've ever heard.
LMAO :D :D :eek: :D
No comments:
Post a Comment