Symbiatch - maailma on rikki

N95:n uusi firmware / N95 New Firmware

29.11.2007 16.48 - mobiili 

Nokia on näköjään julkaissut uuden firmwaren N95:lle, v20.0.015. Tässä versiossa on sanottu olevan nyt on-demand paging, joka parantaa muistinkäsittelyä ja vähentää kulutusta. Jopa vapaan muistin määrä käynnistyksen jälkeen on kuulemma saatu nostettua 18 megasta 30 megaan. Eli nyt vain puolet muistista menee käyttikselle entisen yli 70 prosentin sijaan! Ja ohjelmia ei kuulemma tapeta taustalta niin äkkiä vaan oikeasti voi moniajaa!

Akunkesto on kuulemma parempi, koska uusi versio alikellottaa prosessorin jos mitään erityistä ei tehdä. Erittäin hyvä, tätähän on muissa laitteissa nähty jo pitkään. Ja kamerakin kuulemma toimii heti eikä vartin päästä.

Nämä kaikki "kuulemma" koska juuri vasta huomasin asian enkä ole ehtinyt omaa luuria päivittää. Erittäin innolla kuitenkin odotan josko vihdoinkin luuri oikeasti toimisi.

Nokia seems to have released a new firmware for N95, v20.0.015. This version is said to include on-demand paging, which results in a better memory handling and reduces memory usage. The amount of free memory after boot is increased from 18MB to 30MB. So now only half of the memory goes to the operating system compared to the over 70 percent in the previous firmware. And people have said that applications aren't killed that much, so you can even multitask!

Battery also lasts longer because the new firmware underclocks the CPU when not doing much. Very good, we've seen this before in many devices. And the camera is said to work fast and not after a 15 minute wait.

This all is hearsay since I just noticed this and haven't yet updated my own phone. But I'm very excited, maybe now the N95 will actually work the way it should.

Kommentit (2) | Kommentoi

Macbook Ate My Hard Drive

28.11.2007 09.07 - IT-ala 

On ollut raportteja kuinka Macbookit tappavat Seagaten kovalevyjä. Itse hankin Seagaten kiintolevyn Macbookiini oston jälkeen. Tarkistin että minulla ei ollut tuota firmwarea josta ongelmia on ilmoitettu. Mutta mites kävikään. Eilen kone jumahti ja uudelleenkäynnistyksen jälkeen levy pitää kauheaa ääntä eikä boottaa. Eli levy on sitten hajalla. Hienoa. Ensimmäinen hajonnut kiintolevy minulle vaikka olen kyllä käyttänyt aika reippaasti levyjä.

Nyt pitää sitten ottaa Appleen yhteyttä. Todennäköisesti sanovat evvk koska ei ole heiltä hankittu levy, vaihda takuussa. Nähdään miten käy.

Ja kyllä, varmistukset löytyy edelliseltä päivältä mutta tämä on silti todella ärsyttävää kun tuo kone oli pääasiallinen työkone. Mutta ehkä tuo onkin se ongelma. Macceja ei ole tarkoitettu työntekoon, ellei kyseessä ole jokin graafinen suunnittelu (niinhän Applen mainokset antavat ymmärtää ;). Oma vika. Ehkäpä pysyttelen Dellin tuotteissa tästä lähtien. Latitude D800 käytössä neljättä vuotta, alkuperäiset osat, vain näppäimistö vaihdettu kun yksi näppäin irtosi. Ja kaikki palvelimet ovat Delliä, 2-3 vuotta käytössä eikä mitään vikaa. Koputetaanpa puuta...

There have been reports of Macbooks destroying Seagate hard drives. I did get a Seagate drive for my Macbook after I bought it. I checked that I did not have the firmware version mentioned on that site. But what do you know. Yesterday the machine froze and after rebooting the drive just makes horrible noises and won't boot. So it seems that my drive is dead. Woohoo. The first drive to fail on me since forever and I have used lots of drives.

I have to contact Apple and ask about this. They'll probably say they don't care, just get the drive replaced on warranty since it's not their drive. We'll see.

And yes, I do have backups of most of the data on the drive from the previous day, but still it's a huge inconvenience for me since it was the machine I did most of my work with. But maybe that's the problem. Macs aren't meant for work, unless it's graphic design and stuff (that's what their ads say at least ;). My bad. Maybe I'll stick to Dell from now on. Latitude D800 going on fourth year, original parts, only keyboard changed after one key fell off. And all my servers are Dell, 2-3 years old, no problems there either. Knocking on wood...

Kommentit (3) | Kommentoi

Hell Froze Over with Android

13.11.2007 15.05 - mobiili ohjelmointi 

I actually didn't think I'd see the day when I'd find a system that's worse than Symbian. But yesterday the day came: Google released the first SDK and information about Android. And I can say it's horrible.

The whole "open" system is programmable with Java. Well, we do have JavaME etc, so it's not that big of a deal. Especially if you get more functionality out of it. But wait! It's not really Java! It's Java compiled to Java Bytecode compiled to Google's own bytecode. Great.

The classes available, terminology (Intents, whattaheckarethey?) and coding style is extremely perverted and horrible (yes, that's my opinion, but I've heard other people say so too).

You want to make a user interface? Cool. Write an XML resource and use that. Want to get the object that represents a button? Use findViewById(R.id.buttonid). Want to know when the user clicks on the button? Use an instance of the class OnClickListener and implement a method there and then find a way to tell other classes what's happening and...

What about security? Surely Google has seen what Symbian and others have done and made a nice cool security API? In our dreams. The same "on install time show user what the app wants to do, after that don't care about anything." Cool. So if I get to inject code into the system (in which all applications have the same permissions), you can do whatever you want. Cool. Security by... not enforcing any?

And how about sandboxing applications? Well, since it's Linux running under the UI, let's create separate user accounts for each application! This way applications can't share data. But... I'd like to share data between my applications, how do I do that?


All this is the result of ~30 minutes of checking out the samples and documentation on Google's Android site. But that was enough to ensure me that this is going to be such a mess. But since Google has lots of money, they are getting people to develop apps for Android by offering $10 millions in prizes. Why make a cool platform that really works and solves the problems in current ones, let's just hack something together and use the market hype and pocket change to get the ball rolling, right?

Just go ahead, check the NoteEditor sample from the Android site. See how the onCreate method works. getIntent(), get some URIs, get a note by the highly logical mCursor = managedQuery(mURI, PROJECTION, null, null); call etc. Could you understand this without reading lots of docs first? At least with JavaME, Symbian, Win32API etc you can understand most of the things just by the method, function and class names. But what is managedQuery, what is PROJECTION, what URIs are used and why there are nulls everywhere? (Yes, I know. Java+virtual machine+multiple methods with different parameters calling each other == slow, let's not do those).

Argh. That's all I can say.

Kommentoi

Leijonan kita

08.11.2007 15.49 - televisio työ 

Olen nyt katsonut pian kaikki BBC:n Dragons' Den -sarjan jaksot ja pitää kyllä sanoa että eroa suomalaiseen vastineeseen on kuin... en edes osaa mitään analogiaa sanoa.

Katsoin ensin uusimman kauden (5. jo brittilässä) ensimmäisen jakson ja olin todella innostunut. Lohharit olivat oikeasti ansainneet paikkansa. Kaikilla oli rahaa (ja paljon, toisin kuin Suomessa), kaikilla oli kokemusta useilta aloilta ja kaikki osasivat käyttäytyä. Jos idea ei kiinnostanut, sanottiin helposti negatiivisiakin asioita, mutta rakentavasti. Selitettiin miksi ei kiinnosta, onko idea huono vai eikö esitys ollut hyvä vai onko numerot ihan sekaisin.

Sitten katsoin ensimmäisen kauden ensimmäisen jakson miettien että ehkä viidennessä kaudessa jo homma pelaakin. Ja eikö mitä. Ensimmäinen jakso oli ihan samanlainen. Eli osattiin alusta asti toimia järkevästi!

Ties kuinka monta ihmistä on lähtenyt lohhareiden edestä ilman rahaa, mutta saaneet erittäin hyvää kokemusta, kannustavia sanoja, rehellisiä "älä jatka tätä, tee jotain muuta" ja "älä nyt herranjestas myy taloasi tämän idean takia, mieti lapsiasi" -kommentteja ja - mikä varsinkin suomalaisesta puuttuu - "et sinä tarvitse nyt pääomasijoittajaa, tuotteesi on tuossa vaiheessa, ota yhteyttä näihin ja näihin ja tee näin niin pärjäät ihan omillasikin." Tätä ei suomalaisessa tietenkään nähdä.

Onpa nähty myös pari työpaikkatarjousta rahaa hakemaan tulleille sekä kerran jopa yksi lohhari osti tuotteen rahaa kaipaavalta (siis yhden kappaleen) vaikkei sijoittanutkin. Eli selvästi annetaan ymmärtää, että tuote ja idea on hyvä, mutta ei ehkä ole tarpeeksi kannattava pääomasijoittajalle. Kunnioitukseni lohhareita kohtaan on suurta, vaikken heistä paljoa tiedä enkä heitä tunne. Pelkkä käytös kaikkien näiden jaksojen läpi on ollut uskomattoman kohteliasta ja hienoa.

Mitä sitten suomalaisesta olen oppinut? Sen, että Kakkonen ei halua olla mukana missään muussa kuin valmiin tuotteen myymisessä halpaketjussaan. Sen, että tämä brändinaikkonen ei halua laittaa rahaa mihinkään. Sen, että Suomesta ei joko löytynyt monialaosaajia, tai he eivät halunneet mukaan. Sen, että teknologialla ei ole merkitystä kun yksikään leijona ei ole teknologia-alasta mitään tietävä. Ja sen, että kyseessä on tosiaan viihdeohjelma, jossa mollataan hullujakin summia pyytäviä soittamalla taustalla musiikkia, joka antaa selvästi ymmärtää että tämä henkilö taitaa olla vähän vinksahtanut.

Itsekin muuten tuohon hain mukaan, teknologia-alan idealla. Onneksi en päässyt. Siellä olisi heti ensimmäisenä haluttu tietää paljonko rahaa tulee heti huomenna ja onhan tuote valmis. Siinä kun olisin sanonut että ei kun pitäisi kehittää vielä niin saman tien olisi vähintään kolme menettäneet kiinnostuksensa ja loput halunneet 125 % pääomasta.

Suosittelen kovasti katsomaan BBC:n versiota jos bisnes kiinnostaa. Siitä oppii todella paljon miten pitäisi esittää idea, mitä pitää tietää yrityksen rahatilanteesta ja mistä pääomasijoittajat ovat kiinnostuneita. Ja sen, että ei kannata arvottaa omaa firmaa miljooniin euroihin jos kehitys on alkuvaiheessa. Ei se mene läpi. Mutta jos joustoa löytyy, rahaakin saa.

Jos tuosta toinen kausi tehdään, toivottavasti sinne otetaan vaikka sitten ulkomailta leijonat. Saisi vähän jotain järkeäkin touhuun.

Kommentit (3) | Kommentoi

Google Released Android

07.11.2007 22.47 - mobiili 

Google released Android a couple of days ago. Naturally it caused a lot of interest and lots of media space was used. But there's not really that much real information available. Maybe this will change after the SDK is release next week.

I see some problems with this platform. Google says that the platform will be open to all 3rd party developers and all internal applications will be changeable. This means that anyone can make software that will do anything. So where is security? Even though I really dislike Symbian's Platform Security, it still does something for security. At the moment the information that is available for Android doesn't say anything about this.

Also, how much of the system will be open source and can anyone rebuild the operating system? I would think that at least some drivers could (and should) be closed so that not anyone can change e.g. the functionality of the GSM stack. But we'll see when more information is available.

Who will give support if the user installs applications that alter the basic functionality and the phone won't work? How are the default applications restored? Can anyone change everything? Too many open questions.

I personally don't think this will be that big a deal, at least not in the near future. There are only a couple of device manufacturers in the Android camp at the moment and it all depends on the device price and that kind of things how the consumers will see it. The price of operating system license is so low when compared to the device prices today that it will not be a major factor in the market. Also the current systems (Windows Mobile, Symbian etc) are quite modifiable by the manufacturer, so that won't be a big factor either. But reliability, ease of development etc can be a factor.

So I won't be holding my breath, but I'll comment more after the SDK is released and more information is available.

Kommentoi

N95 Sensor Demoed

02.11.2007 10.23 - mobiili ohjelmointi 

Some people have been quite surprised that N95 has a built-in accelerometer. I'm not, I've known that since the first day I got it, since the camera knows in which position it is. However, I wasn't sure if it's 1D, 2D or 3D and how accurate it is.

Now there are some information and demos available of the accelerometer. Unfortunately Nokia hasn't released the whole API (you only get information about one axis, and only 4 values). I hope they will soon. This will enable us to do many cool things with the N95.

Kommentoi

Nokia MOSHasi Warnerin ulos / Nokia MOSHed Warner Out

02.11.2007 10.17 - mobiili 

Nokia ja Warner pitävät neuvotteluja sen jälkeen kun Warned ilmoitti etteivät aio ottaa osaa Nokian tulevaan musiikkikauppaan. Warner pelkää että heidän sisältöään levitetään MOSHin kautta (Nokian sisällönjakopalvelu). Tällä hetkellä MOSHissa on useita tekijänoikeuden suojaamia teoksia jaossa mutta Nokia ei poista niitä ellei oikeudenomistajalta tule pyyntöä. Tällä tavoin heitä ei voi pitää syyllisenä tekijänoikeusrikkomuksiin.

Toisaalta, EMI on pyytänyt että kaikki Beatles-sisältö poistettaisi, mutta mitään ei ole vielä tapahtunut. Joten näkee mitä tulevaisuus tuo tullessaan.

Nokia and Warner are having discussions after Warner announced that they will not be taking part in Nokia's upcoming music store. Warner is concerned that their content will be distributed via MOSH, Nokia's content sharing system. Currently MOSH contains many copyrighted items, but Nokia's legal standing is that they will only remove the content if the copyright holder asks them to. This way they cannot be held liable for any copyright infringements.

On the other hand, EMI has requested that all Beatles content should be removed from MOSH, but it hasn't yet been done. We'll see what happens in the future.

Kommentoi

Symbian pins

02.11.2007 09.21 -

kuva215
Symbian seems to have at least some sense of self irony...

Kommentoi

Jutut.fi  |  Omat jutut  |  Muiden jutut  |  Kategoriat  |  kirjaudu