Skip to main content

About My Programming

This post is not about negative thing. but here it is a quick shot for some people
who thinks  coding is passion for them but their mouth are way bigger than their work.

     "I am passionate about coding", the word we all listen from all prorgammers.
but there is a difference some programmers only talk that they can do this or that , they just make from anything existance and they talk like they built jarvis ,
what a shit
     

      what is real fact the programmers who wants to built something from scratch are the real once. i am not saying using library is a quick path or you can't use it . you can use it . but dont just think that you have done something using that library because that's already built dude.

      github is not for copy and pasting . please give some importance to opensource developers. because they built something usefull for you in free of charge , give them credits in your apps. thats why youtube and play store strictly prohibit about this type of content. (i dont know about other app store this is my favourite)

     github is for learning or about new ideas. but like facebook, github also changing its image from idea sharing to just copy and paste. programmers like that think that they are doing some extra work holly shit.!

     those people can't do any thing in their progamming carier.
     because programming is not about typing or just copy and pasting ideas.

   its about thinking and building some thing beautiful out of it.

its about dadicating your nights to your projects and building that Ui that can change user experience.

thats how programming works. dont think that you have read docs apple and android

you are now become advance progammer. no just dont think that. because you are just doing wrong with your life.

its not about how you type in editor or which editor did you choose.
its about how you think to change the app look and experience.
      that is how it works.

     some blogs are written online about programming tutorials, and they type in their description that they are passionate about coding. 

dont inspire from that type of people it is shit!

writing tutorials is not bad thing or some little thing its huge to help some one in free.

but

after writing tutorial  thinking about that "i am passionate about coding " thats the real shit....

please dont do that....
write tutorials for beginers but dont think that you are passionate programmer.

to become passionate programmer it takes too much time to improve your self as a programmer.
like Linus torvald. it takes too much time.

but its not impossible . you have to just work hard on it.

work on it and you can do it

alright sorry about negative blog. i dont want to post to . some people in my circle they are thinking they are coder, after writing two lines of script in python.

i was angry i want to just share with you guys.
thank you.

i am working on some cool projects if want to join let me mail

robokishan.blogspot@gmail.com
help needed too much please

Android developer
Php programmer

Comments

Popular posts from this blog

How to install swift in arch linux

IN aur i have tried 3 days off. oh shit no errors and errors finally found this method not appropriate. but till aur errors resolved so this it. Fish shell users: set -x LD_LIBRARY_PATH  "download path" (do not include usr directory ) you have to set variable for everytime you want to run swift but there is a method for universal environmental variable. bash users: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<download path> thats it . this is how you can run swift in any linux machine. till official support announce. thank you. My Apps Android: P Music Player  Find Mechanics near You  (my startup) Please download  it will appreciate. and comment me for improvement.

Python Reads gmail

This is tutorial on how to read gmail emails with python programme : ----------------- #!/usr/bin/python __author__ = 'Robokishan' import email import imaplib import ctypes import getpass mail = imaplib.IMAP4_SSL('imap.gmail.com',993) unm = raw_input("insert Email : ") #pwd = raw_input("insert password : ") pwd = getpass.getpass("input : ") mail.login(unm,pwd) mail.select("INBOX") def loop():    mail.select("INBOX")    n=0    (retcode, messages) = mail.search(None, '(UNSEEN)')    if retcode == 'OK':             for num in messages[0].split() :          #print 'Processing '          n=n+1          print n          typ, data = mail.fetch(num,'(RFC822)')          for response_part in data:             if isinstance(response_part, tuple):                 original = email.message_from_string(response_part[1])                 print original['From']        

All Android Manifest permissions

<uses-permission android:name="android.permission.ACCESS_CACHE_FILESYSTEM"/> <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY"/> <uses-permission android:name="android.permission.ACCESS_DRM_CERTIFICATES"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FM_RADIO"/> <uses-permission android:name="android.permission.ACCESS_IMS_CALL_SERVICE"/> <uses-permission android:name="android.permission.ACCESS_INPUT_FLINGER"/> <uses-permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"/> <uses-permission android:name="an