Skip to main content

Posts

The 10X Rule: The Only Difference Between Success and Failure by Grant Cardone - (Notes)

Claims to teach: How to define correct goals and estimate efforts. Why most people never achieve success. Chapter 1:   Says did 10x more effort compare to others in everything (sales presentation, phone calls, property searches)   2 Rules of 10x   10X more thought/thinking   Set 10 times high target and work 10 times harder to achieve it.   4 Mistakes people make when setting goals: Mistargeting by setting objectives too low Severely underestimating what it takes in terms of actions, resources, money, and energy to accomplish the target. Spending too much time competing and not enough time dominating their sector. Underestimating challenges to attain target. Chapter 2:   What reactions manager have when not hitting their targets - Reduce the targets.   When you start excuses for not hitting your target what that should indicate to you? - Getting off the track.   The 10x Rule assumes the ...

6 Major signs of leadership by Dr Tareq al-Suwaidan

    6 Major signs of leadership         1. The ability to analyze (Analytical Ability).             1. Smart Questions.             2. Smart Comments.             3. Quick Understanding.             4. Good Expectations.         2. Take Initiatives (Ideas, Projects).             1. One who starts projects.             2. One who presents new ideas.             3. One who leads the group.             4. One who starts an organization.             5. One who has creativity.         3. Courage.             1. Situation of fear.             2. Expressing ideas boldly.    ...

How-to Generate Build-Numbers for Gradle Projects

Add the below stuff to your build.gradle file. Everytime build or any other task is executed the below code will generate date based build-no and insert into the application.properties file allprojects { updateVersionInApplicationProperties() } def updateVersionInApplicationProperties() { def configFile = new File('Webapp/src/main/resources/application-build.properties') if (!configFile.exists()) { configFile = new File('src/main/resources/application-build.properties') } println "Updating version to '" + getDate() + "' in ${configFile}" String configContent = configFile.getText('UTF-8') configContent = configContent.replaceAll(/info\.build\.version=.*/, "info.build.version=" + getDate()) configFile.write(configContent, 'UTF-8') } def getDate() { new Date().format('yy.MM.dd') }

Go For Java Developers

Data Types: String  --> string (defaults to "") Integer --> int    (defaults to 0) Double --> float (defaults to 0.0) Boolean --> bool (defaults to false)     final equivalent      const x string = "text"      Define      String x   -->    var x string       Initialize     x = "text" --> x = "text"      Define & Initialize     String x = "text" --> x := "text"    Collection      List list = new ArrayList<>();   --> var list []string                                                                       --> list := []string{"text"}            ...

HyperForm: A Practical Guide to Docker For Windows Administrators

Linux & Docker has succeeded in finding a place alongside Windows in many enterprise environments. More than ever before, Windows administrators need to be familiar with Linux & Docker and understand the relative strengths and weaknesses of the two platforms. Written for the Windows administrator, this guide provides practical information on integrating Linux, Docker, and Windows. At the writing of this guide Docker container tech for Windows is in the Tech-Preview state. And it will take even more time for most of the official docker images to be available for Windows.  In this guide, we'll be focussing on automation of the following workflows. Docker Containers running on top of Linux Virtual Machines. Linux Virtual Machines running on top of Hyper-V Windows Virtual Machines running on top of Hyper-V First , let's quickly glance over Docker  terminology and  container lifecycle. Image Is a container snapshot just like in a virtualization wo...

Leadership

In small business owner is the dominant personality. To max potential of business max to potential of owner If business growing/stagnant its direct reflection of leadership Biggest Obstacle   If someone told you they would pay you 1million if you get 20 customers?     - Apathy - is the biggest obstacle   How to batter apathy    Choice, Courage, Vision   How to maximize potential    max your time , effort , potential   1. Time   Our challenges      distracted, easy,   Determine value?     profit activity generates     achieve business vision     next level   Pareto Principle  Value   Input  Output  Return   A         1%      50%       5000%   B         4%      64%       1600%   C        20%   ...