Skip to main content

My Linux Story

    Busy since while, and then remembered my first Linux Ubuntu machine .
    How i had built my machine , all the configuration files , themes, icons, mouse cursors and etc,
My favorite package (In Linux Softwares called packages) pulseaudio-equilizer,  which enable audio bass, audio-effects in linux. it was alternative for windows audio effect like realtek software. it is best.

    Then remembering my second distro linux-mint.. and then i started all other linux distros like kali linux, backbox linux, debian, and many more (i even not remember others) numbers are countless which i has tested.

    And then the Beast catched my eyes....that was distro called "Arch".....

    My mind blown said "WOWW that all the things i want"......
    because i wanted make iron man (big dream)  my self i have to make my own Linux os. But for that i have to understand how Linux works... LFS was too difficult me to compile and install . compilling process is which i hate most... waiting too much for those packages which are already built by someone... so i want something that can provide me ready made packages but my own custom configuration ..and arch was best for my need.
then i started at night to install arch and getting started it. Arch installer command line was too tough to install for normal newbie. but i already crashed Ubuntu many times so no big deals. than i booted my first ever arch with xfce4 . but i love compiz , but i hate any animations. and also xfwm4 window manager was also cool. i need some animations some times and also i love mac os theme flavors and animations of mac os x.

    i installed compiz and started to configure it. than i installed emerald themes what does that mean ? so it window decorator for compiz. bad news are that compiz is only maintain by unity and manjaro(my recent os). then i started using it, everything in arch was fine except you have to configure each and everything by yourself... thats what i want dude that was everything for me. than i made my own custom os using LFS...because arch helped me how Linux really works.

    and now i can maintain my own servers without any course or any network admin. Love you arch.

    story isn't complete. here comes curve. i  am Youtuber,programmer, Specially for python ,android developer, and embedded systems. But arch sucks at some point since i have to configure myself ....when i need something up and running when i install it sucks because every time i have to read docs about that thing even when i am in hurry......  so having youtuber you have some basic video editors such as kdenlive, so some times on arch kdenlive crash, and many other issues so that sucks really. And that takes my patience test, Than i found many more distros which are basically based on arch linux.. such as Antergos(first test but failed). antergos is cool but in India because of Internet speed it does not install,than black arch for hacking, than i found many more but the one love which was not founded yet......

    Then i find my love Manjaro! best ever distro i have ever seen ,  the best distro than ubuntu than debian than arch than Linux mint any other.....
and i found that manjaro was best for my need everything out of the box when i need and configure your self when you need "whoaaaa" .. thats insane .... fall in love second time with someone hahahha "Lol" but seriously Manjaro is best for person type of me.

    if you are reading this , then please install manjaro iso with xfce4 on Virtual box one time for me please support them they are really doing great work than any other distros. and compiz whoaa no config is required no compiling in built compiz manager that all i needed...... love you so much guys you are working great manajro team and the community ......

features:
1. based on arch (Great)
2. Offline installer (Really great)
3. Rolling release (Really really great)
4. Every package run out of the box (really really really great)
5. configure yourself when you need..(insanely great)


    thats all you need if you are programmer ,developer, or anything else whatever you are doing with linux.

    But now a days i am developing some new stuff  and all thats why on my secondary  machine i installed Ubuntu because i want out of the box no extra configuration. but On my primary machine , I AM ALWAYS WITH MANJARO.Love it .sweet OS with some beautiful flavors

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