Kubuntu 15.04 Beta 1. WiFi no use

So, decided to test run Kubuntu 15.04 for having latest Plasma desktop. Install went smooth alongside my Kubuntu 14.10 and Windows 8.1.

1. Booting into the system, i simply can’t access any of the WiFi either with hidden SSID or broadcasted one. I’d get the following message.

Connectino Deactivated. The WiFi network could not be found

2. The start menu also froze which when force-fully killed, the whole desktop and taskbar was gone leaving only applications open. I could still switch between them by putting my cursor on the top left corner which displays all open apps.

snapshot4

3. I also notice that when running System Monitor (ksysguard) from KRUnner by pressing ALT+F2, the KRunner would not disapear unless i close System Monitor again.

snapshot5

And when I would close it, I’d get this error message then KRunner closes.

snapshot6

Final Notes:
I can say Kubuntu 15.04 is really really fast. Dolphin, System Monitor, Firefox open like in a breeze. It feels like on an SSD. But unfortunately I won’t be able to test more as I can’t get the WiFi to connect 🙁

MyT Fibre steals 1 out of my 50GB monthly allowance

Today is the 1st of March. My MyT Fiber connection was supposed to be upgrade to 10Mbps. But I notice I am still on 1Mbps. I check on their website. I see my volume allowance back to about 50GB.

snapshot33

I wanted to try Kubuntu 15.04 Beta 1. The download reached about half. Decided to call Orange customer support on 8902.

The lady told me to restart my Fibre livebox. My connection back to 10Mbps.

I already lost about 1GB of data on 1Mbps since the morning. She says I need to restart my Livebox at each beginning of month because they updated on their part and I need to do same at home. But they can deduce from my data allowance automatically. This is no problem for them.

UPDATE:

https://www.facebook.com/photo.php?fbid=10210078306587188&set=a.1457356646900.61743.1622890382&type=3

WTH Orange?

MyT LaFibre (10Mbps limited at 50GB monthly)

Terms:-
B : byte = 8bits
Mb: megabit = 1024 * 1024 bits

MB: megabyte = 1024 * 1024 bytes = 1024 * 1024 * 8 bits

GB: gigabyte = 1024 MB

snapshot30

Been more than a month now since been using Orange’s (Mauritius Telecom) fibre connection with 10Mbps speed i.e. you downloaded at 1MBps. Since I usually use peer to peer download method (Torrents), I can say if there are enough peers, most of your downloads will be at that speed. If you use file sharing websites, then a speed limitation might come from them 😉

10Mbps is more than enough for me. My HD video contents download faster than I can watch. A 700 MB Ubuntu ISO takes 10 minutes to download. A 1400 MB 1080p .mkv video takes about 20 minutes to be downloaded. I can download sequentially to watch as it downloads. Why should I want a 100Mbps connection right now?

The Catch?

The 10Mbps is only applicable to the first 50GB traffic. Yes. Both downloads and upload in that. Think at the beginning of the month, I saw about 54GB in the customer section on Orange’s website. But that’s it. Being a responsible torrent user is harder. I usually seed to 1.10 ratio. I have to wait when the 50GB is over to seed unlimited till the end of month.

50GB is used up in 15 days.

My mom and sister are heavy “youtubers”. I had to tell my mom yesterday to limit watching her serials to extend the high speed time. 50GB is really not enough for a regular family usage.

orange3

No 2Mb/s for local and youtube when package is over

When your 50GB ends, you go down to 1Mbps. Seriously? Make it to 4Mbps atleast!

WiFi weaker

I noticed the WiFi signal is a bit weaker than the previous ADSL modem. Anyone else noticed this?

media-20150215

Online Gaming
I usually play League of Legends online. Found my ping to be almost same. Nothing to note here.

Conclusion

10Mbps is the perfect speed to have in 2015. But the data limit are a deal breaker. It is torture. You don’t feel “free” anymore.

You start wondering whether it is really important to download this right now. Think I would have preferred to have 5Mbps unlimited throughout the month rather than 10Mbps for 50Gb then 1Mbps afterwards. Anyone with the same opinion? Ideally, we should all have 10Mbps unlimited!

The Timestamp

No one stores age in a database. Age is a derived attribute. We usually store date of birth of someone.

As a noob, I put the dob field as INT(10) in my database. To select e.g. users between 18 – 25 years old, I’d run the following SQL query:

SELECT *
FROM users
WHERE dob <= unix_timestamp(NOW() <= (NOW() - INTERVAL 18 YEAR) AND dob >= unix_timestamp(NOW() - INTERVAL 25 YEAR)

It worked fine until I realized that it would not work for people who are born before 1970. PHP’s strtotime() function was returning a negative number as timestamp which is correct but the DB would refuse to put it since it was INT.

After some more googling, I came to know that I should have used DATE type.

After that, everything gets solved.

SELECT *
FROM users
WHERE dob <= (NOW() - INTERVAL 18 YEAR) AND dob >= (NOW() - INTERVAL 90 YEAR)

The advantage now is that it can be used to POST with HTML5 forms and used as value directly.

Charlie, or not be? (Censored Version)

Note: I had written an R rated version previously which my friends told me was too sensible. I’m writing a summary for the public release 😛

A Public Figure does has the right to be questioned, talked and analysed based on their actions.

The prophet of Islam was a public figure. He not only affects the Saudi Arabia but his impact was worldwide and throughout ages (1300+ years). In my humble opinion, I believe anyone can either agree or disagree with his actions. Freedom of belief.

With satire, we can know what people are actually thinking. We can have to opportunity to clarify misunderstandings (if any).