Monday, October 5, 2020

FakeBuko



I don't know how to react when I see comments from my friends  in facebook 

Friday, June 5, 2020

God made a photographer


A friend of mine invited me to start chasing lights,
 I was a bit reluctant to join
 since it has been a while I did some pointing and shooting.

this is joffry a good friend of mine thank God he made a photographer
see his work of art https://www.joffryferrater.com/


Tuesday, March 28, 2017

A Photographer wanna be

 
I ask my friend Bernski if he could teach me that sun glaring thing photography.


I wanted to learn on  shooting with sun glares, I ended up being the subject instead. \('O')/

taken from jyväskylä -  a municipality in Finland. I love the place. I hope to visit this place again someday.


that's bernski.

Practice shoot by the lake, except no sun :)


Sunday, January 12, 2014

Restarting and Shutting down linux using direct kernel command

I have a  pocket wifi device which is based on ARMv6 and linux installed, When I tried to do a reboot -h now and shutdown -h now command, it registered a command not found so I figured the busybox did not enable this two useful command.

as an alternative I had to call reboot and shutdown command directly from the linux kernel

to reboot just type:
echo b > /proc/sysrq-trigger

this will immediately reboot the system without syncing or unmounting your disk

to shutdown just type:
echo o >/proc/sysrq-trigger
this will shutoff your system



hope this helps