YouTube is Haraam on Orange’s Mobile Internet packages

For general knowledge, did you know you are not allowed to watch YouTube or any other streaming website on Orange’s pricey Mobile Internet packages? Here’s what it says in the Terms and Conditions:-

The Offer is not to be used for other activities such as non-Orange internet
based streaming services, voice or video over the internet, peer to peer file
sharing, non-Orange internet based video. Should you exceed this limit or if
such use is detected, notice may be given and Network protection controls
may be applied to all services which Orange does not believe constitutes
mobile browsing. This may result in, at Orange’s discretion, your inability to
purchase The Offer, a reduced speed of transmission, suspension of data
browsing services and/or suspension of your account

The data allowance is very little and yet impose restrictions…

More Mauritian Bloggers Needed

Yesterday there was a bloggers’ meeting at Bagatelle Mall. It was very nice.

Mauritian Bloggers Meeting 2013

I realised I’m still very socially awkward guy. Thought university changed me a bit. I can befriend kids more easily than adults. Lol 😀

Anyways, the majority of the bloggers who came did studies in fields related to computers. I think the blogging culture should be spread among non-computer specialist people. Else the blogosphere would be a little bit biased.

Mauritian people need to voice out their opinions. Mauritians do tell there problems on radio but not everybody listens to radio all the time. If you find something interesting, you just can’t share it on Facebook and make a buzz.

“La parole envol, l’ecriture reste”

Making blogs is just as easy as registering for Facebook. It’s done in few clicks. I recommend blogspot for beginners.it’s very nice and has all the features you’ll ever need.

As bloggers, we can create blogs for our relatives and friends. You can contact me if you want a blog (free for personal blogs). I really hope this culture takes off in Mauritius as the media sucks hard.

Jobless…

Lost my job as System Administrator at a call center. The reason for this purely personal for my ex-boss and her family. So I’m not going to touch those details. This blog post will be about the things I did and learnt there.

The maintenance job
When I was hired, the network and Windows domain was already setup by the previous SA. I had to do the maintenance: checking if all PCs were operational and were able to make calls through them.

Setting up an Apache server
I had setup an Apache server so that foreign clients could access the local files. Of course, the directory had to be password protected.

The proper port had to be configured in the router so as requests on port 80 would be redirected to the Apache server.

Setting up DynDNS
The company was using Emtel wimax 2 mbps connection. The IP address was dynamic. Negotiating with Emtel to get a fixed IP was taking a long time. So I resorted to DynDNS. It did the job kinda well.

Adding more PCs to the existing domain.
As the company grew, i has to add new PCs to the domain.
Had to create users on the Windows 2003 server. Then configure the Windows 7 clients to have a static IP with the DNS pointing to the server.

Shared planning spreadsheet
The agents were sharing a piece of paper to record their meetings. So i made a shared excel document which everyone could open at the same time to write in their datas.

Moving recordings to new Hard-Drive
Space was not enough on the Hard-Drive to store recordings of call. I had to migrate the recording to a new drive while keeping the network path the same. I did the transition during the night using RDP (Remote Desktop Protocol) so as the operation would run as smoothly as possible.

Plans i had in mind for the future
I was planning to write a VoIP program which would be using a database rather than the caller agents have to manually copy/paste the numbers to be dialed from an Excel sheet to a VoIP app. The recordings audio files would have been stored in the database. The operation manager could “validate” calls and hence the recordings would have been available on the internet automatically. But unfortunately i lost the job.

Anyways, i might have done tiny jobs but i learnt lots of things. Learning is what’s important in life. 😉

Finally Succeeded in Setting up a Git Server

Had a long time obsession with code versioning systems. Back in college times, I had seen the MyBB team work using SVN and Redmine. It was amazed by the workflow and issue tracking system: how each bug was reported and a developer would submit a patch to solve the issue.

I had started to read about SVN but then everyone on the web started switching to Git. It made me kinda sad everyone was bashing SVN. Then i started looking into Git systems.

Git in Eclipse

Setting up of the Git server
– Making sure SSH server (openSHH) is installed.
– Created a new user “git” on my laptop
– Disallowed access to shell for the user “git” as it could be dangerous.
– Created a link to the TickVen.git folder inside the home directory of user git so that i won’t have to share the real path to the project with the public (security! 😉 )
– Opened port 22 on my router
– Done 🙂

I’m soo happy to be able to have done this. Now collaborative coding with my team mates would be hopefully much better and enjoyable. No need to go through the pain of manually merging codes. 😉