Categories
Umum

Selamat Tinggal Flash

Saya lupa kapan terakhir kali mengakses situs yang masih menggunakan teknologi Adobe Flash Player. Saya pikir teknologi ini sudah ditinggalkan cukup lama. Peramban Google Chrome juga sudah mengucapkan selamat tinggal kepada Flash pada pertengahan 2017 setelah Adobe — sebagai perusahaan pengembangnya — juga memutuskan untuk menghentikan dukungan pengembangan dan distribusi Adobe Flash Player di akhir tahun 2020.

Given this progress, and in collaboration with several of our technology partners — including AppleFacebookGoogleMicrosoft and Mozilla — Adobe is planning to end-of-life Flash. Specifically, we will stop updating and distributing the Flash Player at the end of 2020 and encourage content creators to migrate any existing Flash content to these new open formats.

Adobe Blog: Flash & The Future of Interactive Content

Ternyata beberapa waktu lalu, ada situs yang masih membutuhkan Adobe Flash Player di halaman otentikasinya. Beruntung, masih bisa instal Flash dan melakukan otentikasi.

Categories
Umum

Ulasan Ponsel Microsoft Lumia 535 Dual SIM

Microsoft, sebagai perusahaan yang mengakuisisi Nokia, mengeluarkan produk ponsel pertama yang menghilangkan identitas “Nokia”, yaitu Microsoft Lumia 535. Jadi, tidak perlu bingung mengapa dulu ada istilah ‘Nokia Lumia’, namun nama Lumia sendiri sekarang tidak disandingkan dengan ‘Nokia’.

Microsoft Lumia 535

Pertengahan Desember 2014 ini, saya memutuskan untuk membeli Lumia 535. Produk Lumia 535 ini saya beli melalui pre-order di Blibli dan saat itu saya mendapatkan penawaran harga sekitar Rp 1.250.000,00 (pembayaran menggunakan kartu kredit). Saya memang cukup lama tidak menggunakan produk Nokia Lumia/Microsoft (sekarang Microsoft Lumia). Sehari-hari, saya sendiri menggunakan produk Apple (iPhone 5, iPad 3, dan MacBook Pro 15″ Retina Display), dan juga OPPO (OPPO R819). Jadi, secara sistem operasi di ponsel, saya sehari-hari menggunakan iOS dan Android.

Spesifikasi dan Disain

Untuk spesifikasi, saya tidak akan terlalu membahasnya disini. Ulasan lengkap tentang spesifikasi teknis Lumia 535 bisa dilihat langsung di situs Microsoft. Beberapa informasi singkat tentang spesifikasi dasar yang mungkin perlu dilihat adalah:

  • Mendukung dual SIM
  • Ukuran layar 5 inchi
  • Sistem operasi: Windows Phone 8.1 (Lumia Denim)
  • Kamera utama dan kamera depan dengan resolusi 5 MP
  • Dimensi: panjang: 140,2 mm, lebar: 72,4 mm, tebal: 8,8 mm, dan berat: 146 gram
  • Resolusi layar: qHD (960 x 540)
  • RAM: 1 GB
  • Memory internal: 8 GB. Dapat ditambah dengan MicroSD sampai dengan 128 GB.

Pilihan warna cukup beragam sesuai dengan selera yaitu hitam, putih, oranye, hijau, dan biru. Saya sendiri memilih warna oranye. Untuk finishing material casing adalah dengan finishing glossy. Secara disain, saya menyukainya. Walaupun dari sisi ukuran bukanlah yang paling kecil, dan paling tipis, namun secara keseluruhan dari sisi disain tidak mengecewakan. Paling tidak, masih cukup nyaman untuk dipegang dengan satu tangan. Untuk yang berjari agak pendek, mungkin akan terasa agak kurang nyaman dengan dimensi yang ditawarkan.

Categories
General

Nokia N9 Sample Photos

I love photography.
After using some different cameras (DSLR and phone camera), I think  this year I spend more time using mobile phone, not the DSLR. Sometime, I almost forgot that I still have Canon 450D. After having Nokia N9 in my hands, I wanted to test its camera features, just like what I did with my previous Nokia N8.

Nokia N9 does not have the best camera specifications compared to other mobile phone products (with camera). But, for a mobile photography, the photo quality is pretty good. Let’s look at Nokia N9 camera specifications:

  • 8 megapixel camera with Carl Zeiss optics
  • Wide-angle lens, true 16:9 imaging
  • Large lens aperture F2.2 for better and faster photos in low light conditions
  • Dual LED flash
  • Digital shutter, continuous autofocus, touch-to-focus and exposure lock
  • Focal length: 3.77mm / 28mm, F number/Aperture: F2.2
  • Still images file format: JPEG/EXIF/XMP
  • Digital zoom up to 4x for still images and video

Now, let’s see how some photos taken using Nokia N9. These photos are not edited at all. Nokia N9 has also a simple photo editor to crop, rotate, brightness, and contrast, etc. I only captured some photos, and send to Flickr directly from the phone using built-in upload to Flickr feature.

Categories
General

Floating CSS menu on YouTube Flash Videos

I currently involve in a website project that put videos as its primary contents. My involvement is not primary on the design. I’m just helping a little. What I like from the process is to find solution. One of the problem is on the navigation menu. It’s very common to have navigation with sub-menus. Without having special objects like flash, everything should be under control. But, not this time.

The problem

When embedding a video from YouTube (in this case, using the iframe method), the navigation is broken because it sits behind the video. The same result with the old embed code. See the screenshot below:

It’s wrong. The menu should be displayed above the video. It should be like the image below:

So, is there a simple way to fix this problem? Yes.

The solution

The solution is pretty easy. You only need to add a parameter for the embed code. It’s wmode=transparent. I will use an example here. This is an embed code from Serabi Solo video at YouTube:
<iframe width="640" height="360" src="http://www.youtube.com/embed/Gi-lO8OMUns" frameborder="0" allowfullscreen></iframe>
The code above should me modified by adding wmode=transparent parameter. The final code will be like this:
<iframe width="640" height="360" src="http://www.youtube.com/embed/Gi-lO8OMUns?wmode=transparent" frameborder="0" allowfullscreen></iframe>
It’s easy, right? But, what if you want to use the old embed code? You can fix the problem using a same method. For example, this is YouTube’s old embed code from the same video:
<object width="640" height="360">
<param name="movie" value="http://www.youtube.com/v/Gi-lO8OMUns?version=3&amp;hl=en_US"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/Gi-lO8OMUns?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="640" height="360" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>

You need to add a parameter. Just add <param name="wmode" value="transparent" />.
The final code will be like this:
<object width="640" height="360">
<param name="movie" value="http://www.youtube.com/v/Gi-lO8OMUns?version=3&amp;hl=en_US"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<param name="wmode" value="transparent" />
<embed src="http://www.youtube.com/v/Gi-lO8OMUns?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="640" height="360" allowscriptaccess="always" allowfullscreen="true"></embed>
</object>

Have fun!

Categories
General

Nokia Funaholic Icon Search

Following Nokia Indonesia’s Eksismeter campaign, there is now Nokia Funaholic Icon Search. This is all about finding an icon for Nokia E5. This Funaholic Icon Search will find three real person that represents three characters: Antonio (the super exist), Daisy (the music lover) and Kareem (the super busy guy). The mechanism is similar with the previous campaign: it’s all about being online presence, and everyone can join.

Right now, there are nine icon candidates. Visitors (you!) can vote your favorite candidates and you can get a chance to win one of these gifts from Nokia Indonesia: Nokia C3, Nokia X5 and Nokia E5!

How those characters — if you’re also one of them — take advantages from Nokia E5 device? Let’s look at some cool features for them.
For those who want to get online everytime (connected to many social network services, chats, and also email), Nokia E5 offers features that work for this purposes:

  • Messaging — Email is one of the important thing that people should have. Fromt this device, you can acess up to 10 personal email accounts. Does it only support Ovi Mail? No. You can check your  Hotmail, Gmail and Yahoo! Mail. I have tried this, and I find it useful. I use the messaging office to check my office email, Yahoo! Mail, Google Apps for domain email, and also Gmail. Until today, I find nothing but good features. Ovi Mail offers 1 GB of storage, and I think it also offers a short and cool domain name.
  • I want to chat also to make real time conversation with my friends. Using Nokia Messaging IM application, I can directly connect to some service like Yahoo! Messenger, and also Google Talk. And, to make the whole communication experience better, Nokia E5 also equipped with full QWERTY keyboard.
  • Nokia E5 also supports 3G and Wi-Fi connection. Free Wi-Fi can be found easily here in Indonesia when going to the mall, coffee shop, and some other public places. Great deal!
  • The home screen can be very useful because you can make access to your favorite menus. Also, you can also customize the home screen to create the a personal look that really “you”.
  • Camera — The camera features are not disappointing I guess. You have 5 MP camera, digital zoom up to 3x and also LED flash. It should be suitable for on-the-go photography. Does it also support video recording? Yes, with .mp4 or .3gp file formats.

All Nokia E5 features can be found at Nokia E5 product info page.
Back to Nokia Funaholic Icon Search I mentioned above, you can get a chance to get this Nokia E5 only by giving your vote. Now, you can start voting and may the best win :D

Categories
General

Taking Photos using Nokia N8 (Personal Experience)

The first thing I did after having Nokia N8 (product details in Bahasa Indonesia) in my hands last week was taking photos. I have been following this phone for months, and feel so lucky because I now have chance to try it myself. First impression: Love it! Nokia N8 offers a great improvements on its camera. Now, it has 12 MP camera, equipped with Carl Zeiss lens and also Xenon flash.

I like taking photos (go to Flickr photostream for photos), but since I live in Jakarta right now (and I didn’t bring my DSLR camera), this phone should be a good companion for me. Better quality photos (using phone camera) is one of the features offered besides entertainment, music, business-related features, and also video. For this post, I will write more about the word ‘photo’. Anyway, you can explore full specification and features by going to Nokia N8 product page (or, go to Nokia Indonesia for details in Bahasa Indonesia).

In the last few days, I took some pictures in some different condition (day light, night, low-light). I have to admit that I’m really impressed by the final results. Each photo has around 1 MB in size. If needed, I can adjust some settings like “Scene Mode” (Automatic, User defines, Close-up, Portrait, Landscape, Sport, Night, and Night portrati), Color Tone (Normal, Sepia, Black and White, and Vivid), White Balance (Automatic,  Sunny, Cloudy, Incandescent, and Fluorescent), Light sensitivity, Contrast, Sharpness and also Exposure. But, the “Automatic” mode should just work when you only need to point and shoot.
After photos were taken, I can also make some basic editing actions like cropping, resizing, or color adjustment. Photo dimension taken using Nokia N8 is 4000×2248 pixels. For a landscape photo, it will not be a problem. But, when taking portrait photo I feel that it’s “too tall”.
Seeing is believing, right? So, here are some photos taken using my Nokia N8. All photos are displayed without any editing.
20102010066
20102010030
2010201003420102010049
20102010039

Categories
General

Ten Things Why Nokia N8 Is Better (than iPhone 4)

Ten Things Why Nokia N8 Is Better (than iPhone 4). Comparison on these subjects: price, design, video call, HDMI + Dolby Surround, memory, USB On-the-Go, usability (reception issue), sensor, Xenon flash, editing software & Ovi Maps are free (Symbian^3)

Categories
General

YouTube Embed with New Player Design

In my previous post, I mentioned about YouTube’s new player design. Right now, it only works on YouTube site — not for videos embed externally. But, with a small modification on its player parameter, we can have the new player design for the video. Example? This is the original embed code:

<object width="560" height="340">
<param name="movie" value="http://www.youtube.com/v/XdQxtQFfxiM&hl=en_US&fs=1&rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/XdQxtQFfxiM&hl=en_US&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed>
</object>

Now, look at the this line of code:
http://www.youtube.com/v/XdQxtQFfxiM&hl=en_US&fs=1&rel=0
To have the video inserted using a new player design, just put version=3 parameter there. So, it will be like this:
http://www.youtube.com/v/XdQxtQFfxiM&hl=en_US&fs=1&rel=0&version=3
You will have YouTube video displayed like what you see below. Of course, you can still modify out it looks using another player parameters.

I personally like the new player design. So, I modified all video codes used at my videoblog to have the new look. It didn’t take much time since I replaced the codes using search and replace plugin. :)

Categories
General

We Choose the Moon

We Choose the Moon — Celebrating the 40th Anniversary of the Apollo 11 Lunar Landing. Flash plugin required. (via kottke)

Categories
General

Best Online Flash Games

If you have free time, take a look at these huge collection of online flash games. You will not find 30, or 50 flash games but 150! Screenshots, short overviews and links to play those games are also available.

Categories
General

Adobe Flash Player 10

Adobe Flash Player 10 is now available. Get it now. According to the datasheet (PDF, 491KB):

  • Engage users with highly innovative and cinematic experiences using custom effects and filters created with Adobe Pixel Bender and native 3D effects. Innovate with text to create new types of publications using an advanced text engine, typographic control, and new layout options.
  • Flash Player 10 leverages the GPU to deliver faster performance for applications and videos. The vector data type, multicore support, and open source ActionScript Virtual Machine 2 (AVM2) all contribute to highly scalable code execution performance. Text-rendering improvements boost performance and rendering quality for Asian languages.

Or, you can read the overview (PDF, 1.33MB) first before downloading.

Categories
General

Pixlr, Online Image Editor

Here another alternative for online image editor. It’s called Pixlr. We can upload and image images directly from internet browser. To enjoy this service, we need to have Flash plugin installed. Learn more.

Categories
General

Kompas Cyber Media: Let's give those ads some information

Willy Sudiarto Raharjo wrote:

I was wondering whether Kompas should change their text into “Kompas: Cyber Banner” (original: Kompas: Cyber Media) and “KCM – Hanya Berisi Banner” (original: KCM – Bukan Sekadar Berita) because it’s full of Banners, not information. Read more »

Logo Kompas
I do not visit Kompas website regularly, I mean everyday. And I can’t agrre more with what Willy wrote above. And, let’s try to find out what makes the site slow to load.
Here, we are talking about advertisement (static image and also flash ads). Are they annoying? I think so. This advertisements can be a great method for Kompas to make profit. I am not sure how much those advertisers should pay for their advertisements. But the point is: the ads are there, and we (as a user) can not do much about it. It’s is Kompas decision.

Categories
General

SnowDays

Click and drag to create your own snow flakes. If you want to see other snowflakes created, click on the tiny falling flakes. Flash required. (via)

Categories
General

ALA: Flash Satay

ALA: Flash Satay: Embedding Flash While Supporting Standards.