*blog... kind of... *rss
FDT does work in Linux
no comments
Seeing that FlexBuilder Alpha 4 still didn't have refactoring I had to search once again for a solution with FDT on Linux. And well, seems that a solution for my problem has been out there for months!
I managed to register it without problems, but when I was creating a class I had this:
Maxim Zaks posted the solution here.
you can check this by going to Menu: "Window/Preferences/General/Workspace" and than in the "New text file line delimiter" Panel change from "Default" to "Other: Unix"
Big Pheeew!!!! Having to swap between FDT and FlexBuilder in some projects were driving me nuts... this really looks like the final "Bye bye Windows!".
I managed to register it without problems, but when I was creating a class I had this:
package com {nullimport flash.display.Sprite;/**null * @author Mr.doob */nullpublic class Main extends Sprite {nullpublic function Main(){null}}null}nullMaxim Zaks posted the solution here.
you can check this by going to Menu: "Window/Preferences/General/Workspace" and than in the "New text file line delimiter" Panel change from "Default" to "Other: Unix"
Big Pheeew!!!! Having to swap between FDT and FlexBuilder in some projects were driving me nuts... this really looks like the final "Bye bye Windows!".
no comments
Sorry for the delay...
no comments
Well, that was the first line in some emails I decided to answer today. There used to be a time I answered everything and helped everyone that asked for help, but seems like these days are over.
Well, not really, I still reply, only 6 months later ;) But... if I don't reply, please accept my apologies, blame to however invented time! :)
Well, not really, I still reply, only 6 months later ;) But... if I don't reply, please accept my apologies, blame to however invented time! :)
no comments
Hi-ReS! Stats
no comments
I've recently seen the class being used in the wild so I guess it was time to properly publish it.
Since the beginnings I've always had a FPS meter class, really basic, but had to be there. Then Carlos came along with one with a nice visualizer of the performance and then I saw Alternativa's one and I though that was the best approach. However, it had some issues, the speed of the graph seemed a bit pointless as the history was of 1 second or so.

So I improved my own one on the direction of the latest, but having a graph history of about 10/15 seconds, having a clearer picture of how your app/site is performing. Theo came along and helped with the graph visualisation too and then it went public.
Anyway... if you need a tiny and easy FPS/MS/MEM control panel, feel free to use it :)
http://code.google.com/p/mrdoob/wiki/stats
Since the beginnings I've always had a FPS meter class, really basic, but had to be there. Then Carlos came along with one with a nice visualizer of the performance and then I saw Alternativa's one and I though that was the best approach. However, it had some issues, the speed of the graph seemed a bit pointless as the history was of 1 second or so.

Anyway... if you need a tiny and easy FPS/MS/MEM control panel, feel free to use it :)
http://code.google.com/p/mrdoob/wiki/stats
no comments
Björk - Hidden Place (Knick & The Enemy remix)
no comments
Just listened on a mix. And I'm not finding it anywhere, tried on soulseek, emule and torrent sites. Also tried on google because seems like it was a mp3 released on the web for free.
If anyone has it, please, send it to me :)
If anyone has it, please, send it to me :)
no comments
Inspire08 demo log, day 117
While people that haven't released anything in years were trying to find the meaning of life and also were creating a rather depressing image for the newcomers to the site partly ruining our promotion job two weeks ago at Euskal, I was fighting once again with Java... er... and having a misery time playing at Mario Kart too (just for 1 hour tho).
I keep having problems with the audio player :(... glitching just at the beginning of the music and creating random delays. It doesn't happen all the time tho. I'll leave the glitch there for now, and concentrate on adding synchronize more stuff here and there (production). Which is what I'm doing, just after cleaning all the code. There were still some Timer.getTime() around...
Things are looking good, I just need to find a effect for the texts. But seems like finally I'm starting to get used to Java and I'm starting to optimise things. People may say that Java sucks and all that, well, based on my experience so far, it's great, it just needs more people working with it and sharing sources.
no comments
Status:
-89 days left until Inspire08
Back to productionWhile people that haven't released anything in years were trying to find the meaning of life and also were creating a rather depressing image for the newcomers to the site partly ruining our promotion job two weeks ago at Euskal, I was fighting once again with Java... er... and having a misery time playing at Mario Kart too (just for 1 hour tho).
I keep having problems with the audio player :(... glitching just at the beginning of the music and creating random delays. It doesn't happen all the time tho. I'll leave the glitch there for now, and concentrate on adding synchronize more stuff here and there (production). Which is what I'm doing, just after cleaning all the code. There were still some Timer.getTime() around...
Things are looking good, I just need to find a effect for the texts. But seems like finally I'm starting to get used to Java and I'm starting to optimise things. People may say that Java sucks and all that, well, based on my experience so far, it's great, it just needs more people working with it and sharing sources.
no comments
Inspire08 demo log, day 116
You may already know that the demo was released already two weeks ago at Euskal. Yes, this is how usually goes, you work for a demo for X party, you don't finish it in time and release it on Y party.
In the end it was actually a invitation for D///FEST 2008 as originally intended. Since the last post I didn't do much work on it to be honest, I did most of the part on the hotel while at Bilbao. I still wasn't able to forward/backward the tune so I still had the same problem of having to sync the something in the end of the demo and had to watch the whole demo. Some day... some day... But, tired of having to get the sync times by hand I added a Timer.getBeat() method. On init I sent the length of the beat (which is my tune is about 856ms) and then Timer.getBeat() will just give me back System.currentTimeMilliS() / beat_length. Once I found out the exact length of the beat the rest of the synchronization was much faster to produce. Instead of if (Timer.getTime() > 109568), now I had if (Timer.getBeat() > 128). Much easier to read for sure.
Then added the texts on top of everything, because, after all I had to talk about the event. Unfortunately I had to make the texts by myself too and that took some brain time. Which is something you don't have few hours before the deadline.
Last but not least, managed to do the greetings part/code in about 30min. All thanks to the Timer.getBeat() idea o/.
But this is not the end of the story. After releasing it some people were having problems playing it. I was finishing the demo at the party with WindowsXP at the party because Ubuntu doesn't work well in the macbook pro yet, and I added the fullscreen code in the very last minute, and seemed like on Ubuntu that wasn't working very well. So, some days after the release I updated the .zip which a new version that has a nice Resolution selector window before the demo, powered by java.awt.
No, there is still more. There were other people complaining about audio playback issues on Athlon64. Now, I don't know if this is related to the OGG player I was using or Java itself? Anyway I've switched to a MP3 player because it seems to have more options, easier getPosition and easier to implement the seek feature (backward/forward). I don't know if this will fix the Athlon64 thing in the end tho.
Related to this, I've also implemented a nice beat visualizer which lets me easily control if the visuals are losing synchronization. After some hours on it, seems like the problem was that I was initializing everything way too fast. I was starting the tune even before the video mode had change, that made the music stop for a couple of milliseconds, and everything got unsynced from there. So, that should be fixed now, everything seems to be working fine now, I should synchronize some more things on the visuals and I should be able to call it final version :D
Which is funny, I think I've never done a final version before, usually you don't want to do it after the party, but somehow, in this case I'm really enjoying it :? Anyway, that's all for now. Final version in a few days, and that will be the end of these series, oh, and yeah, I'll release all the sources so anyone can laugh, learn or fix the mess.
Oh yes, you have the current version (v1.1) here:
http://pouet.net/prod.php?which=51075
no comments
Status:
-88 days left until Inspire08
Released but unfinishedYou may already know that the demo was released already two weeks ago at Euskal. Yes, this is how usually goes, you work for a demo for X party, you don't finish it in time and release it on Y party.
In the end it was actually a invitation for D///FEST 2008 as originally intended. Since the last post I didn't do much work on it to be honest, I did most of the part on the hotel while at Bilbao. I still wasn't able to forward/backward the tune so I still had the same problem of having to sync the something in the end of the demo and had to watch the whole demo. Some day... some day... But, tired of having to get the sync times by hand I added a Timer.getBeat() method. On init I sent the length of the beat (which is my tune is about 856ms) and then Timer.getBeat() will just give me back System.currentTimeMilliS() / beat_length. Once I found out the exact length of the beat the rest of the synchronization was much faster to produce. Instead of if (Timer.getTime() > 109568), now I had if (Timer.getBeat() > 128). Much easier to read for sure.
Then added the texts on top of everything, because, after all I had to talk about the event. Unfortunately I had to make the texts by myself too and that took some brain time. Which is something you don't have few hours before the deadline.
Last but not least, managed to do the greetings part/code in about 30min. All thanks to the Timer.getBeat() idea o/.
But this is not the end of the story. After releasing it some people were having problems playing it. I was finishing the demo at the party with WindowsXP at the party because Ubuntu doesn't work well in the macbook pro yet, and I added the fullscreen code in the very last minute, and seemed like on Ubuntu that wasn't working very well. So, some days after the release I updated the .zip which a new version that has a nice Resolution selector window before the demo, powered by java.awt.
No, there is still more. There were other people complaining about audio playback issues on Athlon64. Now, I don't know if this is related to the OGG player I was using or Java itself? Anyway I've switched to a MP3 player because it seems to have more options, easier getPosition and easier to implement the seek feature (backward/forward). I don't know if this will fix the Athlon64 thing in the end tho.
Related to this, I've also implemented a nice beat visualizer which lets me easily control if the visuals are losing synchronization. After some hours on it, seems like the problem was that I was initializing everything way too fast. I was starting the tune even before the video mode had change, that made the music stop for a couple of milliseconds, and everything got unsynced from there. So, that should be fixed now, everything seems to be working fine now, I should synchronize some more things on the visuals and I should be able to call it final version :D
Which is funny, I think I've never done a final version before, usually you don't want to do it after the party, but somehow, in this case I'm really enjoying it :? Anyway, that's all for now. Final version in a few days, and that will be the end of these series, oh, and yeah, I'll release all the sources so anyone can laugh, learn or fix the mess.
Oh yes, you have the current version (v1.1) here:
http://pouet.net/prod.php?which=51075
no comments
Thank you for writing to Yahoo! Account Services. Part 2
no comments
Dear Ricky,
Have you read what I wrote on the "Additional Information" field? I don't know the birthday I submitted. Why can't Yahoo be like any other services and just send a new password or link to the associated email? If that's not possible I no longer have any reason to bother about Yahoo services anymore.
Answer.
Hello Ricardo,
Thank you for writing to Yahoo! Account Services.
We have reviewed the verification information that you have provided. However, we were unable to match the zip code that you provided with the information that was entered during registration or when this account was last updated. To protect the security and privacy of all accounts, we are unable to provide login or other account assistance without completely verifying the account.
Please resubmit your request, and remember to match the information as it was entered when you originally established your account, or when you most recently updated your information. We look forward to assisting you with this account once the appropriate verification information has been received.
Thank you again for contacting Yahoo! Account Services.
Regards,
Keith
Yahoo! Account Services Customer Care
What have I learn from this? Try to avoid robot answers in your web-services, otherwise you may sound like a COMPLETELY RETARD. Specially when the robot need to answer user questions. I don't mind having to wait 1 week for a personal answer, better than being answered in 4 hours with stuff like this.
Have you read what I wrote on the "Additional Information" field? I don't know the birthday I submitted. Why can't Yahoo be like any other services and just send a new password or link to the associated email? If that's not possible I no longer have any reason to bother about Yahoo services anymore.
Answer.
Hello Ricardo,
Thank you for writing to Yahoo! Account Services.
We have reviewed the verification information that you have provided. However, we were unable to match the zip code that you provided with the information that was entered during registration or when this account was last updated. To protect the security and privacy of all accounts, we are unable to provide login or other account assistance without completely verifying the account.
Please resubmit your request, and remember to match the information as it was entered when you originally established your account, or when you most recently updated your information. We look forward to assisting you with this account once the appropriate verification information has been received.
Thank you again for contacting Yahoo! Account Services.
Regards,
Keith
Yahoo! Account Services Customer Care
What have I learn from this? Try to avoid robot answers in your web-services, otherwise you may sound like a COMPLETELY RETARD. Specially when the robot need to answer user questions. I don't mind having to wait 1 week for a personal answer, better than being answered in 4 hours with stuff like this.
no comments
Thank you for writing to Yahoo! Account Services.
no comments
What happens if you're one of those people that don't like to submit the right birth date to internet services and you forgot your password?
In 99% of the internet services out there that won't be a problem as long as you have access to the associated email address. But the clever guys at Yahoo! needed to be the 1%.
On the appropriated form I wrote this to them:
I can't use the "Forgot your Password" feature on the site because I don't remember birthdate/country/postcode. It's very possible that I didn't submitted the real ones. Would it be possible to just get sent the password or a new password to whichever email address is associated with the ****** account. I'm sure I got access to whichever email account it's.
And this is their answer:
Hello Ricardo,
Thank you for writing to Yahoo! Account Services.
I understand that you would like to reset the password of your Yahoo! account. I'll certainly help you with that.
We have reviewed the verification information that you have provided. However, we were unable to match the date of birth that you provided with the information that was entered during registration or when this account was last updated. To protect the security and privacy of all accounts, we are unable to provide login or other account assistance without completely verifying the account.
Please resubmit your request, and remember to match the information as it was entered when you originally established your account, or when you most recently updated your information. We look forward to assisting you with this account once the appropriate verification information has been received.
Thank you again for contacting Yahoo! Account Services.
Regards,
Ricky
Yahoo! Account Services Customer Care
Which makes me wonder if Ricky is a robot or they just don't know how to read yet. Otherwise, if internet stuff was unnecessary complex already (captchas and co.), they even needed to make it more complex, oh no.. I mean, more secure xD.
In 99% of the internet services out there that won't be a problem as long as you have access to the associated email address. But the clever guys at Yahoo! needed to be the 1%.
On the appropriated form I wrote this to them:
I can't use the "Forgot your Password" feature on the site because I don't remember birthdate/country/postcode. It's very possible that I didn't submitted the real ones. Would it be possible to just get sent the password or a new password to whichever email address is associated with the ****** account. I'm sure I got access to whichever email account it's.
And this is their answer:
Hello Ricardo,
Thank you for writing to Yahoo! Account Services.
I understand that you would like to reset the password of your Yahoo! account. I'll certainly help you with that.
We have reviewed the verification information that you have provided. However, we were unable to match the date of birth that you provided with the information that was entered during registration or when this account was last updated. To protect the security and privacy of all accounts, we are unable to provide login or other account assistance without completely verifying the account.
Please resubmit your request, and remember to match the information as it was entered when you originally established your account, or when you most recently updated your information. We look forward to assisting you with this account once the appropriate verification information has been received.
Thank you again for contacting Yahoo! Account Services.
Regards,
Ricky
Yahoo! Account Services Customer Care
Which makes me wonder if Ricky is a robot or they just don't know how to read yet. Otherwise, if internet stuff was unnecessary complex already (captchas and co.), they even needed to make it more complex, oh no.. I mean, more secure xD.
no comments
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
*profile

traditional id: Ricardo Cabello Miguel
based in: London, UK
more: twitter, twitpic and soundcloud.
*affiliations
60fps, escena.org, xplsv.tv and xplsv.com.
*input
friends
aaron koblin
abscondorium
blackpawn
campbell imray
cardboard robot ninja pirate monkey
carlos ulloa
david o'reilly
diego f. goberna
iñigo quilez
jare
jesse kanda
jorge fuentes
kile
mike tucker
nanika
nuende
soledad penadés
tnghm
unit zero one
vadik marmeladov
zafio
zeh fernando
art
8bit today
build
cocos' island
flight404
hairy teeth
hi-res!
neave
nulla dies sine linea
patecreme
postspectacular
quel solaar
siggi eggertsson
tha.ltd
today and tomorrow
united visual artists
vvork
yugop
dev
andre michelle
alternativa
antti kupila
away3d
boostworthy
broken blog
bytearray
den ivanov
der schmale
drawlogic
fladdict
flash video
general relativity
gskinner
hidiho!
joa ebert
john grden
kaourantin
keitap
less rain
li
michael battle
nulldesign
papervision3d
pengin.swf
photon storm
pixelero
polygonal
quasimondo
sandy
saqoosha
sephiroth
simppa
tom.drastic.net
uve producers team
zero point nince
zupko
music
hunz
ochre
ronny pries
humour
wulffmorgenthaler
xkcd
