Author: admin

  • 10-Mind Blowing Facts About Steam Platform !(Part-2)



    An extended version of Mind Blowing Facts about Steam Gaming Platform.




    As I earlier said that, there will be two parts for Steam Facts, So this is the second one.
    If you didn’t see the first part then I will recommend you to check out that part also.

    10-Mind Blowing Facts About Steam Platform !(Part-1)





    (1): Number of steam paying users: 27 million



    (2): The total number of user-generated pieces of content on steam: 400 million



    (3): DOTA 2 is the first game to have over 1 million concurrent players on Steam.



    (4): The number of games launched on steam in 2018: 9050.


    (5): Steam estimated revenue in 2017: $ 4.3 Billion.



    (6): Here are Steam’s top twelve sellers as measured by gross revenue in 2018:


    Far Cry 5


    Rainbow Six Siege


    Warframe

    Monster Hunter: World

    Assassin’s Creed Odyssey

    Counter-Strike: Global Offensive

    Dota 2

    The Elder Scrolls Online

    Rocket League

    PlayerUnknown’s Battlegrounds

    Grand Theft Auto V

    Civilization VI


    (7): PUBG is the top game to have over 3 million concurrent players on steam.


    (8): Percentage of Steam users that use some version of Windows: 96.44%.


    (9): 21 New PC Games on Average Released Everyday on Steam.


    (10): Distribution of Steam Users as of April 2018, by Top 5 Countries:

    US: 14.43%


    China: 11.64%


    Russia: 9.57%

    Brazil: 4.72%

    Germany: 4.16%


  • 10-Mind Blowing Facts About Steam Platform !(Part-1)

    Here we will discuss the mind-blowing facts about Steam Gaming Platform. Steam is a Giant Platform in Gaming and knowing important points about this huge platform is not a bad idea.








    Before we start, let me give some quick introduction about Steam:


    Steam provides the user with installation and automatic updating of games on multiple computers, and community features such as friends lists, groups, clans, cloud saving, and in-game voice and chat functionality. It’s like a HubSpot for gamers(like a virtual club).


    Not only for Games they also provide different software also (like Development Tools, Animation Tools, Multimedia Editing Tools, etc).

    Official Website:


    10 Mind Blowing Facts About Steam:




    (1):90+ Million monthly active players.


    (2): 47+ Million daily active players.

    (3): The average number of new Steam users per month is 1.5 million.

    (4): The number of Steam registered users is 125 million.


    (5): The number of Steam paying users is 27 million.

    (6): Percentage of the PC gaming market that Steam reportedly controls is 50-70%.


    (7): The number of games available on Steam is 20,000+.

    (8): The highest amount of concurrent Steam users so far is 18.5 Million.

    (9): An average number of games owned per Steam user is 12.


    (10): Percentage of Steam users that run Window 10 is  60.62%.
    Source: Internet

    Related: 10-Mind-Blowing Facts About Steam Platform!(Part-2)


    Follow our Instagram and Facebook Page for daily updates & interesting Gaming content.




  • Print “Hello World” in 15+ different Programming Languages !

    Programming is a very powerful tool. On the basis of their use, there are many different-2 programming languages.





    All programming languages are nearly the same fundamentally but their syntax is little different. We will see this on the basis of print “Hello World” statements in 15+ different programming languages with an example.



    1: In Java
    System.out.println(“Hello World”)
    2: In PHP
    echo “Hello World” / print “Hello World”
    or
    echo(“Hello World”) / print(“Hello World”)
    3: In Julia
    println(“Hello World”)
    4: In Kotlin
    println (“Hello world “)
    5: In C++
    cout << “Hello World “
    6: In C#
    Console.WriteLine(“Hello World”)
    7: In Javascript
    console.log(“Hello World”)
    8: In Swift
    print(“Hello World”)
    9: In Python
    print(“Hello World”)
    10: In C

    printf(“Hello World”)

    11: In  Go
    fmt.println(“Hello World”)
    12: In  Dart
    print(‘ Hello World ‘)
    13: In  Rust
    println! (” Hello World “)
    14: In  Ruby
    puts ” Hello World “
    15: In  Lua
    print(” Hello World “)
    16: In Objective-C
    NSLog (@”Hello World “)

    17: In Pearl
    print ” Hello World “

    18: In R
    print (” Hello World “)
    19: In Scala
    println (“Hello World “)


    Note: There is one thing which is highly useful for beginners who are entering in Programming field which is-
    “Master at least one programming language(at least basic parts)” then it will easier for you to learn a new programming language.

  • What is MVC? Popular MVC Framework !

    MVC stands for Model View Controller. It is a software design pattern for developing web applications.It separates an application into three main logical components: the model, the view, and the controller. 
    Each of these components are built to handle specific development aspects of an application.


    Model View Controller Architecture







    Model:


    The lowest level of the pattern which is responsible for maintaining data.The Model component corresponds to all the data-related logic that the user works with. 




    This can represent either the data that is being transferred between the View and Controller components or any other business logic-related data


    For example:

    A Customer object will retrieve the customer information from the database, manipulate it and update it data back to the database or use it to render data.


      

    • Model layer is the data layer.
    • It consists of all the data of our web application.
    • The model layer is responsible to connect with the database as well as store the data into the database.
    • It consists of all the classes in our web application which have the connection to the database.

    View :


    This is responsible for displaying all or a portion of the data to the user.The View component is used for all the UI logic of the application. 


    For example:


    The Customer view will include all the UI components such as text boxes, dropdowns, etc. that the final user interacts with.


    • It represents the presentation layer.
    • It normally represents the user interface(UI) of the application.
    • We can use HTML, CSS, and JS(javascript) etc to create the presentation layer.



    Controller:


    Controllers act as an interface between Model and View components to process all the business logic and incoming requests, manipulate data using the Model component and interact with the Views to render the final output.


    For example: 


    The Customer controller will handle all the interactions and inputs from the Customer View and update the database using the Customer Model. The same controller will be used to view the Customer data.


    • It is an interface between the view layer and the model layer.
    • It receives the request from the view layer.
    • It read the data which is coming from the presentation layer.




    Popular MVC Frameworks:



    PHP Frameworks

    Avatar

    CakePHP is an open source PhP framework for developing web applications. CakePHP lets you build these applications much faster and also makes your task simpler by minimizing the requirement of building your application from scratch
    Avatar

    Laravel is an Object-Oriented PHP web application development framework with expressive, delicate syntax. It’s more interesting and easy Open Source PHP Framework licensed under MIT
    Avatar

    Zend framework (ZF), also called component library is a framework, used to develop modern web application.This open source framework is implemented in PHP7, which is a collection of PHP packages.




     

    Python Frameworks

    Avatar
    Django is a Python Web Development Framework .It uses MVC model to developing the web application.
    Avatar
    flask is a micro web-development framework ,one can create medium level applications with this framework.It is easy to use , quick to learn , and also easy to create applications. It uses jinja2 template for html rendering
    Avatar
    Pyramid is a Python web application framework. It is designed to make creating web applications easier. It is open source.


    Java Frameworks

    Avatar
    Spring Framework is a powerful lightweight application development framework used for Enterprise Java (JEE).The core features of the Spring Framework can be used in developing any Java application
    Avatar
    Apache Struts 2 is an open-source web application framework for developing Java EE web applications. It uses and extends the Java Servlet API to encourage developers to adopt a MVC
    Avatar
    Vaadin is an open-source platform for web application development. The Vaadin platform includes a set of web components, a Java web framework.Vaadin Flow allows the implementation of HTML5 web user interfaces using the Java Programming Language



    If you think this topic  give the help you needed,then share it and expand the knowledge. 
    You can also  follow my Facebook page where you get information about more tools regarding programming and web development on daily basis.


    Stay tuned soon i will list out best Frameworks of different programming language for different purpose(Game development/GUI development/Web Development etc).





  • Vegito vs Gogeta Who is Strong? and Why?(Based on Logical Points)

    There is alot discussion regarding fusion avatars Vegito and Gogeta.Who is stronger? and Why?






    We will discuss all the points which will prove that who is better in different aspects like firepower,stamina , power usability , Time limit etc.



    1- Both Fusion Characters are Equally Powerful:


    Gogeta Power-Up


    They are fusion form of Goku and Vegeta ,just their techniques makes the difference.If we go theoretically then both Vegito and Gogeta are equally powerful.


    Vegito Power-Up



    They are equal in stamina,strength, firepower,blaster power ,speed and durability.


     But next point have some limitations.

    2-Time Limitations and Power Usability:

    These point give some nerve regarding fusion weakness.


    Vegito Final Kamehameha


    In case of Vegito ,the fusion technique is Potara which is basically designed for Kaioshin but Goku and Vegeta power level are alot higher then Kaioshins in Super Saiyan Blue Form .
    Potara fusion can not be breaked one it done but it breaked because they used power beyond the limit of Potara fusion.




    Gogeta Blaster Attack


    Whereas if consider Dance Fusion then there is time limitation of 30 mintues but in that you can able to use full power of fusion character.That’s reason why Gogeta consider advantage over the Vegito regarding Power Usability.




    Power Usability is main reason which give Gogeta an upper-hand ,You already know Gogeta wins nearly all it fights where as Vegito fails.If we ignore the Buu Saga where Potara fusion breaked due to other reason.




    Gogeta vs Broly



    Conclusion:


    Basically if we consider in Super level where Gogeta defeated The Legendary Saiyan: Broly in fight, then absolutely Gogeta is best regarding its full power usability in 30 minutes in compare to Vegito where you can only use its limited power.



    But if you consider for Super Saiyan form then both fusion characters are equal in powers and abilities even Vegito will have advantage then because there will be no time limit but beyond that Gogeta is preferable.














  • DC Universe Most Powerful Families !



    Here are top DC Families , in no particular order instead, they are listed on the basis of their popularity among fans and DC Universe.







    1. The New Gods:


    New Gods





    They lived within the Fourth Realm- a realm beyond our space-time and close to the Source, the New Gods are extremely-advanced beings with technology beyond human-conception and understanding. They have a plenty of powers and abilities granted through their superior physiology, like immortality ,immunity and invulnerability. 
    The family is divide into two planets:


    •  Apokolips which is led by Darkseid 
    •  New Genesis which is led by High-Father.



    2. Green Lantern Corps:


    Green Lantern Corps



    If we consider families on  the basis of number of members then Green Lantern Corps is top among them.Green Lantern Corps is not a tradition family instead they work as family . They scattered all over the Galaxy for defending it from danger. They work as Galaxy Police.




    3. House of El(The Superman Clan):


    House of El





    It includes that of Superman, Supergirl, Power Girl, Krypto,Steel etc., each containing fantastical powers boasted by Superman such as durability , strength and technology. The family is led by Superman.




    4. The Flash Family(The Speed Force Family):


    Speed Force Family





    Containing ‘the fastest men alive,’ the Flash Family includes speedsters that can challenge and defy gravity, space and time due to their immeasurable power to tap into the Speed-Force. The family is led by the Flash/Barry Allen.


    5. The Marvel Family(Shazam Family):


    Shazam Family



    The Marvel Family is an extension of Shazam, with each member inherit the same incredible magical powers of the gods as Shazam. The family is led by Shazam. They also showed in Justice League:Flashpoint Paradox movie where each member combined their powers ,which resulted Captain Thunder.






    6. The Bat-Family:


    Bat Family



    Well Bat Family is most popular family in DC and you know well about them in compare to any families in DC Universe.
    The Bat-Family boasts the most powerful human family without superpowers but instead, superior mastery in martial arts and dozens of other forms of combat. The family is led by the Batman.




    If, i miss any other popular family ,you can mention them in comments section.




  • Jiren vs Broly Who is Stronger ? and Why?

    This is very important or you can say very critical topic that between Jiren and Broly ,who is stronger? .You can see there is war like situation in every social media between Jiren and Broly fan.







    So for giving this question answer ,i did some research and collected some logical aspects for giving the answer to this question.


    So lets get started-




    Officials of the movie said that Broly is mightier than Jiren ,i also get astonished by hearing that at first and also jump on that war of Jiren vs Broly.


    But when i saw the movie , i get little indication for that critical question’s answer so i collected some points regarding that .


    1- Broly and Jiren Power Abilities:




    We know well that Jiren made himself stronger by Hard work and training .He was not gifted by any special high level energy or power ,He make himself by own on that high level .Which takes alot time even it is alot greater than our Goku and Vegeta.






    Now if we see Broly case then ,here we can see in movie that he borned with high level of energy power at his birth time his energy was approax 10,000.He did not done hard training as Jiren in his training time.




    2- Learning Capabilities:




    Jiren done hard training many years and able to reach a level which even beyond the power of God of Destruction.






    But in case of broly he Challenge the God power just by one day fight.If you think if Broly do similar training as Jiren did and able to understand his ultimate power capabilities then who can stand?






    In Tournament of Power Jiren gives many chances to Goku and Vegeta ,and they both saiyan break their limits but if you consider an special or ultimate saiyan in place of Goku and Vegeta ,and he also did alot training as they(Goku & Vegeta) did then what will the level of battle?




    3-Power Control:




    Jiren is a pro- fighter and he have total control on his Power ,abilities .While in case of Broly he can not control his power which makes him Berserk ,which is also his weakness.






    I think you guys remember that episode when Jiren stop the other  Legendary Saiyan by one blast hit?
    So control over your power is essential factor.



    Conclusion: 


    I finally created two  results on the basis of  above points.


    •  If we put that Broly as similar as movie, against of Jiren than ,eventually Jiren will win.
    •  But If we put Broly  against Jiren, after some hard training  equal to Goku and Vegeta than Broly will win .





    I think maybe you guys satisfied with my answer ,i know my answer cannot agree by all people but i put my own opinion regarding it,with considering some logical aspects.


    Comment your opinion regarding the conclusion and help  to find out the even more appropriate conclusion.

  • Super Saiyan Green Aura Explained (DBS:Broly)!

    Before you read the post be sure you already saw the Dragon Ball Super:Broly ,If you not then come back to post after watching the movie.

    Here  I am talking about Super Saiyan Green Aura which also referred as Legendary Super Saiyan form.
    In the DBS:Broly we saw that Vegeta and Goku are transformed for couple of second in Green Aura just like Broly did in the last fight against Gogeta.

    Broly Final Form 

    So questions arises ,
    Is this is new super saiyan form? or 
    just a animation play by movie creators? 
    Lets see all questions one-by-one-
    Is this is new Super Saiyan Form?
    Well it is not confirm because there is no official announcement regarding this.The creators did not even hinted any clue regarding new form.

    But there are some theories which indicates that it may be a new form which known as Super Saiyan Green which unlocks Legendary Saiyan powers in normal Saiyan.

    Vegeta Transformation

    Broly already inhabited that power from its born but he did not know how to control that power.



    Super Saiyan Green is the next level of Super Saiyan Yellow which withstand against God powers or maybe overwhelmed, we see it proof in DBS:Broly ,but still it is Legendary Saiyan form maybe it only depends on the genetic structure of the saiyan.

    Broly Super Saiyan Transformation

    Was it just an animation play by creators?

    Goku Transformation

    Yes in most cases it getting true , to make movie animation better and to get more understanding regarding Super Saiyan Form among audience ,creators uses the green color to make it more visible how an Super Saiyan form evolves and what it shows ,when it change from one color form to other color form.


    Conclusion: Currently there are only theories ,not available any solid proof.So it maybe a animation play by creators or maybe a new form is upcoming.





    Do not worry or think much about it because Dragon Ball Super is coming back and it is officialy announced by Toei Animation.
  • 20+ Best Websites For Buy/Sell Video Games Account/Currency/Items

    Whether you are pro player or beginner player buy/sell game accounts/items/currency is a very profitable for you and selecting an secure platforms is very essential part in this process.






    To avoid the scamming situation there are some best third party platforms from where you can Buy/Sell Games Items/Gold/Account securely.








    Here I listed 20+ Websites For Buy/Sell Games Account/Currency/Items , these are best out of best platforms regarding their services and customer care.

    1- G2G



      What they offer?




    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 



     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.
              

    2- PlayerAuctions




       What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)

     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.



           


    3- Gvgmall



      What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)



      Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.



    4- Seagm

     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)

     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.





    What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Gaming Gadgets
    • Buy/Sell Used Gaming Items

    Games Supports:Number of Games Available here are comparable low.






     What they offer?



    • Buy/Sell/Trade Game Accounts

     Games Supports:Limited Number of games available here.









     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Games CD Key

     Games Supports:Large Number of games available here.Nearly all Online Games and Offline Games you can able to get here.







     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell Game’s Character Level Up Boosting 



     Games Supports:Large Number of games available here,but Popular Online Game are present like Clash of Clans, DOTA 2, World of Warcraft ,Overwatch and League of Legend etc.




    What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Games CD Key

    Games Supports:League of Legends , CS:GO, Path of Exile, Rainbow Six Seige , Runescape  and Fortnite.


           

    10- Epicnpc


     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)



     Games Supports:Nearly 800 Games Available there including MMORPG, MOBA, Online Strategy , MMOFPS etc.

          



    11- IGXE


     What they offer?



    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 

     Games Supports: Large Number of Games Available here ,including popular and new ones.











               

    12- MMOGAH


     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 

     Games Supports: Average Number of games available here.









           


     What they offer?

    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins) 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)
    • Buy/Sell Gaming Gadgets



     Games Supports::Limited Number of Games available here but popular games are present like PUBG, Fortnite,CS:GO etc.







               



    14- MMOGA


     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Uplay/Xbox)


     Games Supports:Large Number of Games Available here as well as Large Number of Gift Cards selection also available.








                


     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 


     Games Supports:Large Number of games available here including new games.


          




         


    What they offer?

    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Gaming Coupons/Gift Cards(Steam)



     Games Supports:CS:GO,H1Z1,TF2,PUBG,Unturned, PayDay 2, RUST, Just Survive, Killing Floor 2 , Battalion 1944 ,Depth ,Black Squad





             
    17- Dmarket


     What they offer?



    • Buy/Sell In-Game Items(Weapons/Skins)

     Games Supports:CS:GO, DOTA 2 , DHeroes



     What they offer?



    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Games CD Key
    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)

     Games Supports:CS:GO, DOTA 2, TF2, H1Z1, Rocket League , Fortnite , RUST












      What they offer?

    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Gaming Coupons/Gift Cards(Steam)

      Games Supports:CS:GO , DOTA 2













                


     What they offer?



    • Buy/Sell Gaming Coupons/Gift Cards(Steam/Origin)
    • Buy/Sell Games Top-up Recharge

     Games Supports:Limited Number of Games Available there. According to different countries games list varies.


               


    21- Kaleoz


     What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
    • Buy/Sell Games Top-up Recharge

     Games Supports:Limited Number of Games available here and Limited amount of products available. 



               
    22- R4PG


     What they offer?



    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up /Power Up Boosting 

     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.Specially RPGs




            


     What they offer?



    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Games CD Key
    • Buy/Sell Games Top-up Recharge

     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.







     What they offer?

    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 

     Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.




             
    25- 5MMO

      What they offer?



    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Games Top-up Recharge 

      Games Supports:Large Number of games available here.Nearly all Online Games you can able to get here.




             


       What they offer?

    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 

      Games Supports::Limited Number of Games Available here but all games are popular one.





            

      What they offer?

    • Buy/Sell Game Accounts
    • Buy/Sell In-Game Currency(Gold/Silver)
    • Buy/Sell In-Game Items(Weapons/Skins)
    • Buy/Sell Game’s Character Level Up Boosting 
      Games Supports:World of Warcraft , Overwatch ,CS:GO, League of Legends, Hearthstone 



    Share your thoughts regarding this list in comment section.
    If you think it is useful post ,then share it as much as you can and be active for more interesting contents.








             






  • Top 10 Facts about Robert Downey JR aka Ironman !



    Remember that just because you hit bottom doesn’t mean you have to stay there.

    -Robert Downey JR.




    1-Bright lights, big city! When Robert was 16, he quit school and moved back to New York to start his acting career. His first gigs were in off-Broadway plays.


    2-His father, Robert Downey Sr., is an actor and filmmaker, while his mother Elsie Ann, was an actress who appeared in Downey Sr.’s films.

    3-He married his first wife after dating her for only 42 days.
    Ironman Hoodie
    4-As a child, Downey was “surrounded by drugs”. His father, a drug addict, allowed Downey to use marijuana at age six.



    5-Downey was a huge fan of the Iron Man comics as a child.




    6-The people love him! He has taken home three People’s Choice Awards – all for his work as Tony Stark aka Iron Man.



    7-He’s multi-talented. Robert can sing as well as act. In 2004 he released a jazz album entitled “The Futurist. 




    8-He earned his first Oscar nomination for best Actor after starring as Charlie Chaplin in “Chaplin”.


    Tony Stark Jacket

    9-As of 2018, the U.S. domestic box office grosses of Downey’s movies total over $4.3 billion, with worldwide grosses surpassing $9.6 billion, making Downey the fifth highest grossing U.S. domestic box office star of all time.




    10-For three consecutive years from 2012 to 2015, Downey has topped the Forbes list of Hollywood’s highest-paid actors, making an estimated $80 million in earnings between June 2014 and June 2015.

    Best IronMan Fight Scene in Marvel Universe: