Tuesday, July 31, 2018

A Milestone In A Long Run; Cricket for me and for my Nation


Mark the date August 1 2018 with golden letters because this is the date Nepal played its first ever one day International cricket match. Every Nepalese cricket fans had waited for this day for a long time and finally it knocked on the door. Without having to wait much longer, the victory came after two days on second O.D.I. and  boy, what a nerve-cracking win that was, with just a single run. It could not have been better scripted and who else deserved more than our very own captain, Mr. Paras Khadka to lead it. We welcomed both of these historic days with pride and jubilation..This was the first step towards a big tomorrow to get established as the formidable cricketing giant. In this world of power, possession and identity, Nepal has always been isolated and suffered identity crisis for decades. Kudos to some of  the blessings nature has put on us, from time to time we get to quote ourselves as "land of Everest" or "a small yet beautiful country on lap of Himalayas in south-east Asia where Buddha was born" if not merely Federal Democratic Republic of Nepal.

Perhaps this is the reason we get an inch or half extra emotional and react instantly even in slightest of matter whenever country is  in stake. Fair enough, a child should defend his old and ill mother whenever neighbors  demean her.
However, hopefully this particular day on calendar will be a milestone for both cricket's and country's future if they both really behold. At least our cricketers are roaring so; if not now Never !!
PC:http://assets-cdn.ekantipur.com/images/the-kathmandu-post/miscellaneous/Nepal-Cricket-team-21022017063213-1000x0.jpg
ImageSource:http://assets-cdn.ekantipur.com/images/the-kathmandu-post/miscellaneous/Nepal-Cricket-team-21022017063213-1000x0.jpg
No copyright infringement intended
Personally, cricket has never been just one more sport to relish.It is a mere reflection and reminiscence of my growing up.If someone asks my mother what one thing about me that made her life difficult those days, she would say my cricket bat and ball.Believe me i have cleaned countless dishes and washed plenty of clothes as the punishment for being home late; Used to leave at early morning with that empty belly and return back at late dusk with the same empty belly but with heart full of joy victory(well certainly, not always!). Every Saturday, those promises to return by lunch time were never been kept  unless she knows where i am playing and decides to do one or two batting by herself. It seems funny now but things turned out pretty serious when my teachers once had to come on field to meet on their home-visit trip just a day before some terminal examination from school.Oh Good ol' days !! Innit?

Even today, when we old mates from the school and hometown catch up, every memories we talk about includes cricket. My first outing, my first fight, my first cigarette and my first girlfriend, there is nothing where cricket does not get involved and so it does to all of my friends growing up  along with me.So when the stake is on cricket, it is not only passion that rises up but also endless emotions.
ImageSource:https://www.thestar.com.my/travel/asia/2014/09/13/the-ancient-city-of-bhaktapur-living-history-in-nepal/
No Copyright Infringement Intended
I was never a child prodigy and destined for the sport( I guess i should accept it by now(wink)) . I was just the passionate one if not the gifted one. But we always had a formidable  team.We were winners,weren't we? Still today, whenever i step into the field, i absolutely hate to lose and play with all my heart out.It gives me that adrenaline rush that no other object in the world will ever reach close to.In particular, it all dates back to the faint memory of 2003 ICC World Cup and since then it has been a beautiful journey together growing up as a cricket fan.It is why when these 11 players play on red and blue jersey on the field, i play along with them under these four walls.Congratulations team for the first victory.This is just the beginning. A beginning of a new journey and good luck guys for the exciting journey ahead. Make us Proud . Jay Chandra Surya !!

Monday, July 9, 2018

Python Scripting -BMI(Body Mass Index)

#!/usr/bin/env python3.7 2 3 #BMI = (weight in kg / height in meters sqaured) 4 #Imperial version: BMI * 703 5 6 def gather_info(): 7 height = float (input("What is your height? (inches or meters)")) 8 weight = float(input("What is your weight? (pounds or kilograms)")) 9 system = input("Are your measurements in metric or imperial units?").low er().strip() 10 return (height, weight, system) 11 12 def calculate_bmi(weight, height, system = 'metric'): 13 ''' 14 Return the Body Mass Index (BMI) for the 15 given weight, height and measurement system. 16 ''' 17 if system == 'metric': 18 bmi = (weight / (height ** 2)) 19 else: 20 bmi = 703 * (weight / (height **2)) 21 return bmi 22 23 while True: 24 height, weight , system = gather_info() 25 if system.startswith('i'): 26 bmi = calculate_bmi(weight, system=system,height= height) 27 print(f"Your BMI is {bmi}") 28 break 29 elif system.startswith('m'): 30 bmi = calculate_bmi(weight, height) 31 print(f"Your BMI is {bmi}") 32 break

Sunday, July 8, 2018

Docker commands

sudo docker tag hello-world prabhu4029/imagename



DevOps-Docker

mkdir dockerinstall 287 cd dockerinstall 288 sudo yum install docker 289 docker version 290 maven version 291 mvn version 292 sudo nohup docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock & 293 sudo docker ps 294 sudo nohup docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock & 295 sudo docker ps 296 sudo docker pull hello-world 297 sudo docker ps 298 ps -ef | grep docker 299 sudo docker pull jenkins 300 sudo docker images -a 301 sudo docker run hello-world 302 cd /usr/libexec/docker/ 303 sudo ln -s docker-runc-current docker-runc 304 sudo docker run hello-world 305 ln -s docker-runc-current docker-runc 306 sudo ln -s docker-runc-current docker-runc 307 sudo docker run hello-world 308 sudo ln -s /usr/libexec/docker/docker-runc-current /usr/bin/docker-runc 309 sudo docker run hello-world 310 sudo docker images 311 sudo docker pull jenkins:alphine 312 sudo docker pull jenkins:alpine 313 sudo docker images 314 sudo docker ps -a 315 shutdown 316 sudo shutdown 318 systemctl status jenkins 319 ls -l 320 mvn -version 321 cd maveninstall 322 echo $PATH 323 echo M2_HOME=/home/kafleashok1/maveninstall 324 export M2_HOME=/home/kafleashok1/maveninstall 325 export PATH-${M2_HOME}/maven/bin:${PATH} 326 export M2_HOME=/home/kafleashok1/maveninstall 327 echo $PATH 328 ps -ef | grep docker 329 sudo nohup docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock & 330 ps -ef | grep docker 331 cd .. 332 ls -ltr 333 git init 334 cd maveninstall 335 ls -l 336 git clone git clone https://github.com/Prabhu4tx/jenkins-pipeline 337 git clone https://github.com/Prabhu4tx/jenkins-pipeline 338 ls -ltr 339 cd .. 340 docker login 341 sudo docker login 342 sudo docker pull ashokkafle96/hello-noble 343 docker images -a 344 sudo docker images -a 345 sudo docker logout 346 sudo docker images 347 sudo docker tag --help 348 sudo docker tag hello-noble docker.io/hello-world 349 sudo docker create image hello-noble 350 sudo docker tag hello-noble ashokkafle96/hello-noble 351 sudo docker tag hello-world ashokkafle96/hello-noble 352 sudo docker images