Category Archives: #Sci-Fi

Businesses of the future will have API abilities

If you company does not offer an application program interface(API) within 10 years, your business will fail.

They who understands and knows how to manipulate the APIs around their world, will not be in charge of their reality.

— Stanford Mings

Ideas for a 21st Caribbean – The future

The future is already here — it’s just not very evenly distributed.

—–William Gibson, SciFi Author

Today, I saw my mom’s world change.  She had a video chat with her mother in the UK with Skype.  Thanks to this tool, she will now be able to stay in touch with her sisters and mom’s mum’s at a level that would have been unthinkable 10 years ago.  While she and her sisters were FB friends, this type of communication is asynchronous(timeline) and semi-synchronous (realtime chat) at best.  In addition, my Grandma doesn’t have a FB account.  So the idea that that my mom could see and talk with her mother was definitely a major step forward.

Now, many in the First World may say that this is a trivial task and that they have been there, done that.  This is true. However, I think this is just an example of the quote mentioned above.

As more and more members of the Caribbean diaspora start embracing and implementing technology to solve local problems, the future won’t be the luxury of the technology elite, but in addition allow for my mom to strengthen her family ties.

p.s  Auntie Suset…. love the hair !!!

Ideas for the 21st Caribbean

One of my flaws is that I tend to keep my ideas secret, in the strange notion that only I can pull them of and to share them will negate the future opportunities for fame and fortune.  I won’t get into the excuses that stopped me from sharing what gifts, ideas and dreams that I have been brought here to share.  The only thing to know is that 2015 and forward is when I will “release the Kraken” !

Using…too …much memory ……..

So about 2 months ago,  I installed ChruBuntu on my Acer Chromebook and  have been loving it for the most part.  However there is one nagging issue and it’s the memory usage that slows the system to a crawl when visiting some rich content websites (e.g. Youtube, FB, Gmail, etc).

A normal task would be to simply kill the browser process, ie. Firefox when the system gets sluggish. However by that time, opening a terminal window and then waiting for inputs to appear on the screen was getting ridiculous.  On average it would take me 2-4 minutes,  before I could kill the FIrefox process.

My solution : A shell script that runs every minute and monitors the memory usage.  The moment free memory drops below a certain threshold, all firefox (and Chrome) processes are executed with prejudice  !!

Here is the script

————————————————————————————

#!/bin/sh

/usr/bin/free -m | grep Mem | grep -v grep | awk ‘{print $4}’ > /tmp/freem1.log
mem=$(cat /tmp/freem1.log )
lmt=”95″
#echo “memory usage is $mem\n”

if [ “$mem” -gt “$lmt” ]
then
echo “Memory usage is fine at $mem \n”
else
echo “Memory is Less than $lmt at $mem. Killing chrome and firefox\n”

ps ax | grep firefox | grep -v grep| awk ‘{print $1}’ | xargs kill -9
ps ax | grep chrome | grep -v grep| awk ‘{print $1}’ | xargs kill -9
fi

————————————————–

Hmmm….. How Iron Man’s Arc Reactor (Probably) Works

Sci-fi today is Science tomorrow….

Since the Iron Man arc reactor is a fictitious device, and it has no official scientific explanation in the Iron Man canon that I’m aware of, we might as well something up. Now, I’m mixing real science and fake science here. So physics nerds and comic-book nerds: Deal with it.

[via gizmodo]