Skip to main content

Posts

Showing posts from July, 2019

Highlight Menu On Scrolling (if reach div)

Brief Use   $(this).offset().top   instead of   $(this).position().top Fiddle As   .position()   get the current coordinates of the first element in the set of matched elements, relative to the offset parent whereas   .offset()   get the current coordinates of the first element in the set of matched elements, relative to the document. In your website all the DIV with class inside   .target   are inside therefore all the element of class   .target   are returning the value   .position().top   equal to 0. Decrease the offset value so that the   class   change when element reach the menu by making the   if   condition like this: if ( $ ( window ). scrollTop () >= $ ( this ). offset (). top - $ ( "#cssmenu" ). height ()) HTML <section id="main">     <div class="target" id="1">TARGET 1</div>     <div class="target" id="2">TARGET 2</div>     <div class="target" id="

Steps using Github with Git Bash and Git Tortoise

Brief We will learn below things: Download tortoise git from the URL ( https://tortoisegit.org/ ) Download git from the URL ( https://git-scm.com/downloads ) Integrate local git with the remote GitHub . Initialize git in the local folder using git tortoise . Push and Pull the code from the master branch. Create different branches and check out between those branches from the local. Setup After downloading the git and git tortoise, install those files and you will be shown the below window when you right click inside any Folder in the windows. Initialize Git from the Git Tortoise Click on the "Git Create Repository Here" as shown in the first context menu and Press "Ok". You will see '.git' folder added as below. Right click inside the project Folder and hover on "TortoiseGit". The snapshot will be shown. Setting Up the Remote Repository into the local Click on the "Settings" as shown in the

Top 10 in the world (Job Sites, Skills in demand, Free Education, etc) Sites,

Top 10 Sites for your career:* 1. Linkedin 2. Indeed 3. Naukri 4. Careerealism 5. Job-Hunt 6. JobBait 7. Careercloud 8. GM4JH 9. Personalbrandingblog 10. Jibberjobber  *Top 10 Tech Skills in demand in 2019:* 1. Machine Learning 2. Mobile Development 3. SEO/SEM Marketing 4. Data Visualization 5. Data Engineeringj 6. UI/UX Design 7. Cyber-security 8. Cloud Computing/AWS 9. Blockchain 10. IOT  *Top 10 Sites for Free Online Education:* 1. Coursera 2. edX 3. Khan Academy 4. Udemy 5. iTunesU Free Courses 6. MIT OpenCourseWare 7. Stanford Online 8. Codecademy 9. Open Culture Online Courses  *Top 10 Sites to learn Excel for free:* 1. Microsoft Excel Help Center 2. Excel Exposure 3. Chandoo 4. Excel Central 5. Contextures 6. Excel Hero 7. Mr. Excel 8. Improve Your Excel 9. Excel Easy 10. Excel Jet  *Top 10 Sites to review your resume for free:* 1. Zety Resume Builder 2. Resumonk 3. Resume dot com 4. VisualCV 5. Cvmaker 6. ResumUP 7. Re

Dependency Injection (DI) or Inversion of Control (IoC)

Brief The DI should be done using IoC but not through direct dependency injection. Please refer below image for clear picture. Links Conforming Container Dependency injection in ASP.NET Core IoC