Category Archives: #Maker

A great article on the next age in human development

This article confirms what I thought.

Nobody wants to say it outright, but the Apple Watch sucks. So do most smartwatches. Every time I use my beautiful Moto 360, its lack of functionality makes me despair. But the problem isn’t our gadgets. It’s that the future of consumer tech isn’t going to come from information devices. It’s going to come from infrastructure.

[via Gizmodo]

Can technology solve the problems of the Caribbean?

As a Technologist, I wonder if the problems in the Caribbean can be solved by technology. The short answer is yes. For this reason, it is my mandate in life to implement technical solutions to various facets of my life and hopefully, those around me can learn and adapt to the new paradigm that the region will have to adhere to.

DDAO and the technology unemployed in Caribbean – rambling

<rambling>

Can Distributed Decentralized Automonous Organizations function in the Caribbean ? Yes, it can and will.  It’s just a matter of what scale and what functions the communities will want to implement these systems.  There will be resistance.  But this will only by those who are part of the increasing technology unemployed with signicant financial debt.  My suggestion would be :

  1. Become part of a community that is self-reliant and become free of any financial debt.
  2. Find the thing you love to do, because you will have no other reason to live, as it won’t be neccessary to work.

</ramblings>

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]

Offshore wind farms could tame hurricanes before they reach land, Stanford-led study says

Computer simulations by Stanford Professor Mark Z. Jacobson have shown that offshore wind farms with thousands of wind turbines could have sapped the power of three real-life hurricanes, significantly decreasing their winds and accompanying storm surge, and possibly preventing billions of dollars in damages.

[via KurzweilAI.net]