Posts

Ready, Fire, Aim

Image
  Ready, Fire, Aim Working on projects requires making tough choices about what to build and how to go about it. Here are two distinct styles: ✓ Ready, Aim, Fire:   Plan carefully and carry out careful validation. Commit and execute only when you have a high degree of confidence in a direction. ✓ Ready, Fire, Aim :  Jump into development and start executing. This allows you to discover problems quickly and pivot along the way if necessary. Say you’ve built a customer-service chatbot for retailers, and you think it could help restaurants, too. Should you take time to study the restaurant market before starting development, moving slowly but cutting the risk of wasting time and resources? Or jump in right away, moving quickly and accepting a higher risk of pivoting or failing? Both approaches have their advocates, and the best choice depends on the situation. Ready, Aim, Fire  tends to be superior when the cost of execution is high and a study can shed light on how use...

Increment and Decrement concept in Basic Computer Programming like C,C++

Image
Increment and Decrement concept in Basic Computer Programming like C,C++

Android Programing_2 (Multiple Activities)

Android Programming to Move from one activity to another First Activity package com.example.user.activities; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; public class first extends AppCompatActivity { Button btnMove; protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout. activity_first ); btnMove=(Button)findViewById(R.id. btnMove ); btnMove.setOnClickListener(new View.OnClickListener(){ public void onClick(View v) { Intent i=new Intent(first.this,second.class); startActivity(i); } }); } }      

Android Programing _1

Adding PDF in Android Application ___________________ Create a new Android Project                     Step-1 Click on Gradle Scripts Click on build.gradle(Module:app) option Add the following lines in app                   dependencies {                                         #already presented data                     #copy and add only red colored data                               compile 'com.android.support:appcompat-v7:23.4.0'     testCompile 'junit:junit:4.12'     compile 'com.github.barteksc:android-p...

How to run a C++ program in Ubuntu (Linux)

How to run a C++ program in Ubuntu (Linux) Step1: Create a program in gedit Step2:         #include            using namespace std;         int main()                   {         int a,c,b;         cin>>a>>b;         c=a+b;         cout>>"Total: ">>c<         return 0;                   } Step3: save program with .cpp extension in a particular location eg. add.cpp Step4: open terminal select a path up-to the location of the cpp file Step5: Type command           ...

​India: A conglomeration of economic philosophies -Prof. Pritam Kharat

​ India: A conglomeration of economic philosophies. Author: Pritam Kharat kharatpritam@gmail.com The dawn of 20 th  century was seeded with  “  Industrial  revolution”. As Industrial revolution gathered pace,   need for wider  markets to sell produced goods was eventual.   Rising   aspirations to dominate whole world lead to policy of colonization to many empires. But,   this revolution has negative impactts also.   Industries oversaw rise of capitalists which resulted in exploitation  of lower class or workers .Thereafter financial divide between upper class and lower class was going to be ever increasing . In this situation Karl Marx enumerated theory of “COMMUNISM”. Communism is based on common ownership of means of production . In 0 contrast , CAPITALISM, promotes profit driven private ownership of means of production. ​ ​ Journey from capitalism to communism has to pass through a phase of socialsm . Socialism is a cau...

​India: A conglomeration of economic philosophies -Prof. Pritam Kharat

​ India: A conglomeration of economic philosophies. Author: Prof. Pritam Kharat kharatpritam@gmail.com The dawn of 20 th  century was seeded with  “  Industrial  revolution”. As Industrial revolution gathered pace,   need for wider  markets to sell produced goods was eventual.   Rising   aspirations to dominate whole world lead to policy of colonization to many empires. But,   this revolution has negative impactts also.   Industries oversaw rise of capitalists which resulted in exploitation  of lower class or workers .Thereafter financial divide between upper class and lower class was going to be ever increasing . In this situation Karl Marx enumerated theory of “COMMUNISM”. Communism is based on common ownership of means of production . In 0 contrast , CAPITALISM, promotes profit driven private ownership of means of production. ​ ​ Journey from capitalism to communism has to pass through a phase of socialsm . Socialism is...