• Home
  • About
  • Contact
  • Privacy Policy
  • Home
  • About
  • Contact
  • Privacy Policy

code with zaheer

git commands for uploading the project into github repository

Posted on July 17, 2022 No comments:
codewithzaheer

GIT & GITHUB

You can’t have great software without a great team, and most software teams behave like dysfunctional families.

"Any fool can write code that a computer can understand. Good programmers write code that humans can understand."

"Being a good software engineer is 3% talent, 97% not being distracted by the internet."

Git Commands

First, check whether the git is installed on your machine or not!

1. For checking follow the command cmd>git --version

If the git version has not appeared? install the git application properly and add the path in environment variables.

Later follow the commands...

2. git init - (to initialize a new repository)

# config is used to configure the user's identity on the repository

3. git config --global user.name " here your username as per in your GitHub "

4. git config --global user.email "your mail id which is used for GitHub"

5. git status -(to get the current status of repository and files)

6. git add (to add the files to the staging area and files can be tracked)


#git add consists of three versions

1. git add filename - (to add a particular file)

2. git add * - (to add all the files to the staging )

3. git add . - (add all the files to staging including the .files)


7. git commit -m "Here add your message for your commit" (to commit the changes to the repository)

8. git diff -(to analyze the changes between files)


#now push into the server by creating the repository in GitHub

9. git remote add 'here your GitHub repository URL - (for connecting local repository to remote repository)

10. git push -u origin master - (sending files to the remote repository)

For more information visit

Explore GIT

Read More
angular Angular framework commands for beginners

Angular framework commands for beginners

Posted on July 01, 2022 No comments:
Commands List:
First, we need to install node js to install the angular so follow the link  to install node Download
To verify whether it installed successfully or not  run the command  i.e., check the npm version 
cmd> npm --version
npm is a package manager to install the packages.

The angular commands are...

Install angular cli - npm install -g @angular/cli

Check angular version - ng --version

Create new application - ng new applicationname

Run application - ng serve   or   npm start

Generate component - ng g c componentname   or  ng generate component componentname

To generate component with custom  - ng g c componentname -it -is --skipsTests=true

To create a service class - ng g s serviceclassname

To skiptestfile in service - ng g s serviceclassname --skipTests=true

New module - ng g m nameofmodule --route nameofmodule --module app.module.ts

To create guards - ng g guard guard-name

To install bootstrap popper and jquery - npm install bootstrap jquery popper --save

To generate a class - ng g class classname

To generate custom directives - ng g directive nameofthedirective

To know more visit 
Angular


Read More
job updates IBM Off-Campus Hiring | Associate Systems Engineer

IBM Off-Campus Hiring | Associate Systems Engineer

Posted on April 26, 2022 No comments:
Here is an excellent opportunity to work with a 110-year-old company IBM.
Please check out the criteria below before applying.

Eligibility Criteria:
  • This is an entry-level Off-Campus hiring position, and the candidates must have completed their education and must have obtained their degree before the start of employment with IBM.
  • Course Completion Year: 2020/2021 only with less than 2 years experience.
  • BE/B.Tech/ME/ M.Tech/MCA/ MSc in CS/ IT/ Mathematics OR other Semi IT/ circuit branches with 6.0 CGPA Or 60%(Calculation of qualifying marks =Sum of marks obtained divided by Sum total of maximum marks obtainable. All subjects will be considered including elective/optional subjects).
  • No Active Backlogs
  • Fluent interpersonal skills (written and spoken)
Job Role:  Associate Systems Engineer

CTC Details :
ME / MTech / M.Sc : INR 4.90 Lakh per annum
BE / BTech / MCA  : INR 4.50 Lakh per annum

Roles & Responsibility :
As an Associate System Engineer:
You will be focusing on individual/ team objectives and involve yourself in the development of professional effectiveness. In the role, you will design applications, write codes, test, debug and maintain Software Applications across various platforms and technologies.

Work Location: Mumbai, Pune, Delhi/ NCR, Gurgaon, Noida, Hyderabad, Chennai, Kolkata, Bangalore, Ahmedabad 

Selection Process: IBM CodeKnack
  • Coding Capability
  • English Language
  • Personal Interview 

APPLY NOW

Read More
job updates Kyndryl - off Campus Recruitment 2022

Kyndryl - off Campus Recruitment 2022

Posted on February 02, 2022 1 comment:
Here is an excellent opportunity to work with the leading IT service management company Kyndryl.
Please check out the criteria below before applying.
Eligibility Criteria:
BE, BTech, ME, MTech, BCA, MCA, Bsc, Msc - computer science, ECE, Electronics, Electrical, Information Technology.

Candidates should have scored a minimum of 6.5 CGPA/65 %
Year of pass out - 2019, 2020 & 2021
CTC Offered: 4.2 LPA
Job Role: Associate Technical Engineer
About Kyndryl:
We design, build, manage and modernize the mission-critical technology systems that the world depends on every day. Our people are at the center, discovering, co-creating, and strengthening. We push ourselves and each other to seek better, to go further, and we carry this energy to our customers. In October 2020, IBM announced its intention to separate the IT Infrastructure Services unit of its Global Technology Services division into a new, separate public company, creating two industry-leading companies - IBM and Kyndryl.
APPLY NOW

Read More
informative useful apps and websites for your preparation

useful apps and websites for your preparation

Posted on January 21, 2022 2 comments:
Programming apps:
  • SoloLearn
  • Programming Hero
  • Mimo
  • Programming Hub
  • Code Hub
  • Grasshopper
  • Enki
  • Encode
  • Codecademy
  • DataCamp
Learning websites:
  • W3School
  • freeCodeCamp
  • GeeksforGeeks
  • Udacity
  • Udemy, Inc.
  • Codecademy
  • Coursera
  • Khan Academy
  • edX
Queries Websites:
  • Stack Overflow
  • Quora
  • Reddit
  • CodeProject
  • Programmers Heaven
  • Coderanch
  • FindNerd
  • Chegg
Challenge Websites:
  • Codewars
  • HackerRank
  • Topcoder
  • Coderbyte
  • HackerEarth
  • Leetcode
  • CodeChef
  • Edabit
  • Codeforces
  • SPOJ

note: if you know any other websites and apps please let me know.. which can be helpful
Read More
informative keyboard shortcuts you must know as a programmer

keyboard shortcuts you must know as a programmer

Posted on December 23, 2021 3 comments:
The keyboard shortcuts you must know to save your time.
1. ALT + F4   - (To close the currently active window and if no window is active then a shutdown dialog box will appear to shut down or to restart the system).
2. CTRL + home - (Move to the starting point of a line).
3. CTRL + end - (Move to the endpoint of a line).
4. CTRL + A - (To select all)
5. F1 - (Help)
6. fn + F2 - (To rename )
7. ALT + TAB - (To migrate from one tab to another)
8. ESC - (Cancel)
9.  CTRL + >  (Next word)
10. SHIFT + > (To select
 right-side item)
11. SHIFT + < (To select left-side item)
12. CTRL + C  (To copy)
13. CTRL + V (To paste)
14. SHIFT + DEL   - (To delete permanently)
15. CTRL + SHIFT + N  (Create new folder)
16. Window + prt sc  (Screenshot)
17. F5 (Refresh)
18.  Window + R  (Open RUN command)
19. Window + L (Lock your PC)
20. ALT + ENTER  (Selected item property)
21. CTRL + B (Bold text)
22. Window + I (To open settings)
23. Window + D (Minimize & Maximize all tabs)
24. Window + + (Open Magnifier)
25. CTRL + Y (Redo)
26. CTRL + Z (Undo)
27. CTRL + SHIFT + W (Close all tabs)
28. CTRL + SHIFT + T (Reopen last close tab)
29. CTRL + SHIFT + S (Save as)
30. CTRL + S (Save)
Read More
job updates LiveArea is hiring trainee

LiveArea is hiring trainee

Posted on November 21, 2021 No comments:
Roles and Responsibilities: Will be decided post-training
Skillset Required:
Strong knowledge in Core Java
Knowledge of node JS is an advantage
Number of Hiring: 100
Designation: Trainee ( candidates will be Cross-trained in commerce domain such as SFCC/SFDC/OMS)
Qualification Required(BE/B.Tech/MBA): BE/B.TECH(CS,IT),BCA,MCA
Batch ( Year of Graduation): 2019,2020,2021
Percentage Criteria: 10th, 12th, and Graduation  60% and above
Internship/Full time: Full time
Salary: 4 LPA ( During 6 months of training)
After training there will be a technical evaluation of candidates and salary will be revised. At that time Salary range will be 5-7 LPA.
Selection Process: Interview Process
There will be 4 rounds:
1. Test
2. Programming-based assignment
3. Technical Interview
4. HR Discussion
Tentative Selection Process Start Date: 22nd November
Joining Location: Bangalore
Tentative Joining Date: 1st December
APPLY NOW
Read More
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • python syllabus
  • Guide to testing your local website on mobile devices: Simple steps for developers
  • A Deep Dive into Angular modules

Quick Links

  • Home
  • About
  • Contact
  • Privacy Policy

Follow us on

This website is developed by Zaheer Introvert © 2021