MikeTheC
Oct 5, 11:14 AM
I can certainly vouch for the sentiment expressed that people out there like the iTunes application without regard to how they have obtained their music. I have lots of music on my computers that I have accumulated over many years; and of all the media players I've used over the years, iTunes is without a doubt the nicest and best of the lot.
However, when it comes to the task of extracting audio from CDs and then encoding them as MP3s, I still prefer Audion. I like the specific controls it gives me. Also, the cost of the user interface experience in Audion for that particular set of tasks does not exceed the benefits of having used the program.
I fully understand someone's desire to protect the means of their own financial income. Clearly, the general public's acquisition of music or movies "for free" does not contribute to the artist's income from his/her creative efforts. However, I have two basic issues with present models (both the traditional "brick-n-mortar" as well as the digital DRM'd ones):
1. I feel the labels are by-and-large ripping off artists. Yes, I fully understand that label companies have much more invested in the business of making music than any single band or artist does; however that doesn't entitle them to make a king's randsom from each CD or DVD and pay the tiniest fraction of those monies to the artist. Due to my personal objections to this, I refuse to be party to this practice.
2. I object to having my usage rights in any way restricted. I do not like to be hemmed in (even in principle). I have not and never will sign any kind of license agreement (figuratively or literally) just for the benefit of possessing entertainment content.
A separate issue I have (which only applies to having to buy an entire CD at once instead of individual tracks) is that it's well known that most CDs have only a few good tracks on them; the remaining ones being largely "filler". I'm not saying there aren't ANY CDs out there where all the tracks are good. However most of the ones I've heard over the years have maybe 2-4 good tracks, and the rest are garbage.
The following is, admittedly, a bit off-topic, but it is pertinant to the subject at hand (that is, the licensing issue). It really gets me that you have the RIAA and ASCAP/BMI going after businesses which have music playing in their shop environment, especially when the music in question is NOT a live performance nor intented as a means of deriving additional income. And the crux of that issue, for me, is that the restaurants (and offices in many cases) have never signed any kind of licensing agreement with anyone (and moreover ASCAP/BMI and the RIAA try to turn this into a criminal issue when clearly it should more properly be tried as a civil issue -- on which I feel is baseless and that they should be laughed out of court over).
</rant>
However, when it comes to the task of extracting audio from CDs and then encoding them as MP3s, I still prefer Audion. I like the specific controls it gives me. Also, the cost of the user interface experience in Audion for that particular set of tasks does not exceed the benefits of having used the program.
I fully understand someone's desire to protect the means of their own financial income. Clearly, the general public's acquisition of music or movies "for free" does not contribute to the artist's income from his/her creative efforts. However, I have two basic issues with present models (both the traditional "brick-n-mortar" as well as the digital DRM'd ones):
1. I feel the labels are by-and-large ripping off artists. Yes, I fully understand that label companies have much more invested in the business of making music than any single band or artist does; however that doesn't entitle them to make a king's randsom from each CD or DVD and pay the tiniest fraction of those monies to the artist. Due to my personal objections to this, I refuse to be party to this practice.
2. I object to having my usage rights in any way restricted. I do not like to be hemmed in (even in principle). I have not and never will sign any kind of license agreement (figuratively or literally) just for the benefit of possessing entertainment content.
A separate issue I have (which only applies to having to buy an entire CD at once instead of individual tracks) is that it's well known that most CDs have only a few good tracks on them; the remaining ones being largely "filler". I'm not saying there aren't ANY CDs out there where all the tracks are good. However most of the ones I've heard over the years have maybe 2-4 good tracks, and the rest are garbage.
The following is, admittedly, a bit off-topic, but it is pertinant to the subject at hand (that is, the licensing issue). It really gets me that you have the RIAA and ASCAP/BMI going after businesses which have music playing in their shop environment, especially when the music in question is NOT a live performance nor intented as a means of deriving additional income. And the crux of that issue, for me, is that the restaurants (and offices in many cases) have never signed any kind of licensing agreement with anyone (and moreover ASCAP/BMI and the RIAA try to turn this into a criminal issue when clearly it should more properly be tried as a civil issue -- on which I feel is baseless and that they should be laughed out of court over).
</rant>
Simmias
May 3, 10:37 PM
I love my iPad 2, but I don't care for the ads. I like the overall message, but the narrator's inflections really bug me for some reason - a little too sappy. Also, the use of the word "magic" (wink, wink) in this ad and the previous one smacks of Steve Jobs thumbing his nose at critics. No matter how successful the iPad is, we will still cringe at his calling it magical.
fsck-y dingo
Nov 8, 04:16 PM
I pre-ordered it for PS3 from ebgames. I'll pick it up after work tomorrow.
The best was COD 4: MW. That set the bar for COD games.
I agree. COD 4 was the most fun I've ever had playing a FPS game. Both story mode and multiplayer games are excellent.
Black Ops looks amazing from what I've seen. I hope the attack dogs aren't as annoying as in WaW. :)
The best was COD 4: MW. That set the bar for COD games.
I agree. COD 4 was the most fun I've ever had playing a FPS game. Both story mode and multiplayer games are excellent.
Black Ops looks amazing from what I've seen. I hope the attack dogs aren't as annoying as in WaW. :)
LastLine
Jan 5, 04:40 PM
Also switch off mobile, unplug landline, wear iPod, raise volume, close curtains, disconnect TV, put head under pillow, sing loudly ... and retreat to a remote Hebridean island until the keynote is posted.
Alternatively, if you're feeling more extreme...
"And one more thing...all 5G ipods have a built in wireless chip which we activated about 5 seconds ago, so here's a recap for all those of you listening in..."
Alternatively, if you're feeling more extreme...
"And one more thing...all 5G ipods have a built in wireless chip which we activated about 5 seconds ago, so here's a recap for all those of you listening in..."
more...
Nekbeth
Apr 26, 10:29 PM
What if after pressing the start button, you create a timer and start it. Then pressing the cancel button invalidates and releases it. Then pressing the start button would create another timer, using the same pointer.
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
Much Ado
Jan 12, 03:46 AM
They are BLOGGERS. There are no rules in blogging. There are no codes of ethics.
As soon as you start advertising on your blog and maintain a healthy stream for revenue from hits, you become more than just a blog. They owe it to themselves to be professional for the sake of their reputations, and they just screwed that up royally.
As soon as you start advertising on your blog and maintain a healthy stream for revenue from hits, you become more than just a blog. They owe it to themselves to be professional for the sake of their reputations, and they just screwed that up royally.
more...
Nekbeth
Apr 27, 07:49 PM
No, self refers to the instance of the object that is executing the currently running code. It is highly context dependant.
Inside a method of your view controller, yes, self refers to your view controller. Inside a method in your view object, self refers to the view object. Inside the NSTimer object, self refers to the NSTimer.
Yes, that's what I though.. I was asked the meaning of "target", so I gave an example that target:self in NSTimer refer to the timer object (one of my quiz questions), but I can't remember his name.. said that "self" refer to the controller even inside the NSTimer. That's why I said.. interesting, I mean.. all of you should know what your talking about a lot more than me. (specially Master balamw)
About the timer and how it's going... well, I really don't have time to continue to make it work, so I have postpone it for a later update. I just need to learn more about it to fix it. But hey, If you feel like giving the answer, go ahead.
The only thing that I'm missing is to restart the Timer (or use another one). Invalidating my Timer only pauses it, even = nil or releasing it, my Timer just continues where it left.
I have found a tutorial where you can start, stop and reset a timer, I could use that, but I want a datePicker to select time and the tutorial doesn't show that. Here is the link: http://www.youtube.com/watch?v=5jmTQi98vec&feature=related
Please, let me know if you need more code of the timer. I think I have share all of it.
balamw;12474773]By this point I would have expected Nekbeth to have called us "Nazis" instead of "Pros" in order to satisfy Godwin's Law (http://en.wikipedia.org/wiki/Godwin's_law).
B
that is the dumbest thing I've read in a while :p
Inside a method of your view controller, yes, self refers to your view controller. Inside a method in your view object, self refers to the view object. Inside the NSTimer object, self refers to the NSTimer.
Yes, that's what I though.. I was asked the meaning of "target", so I gave an example that target:self in NSTimer refer to the timer object (one of my quiz questions), but I can't remember his name.. said that "self" refer to the controller even inside the NSTimer. That's why I said.. interesting, I mean.. all of you should know what your talking about a lot more than me. (specially Master balamw)
About the timer and how it's going... well, I really don't have time to continue to make it work, so I have postpone it for a later update. I just need to learn more about it to fix it. But hey, If you feel like giving the answer, go ahead.
The only thing that I'm missing is to restart the Timer (or use another one). Invalidating my Timer only pauses it, even = nil or releasing it, my Timer just continues where it left.
I have found a tutorial where you can start, stop and reset a timer, I could use that, but I want a datePicker to select time and the tutorial doesn't show that. Here is the link: http://www.youtube.com/watch?v=5jmTQi98vec&feature=related
Please, let me know if you need more code of the timer. I think I have share all of it.
balamw;12474773]By this point I would have expected Nekbeth to have called us "Nazis" instead of "Pros" in order to satisfy Godwin's Law (http://en.wikipedia.org/wiki/Godwin's_law).
B
that is the dumbest thing I've read in a while :p
Glideslope
Mar 28, 02:21 PM
Welcome to 1984.
....and throw in a little bit of "Fahrenheit 451". :apple:
....and throw in a little bit of "Fahrenheit 451". :apple:
more...
stoid
Aug 8, 08:46 AM
I just hate to read people making comments like "if you think apple monitors are expensive, enjoy your sucky dell monitor". It's annonying and childish.
Please tell me where I said that I thought that Apple monitors were better than Dell monitors in anything other than asthetics? I have not made any claim anywhere!
All I said was that tech specs in some places were listed different so something about the panel seems to be different. Yes I bought an Apple monitor, yes I'm an Apple fanboy because I like the look of their electronics, but no I never stated that Apple's monitors were functionally better. On the contrary my statements are to the effect that Dell montiors show functionally better specs, so logically aren't they (not Apple) using the better panel.
Also, what say you to blonde redhead's post about Apple and Dell using different suppliers? Is that correct, or more disinformation.
Get off your soap box, have a cup of tea (or whatever will calm your attitude) and let's have a civil discussion.
Please tell me where I said that I thought that Apple monitors were better than Dell monitors in anything other than asthetics? I have not made any claim anywhere!
All I said was that tech specs in some places were listed different so something about the panel seems to be different. Yes I bought an Apple monitor, yes I'm an Apple fanboy because I like the look of their electronics, but no I never stated that Apple's monitors were functionally better. On the contrary my statements are to the effect that Dell montiors show functionally better specs, so logically aren't they (not Apple) using the better panel.
Also, what say you to blonde redhead's post about Apple and Dell using different suppliers? Is that correct, or more disinformation.
Get off your soap box, have a cup of tea (or whatever will calm your attitude) and let's have a civil discussion.

Clive At Five
Oct 3, 03:42 PM
Merrom MBP ;p
Man... the Merom MBP has become the new PowerBook G5
-Clive
Man... the Merom MBP has become the new PowerBook G5
-Clive
more...
QuarterSwede
Apr 25, 01:32 PM
iCon police.
Took me a minute to get that. Nice. ;)
Took me a minute to get that. Nice. ;)
Cougarcat
Apr 29, 05:35 PM
The iOS slider does not make any sense when quickly looking at options on screen. One has to click-drag-release for the slider function to work, not a hugh problem on iOS since its on a small screen.
Considering that Mac OS is not touch based, makes additional steps to accomplish the same task and is less intuitive.
You didn't have to click-drag. Just click your option, exactly as before. (Same as iOS, you don't have to drag the slider, you can press on your option.)
Although, the design of the slider made it look like you had to do this, which is probably why they changed it.
Considering that Mac OS is not touch based, makes additional steps to accomplish the same task and is less intuitive.
You didn't have to click-drag. Just click your option, exactly as before. (Same as iOS, you don't have to drag the slider, you can press on your option.)
Although, the design of the slider made it look like you had to do this, which is probably why they changed it.
more...
samiwas
Mar 5, 10:38 AM
Now: corporate contributions are legal money laundering operations. If you follow the money, I pay for goods which go into company funds which are used to contribute to buy Republican candidates who are dedicated to passing corporate-friendly laws that make my air dirtier and my food unhealthier, and that lower my standard of living until they finally ship my job to another country. Nice racket they have going. Has anybody ever noticed that the well never dries of money to buy off our government? I just love watching them cry about regulation; very classy.
Almost took the words right out of my mouth. Anyone who doesn't realize the hypocrisy in the original statement has their head in the sand.
Almost took the words right out of my mouth. Anyone who doesn't realize the hypocrisy in the original statement has their head in the sand.
ITR 81
Oct 17, 12:18 PM
so it's kind of a mixture here.
1. more capacity -> blu-ray
2. lower price -> hd-dvd
3. porn industry choses the cheapest format -> hd-dvd
the big thing will be the players. blu-ray players had a bad start (frames were dropped, image quality wasn't that good, delays).
it looks like blu-ray will have a hard fight.
HD DVD is barely any cheaper then Blu-Ray right now.
I mean few bucks isn't going to change my mind.
Also the porn industry more then likely went with VHS because of it's 3 hrs capacity then it just being cheaper of the two. Think how much porn could be crammed onto a blu-ray disc!?
1. more capacity -> blu-ray
2. lower price -> hd-dvd
3. porn industry choses the cheapest format -> hd-dvd
the big thing will be the players. blu-ray players had a bad start (frames were dropped, image quality wasn't that good, delays).
it looks like blu-ray will have a hard fight.
HD DVD is barely any cheaper then Blu-Ray right now.
I mean few bucks isn't going to change my mind.
Also the porn industry more then likely went with VHS because of it's 3 hrs capacity then it just being cheaper of the two. Think how much porn could be crammed onto a blu-ray disc!?
more...
MacNut
Apr 27, 04:40 PM
missed that one. fully agree.
why? men and women can't share a basin to wash their hands? many places already have unisex restrooms. As long as it is known, there shouldn't be any problem.
I really don't see any reasons, other than people being stuck in their old conventions. it would surely simplify my life when I am around town with my kids.Would sexual harassment claims rise if we had unisex bathrooms.
why? men and women can't share a basin to wash their hands? many places already have unisex restrooms. As long as it is known, there shouldn't be any problem.
I really don't see any reasons, other than people being stuck in their old conventions. it would surely simplify my life when I am around town with my kids.Would sexual harassment claims rise if we had unisex bathrooms.
Eidorian
Mar 28, 04:47 PM
With the Mac App Store I can take a quick glance, click update all if there are any updates and be done with it.What happens if you never open the Mac App Store?
more...

ElCidRo
Apr 25, 06:56 PM
I think they will announce the iPhone 5 at the WWDC like they usually do.
I think they are feeding the misinformation through their channels so the iphone 4 sales won't slow down. :rolleyes:
A 3.7" retina display would be really great.
I'm still using an iPhone 3GS and since I got my iPad 2, I can't stand the low dpi display anymore.
I think they are feeding the misinformation through their channels so the iphone 4 sales won't slow down. :rolleyes:
A 3.7" retina display would be really great.
I'm still using an iPhone 3GS and since I got my iPad 2, I can't stand the low dpi display anymore.

Ommid
Apr 25, 12:55 PM
Why are you so adamant that they will use 4S instead of 5?
-The 3GS had an identical appearance to the 3G, but with upgraded internals, hence the S.
-A 3.7" iPhone would not have an identical appearance to the iPhone 4 by virtue of the screen size alone, so there would be no reason to simply add an S.
-3G is a feature description, adding an S might make some sense there as it could also be considered a "feature description". 4 is a revision number, why would they add an S to that? 4.5 or 5 would make more sense.
-The iPhone 4 and iOS 4 were launched in the same time frame, it makes sense for the numbers on each to match up. What's next? iPhone 5 and iOS 5 of course. I don't know why they'd stray from matching revision numbers so quickly after finally achieving them.
-If they plan on calling the phone after this 6, why would they skip 5, which sounds like a bigger upgrade than 4S?
As far as I'm concerned, 4S is the least likely name possible for the next iPhone. iPhone 5, 4G (LTE), 4.5 (very unlikely), and plain "iPhone" all have a much greater chance than 4S (with 5 being the most likely). I just spent way to much time on this minor issue though.
Yes, you definitely did. Lol
-The 3GS had an identical appearance to the 3G, but with upgraded internals, hence the S.
-A 3.7" iPhone would not have an identical appearance to the iPhone 4 by virtue of the screen size alone, so there would be no reason to simply add an S.
-3G is a feature description, adding an S might make some sense there as it could also be considered a "feature description". 4 is a revision number, why would they add an S to that? 4.5 or 5 would make more sense.
-The iPhone 4 and iOS 4 were launched in the same time frame, it makes sense for the numbers on each to match up. What's next? iPhone 5 and iOS 5 of course. I don't know why they'd stray from matching revision numbers so quickly after finally achieving them.
-If they plan on calling the phone after this 6, why would they skip 5, which sounds like a bigger upgrade than 4S?
As far as I'm concerned, 4S is the least likely name possible for the next iPhone. iPhone 5, 4G (LTE), 4.5 (very unlikely), and plain "iPhone" all have a much greater chance than 4S (with 5 being the most likely). I just spent way to much time on this minor issue though.
Yes, you definitely did. Lol
Jerry Spoon
Sep 12, 07:31 AM
I can't imagine why Apple would have an event like this if there was going to be only Disney content available.
Remember that when tv shows were first made available, there weren't many to choose from.
Even if it is just Disney right now, that along with new iPods is enough for this much hype, especially when they want the press before the holiday season.
Remember that when tv shows were first made available, there weren't many to choose from.
Even if it is just Disney right now, that along with new iPods is enough for this much hype, especially when they want the press before the holiday season.
pudrums
Apr 11, 05:20 PM
21 Gramm
http://www.cineasten.de/bilder/filme/21-gramm/l.jpg
http://www.cineasten.de/bilder/filme/21-gramm/l.jpg
wildthing1994
Apr 15, 11:37 PM
Just wait until this person signs into xbox live, have someone else watch your laptop and the signal, than you and another friend look around the neibourhood. Look for someone playing an xbox 360, look in the window and if you can tell its yours bang on the door and demand for it back nothing illegal about that. Make sure someone else is with you, but be careful I think you're in the States and Americans do like their guns.
I lived in a neigbourhood once, where the other kids used to steal anything that wasn't nailed down, they would take my things (my bike, my toys, etc.) I would walk arounds looking for what ever it was and take it right back and I either told their parents or beat them up.
I lived in a neigbourhood once, where the other kids used to steal anything that wasn't nailed down, they would take my things (my bike, my toys, etc.) I would walk arounds looking for what ever it was and take it right back and I either told their parents or beat them up.
JoeG4
Mar 18, 07:49 PM
Hrm where do I go with this one.
The iPhone is a nice phone! It turned out that if I had the $285 necessary to buy an iPhone ($200 + $50 tax + 35 activation), I could get it on a monthly plan similar to what I just got my free G2 for.
I don't work, I'm a student.. and while that means I could probably live without a smartphone it was a $15/mo difference. I'm using a G5 I bought for $50, and my internet service costs me $15 a month (it's DSL too!).. heck even my tv service is rather cheap.
If I could've gotten an iPhone at the time, I would've. Right now? If Steve Jobs offered me a free iPhone in exchange for my G2? Hahah sure :D
I do have my beefs, I think iOS is kinda boring and iTunes is clunky as all get out, but i love the docks and the hardware is really nice.
That said, I really never thought I'd like having a hardware keyboard so much until I had one o_O Oh well. Everyone I know has an iPhone, bar 2 or 3 people. Most of them also have MacBook Pros :P
Yea so at the end of the day it sucks but I'll live with it. When I become an engineer I'll be able to afford all the shiny Apple stuff I want :D AND I don't feel like I'm having to "live with it".. shoot I've got like the 3rd nicest smartphone on the market and it didn't cost me a dime. Woot! (Well, it did cost $15 more a month!.. actually the iPhone would've also cost about $15-20 more a month, and that $285)
It's been an awesome phone though, no lag anywhere, it plays angry birds great, works great with music and internet, and I get 2 days of battery life solid. :)
The iPhone is a nice phone! It turned out that if I had the $285 necessary to buy an iPhone ($200 + $50 tax + 35 activation), I could get it on a monthly plan similar to what I just got my free G2 for.
I don't work, I'm a student.. and while that means I could probably live without a smartphone it was a $15/mo difference. I'm using a G5 I bought for $50, and my internet service costs me $15 a month (it's DSL too!).. heck even my tv service is rather cheap.
If I could've gotten an iPhone at the time, I would've. Right now? If Steve Jobs offered me a free iPhone in exchange for my G2? Hahah sure :D
I do have my beefs, I think iOS is kinda boring and iTunes is clunky as all get out, but i love the docks and the hardware is really nice.
That said, I really never thought I'd like having a hardware keyboard so much until I had one o_O Oh well. Everyone I know has an iPhone, bar 2 or 3 people. Most of them also have MacBook Pros :P
Yea so at the end of the day it sucks but I'll live with it. When I become an engineer I'll be able to afford all the shiny Apple stuff I want :D AND I don't feel like I'm having to "live with it".. shoot I've got like the 3rd nicest smartphone on the market and it didn't cost me a dime. Woot! (Well, it did cost $15 more a month!.. actually the iPhone would've also cost about $15-20 more a month, and that $285)
It's been an awesome phone though, no lag anywhere, it plays angry birds great, works great with music and internet, and I get 2 days of battery life solid. :)
Burgess07
Apr 29, 03:53 PM
1. Dang, I liked the sliders. Wish Apple would set an option in the system preferences to enable/disable them.
2. Scrollbars still disappear for me.
2. Scrollbars still disappear for me.
Aperture
Jan 8, 09:34 PM
Sales/growth update
Ultra portable notebook
iTunes movie rentals & DVD digital copies
Updated/Refreshed Apple TV - Perhaps a slight price drop (To promote iTunes movie rentals)
Look into the iPhone SDK - available to developers in Feb. as planned
Ultra portable notebook
iTunes movie rentals & DVD digital copies
Updated/Refreshed Apple TV - Perhaps a slight price drop (To promote iTunes movie rentals)
Look into the iPhone SDK - available to developers in Feb. as planned
0 comments:
Post a Comment