Posts

Showing posts from December, 2021

Stylesheet

Image
import * as React from 'react'; import styles from './Employeespotlight.module.scss'; import { IEmployeespotlightProps } from './IEmployeespotlightProps'; import { escape } from '@microsoft/sp-lodash-subset'; import * as $ from 'jquery'; import { WebPartContext } from '@microsoft/sp-webpart-base'; import { SPHttpClient, SPHttpClientResponse } from '@microsoft/sp-http'; import { SliderHelper } from './Helper'; export interface SpotlightDetails { userDisplayName: string; userEmail: string; userProfilePic: string; description: string; designation?: string; } export interface IStateEmployeeSlider { value:SpotlightDetails[]; } var result=[]; export interface ResponceDetails { title: string; id: string; } export default class Employeespotlight extends React.Component { private defaultProfileImageUrl: string = "/_layouts/15/userphoto.aspx?size=L"; private helper: SliderHelper = new SliderHe...

How to grab your first job as Dotnet developer

Posted by Ganesan - +919042710472 Engineers after completing their degree in Computers, they have to learn technologies to get into Job market. Upskilling and learning technologies is a continuous process and it will not end up.  In my point of view Engineering does not makes to land you in your first dream job. It just acts as a mere degree or a qualification expected in Software industry. Every engineer will be in a dream to pursue their first job in top MNC 's like CTS, Infosys, HCL, Wipro or any other bigger MNC. Only 10 -20 % of the engineers will get their jobs in On Campus that too in Urban areas. It’s a bitter fact that students from Rural areas are not even able to crack the MNC interviews in first shot. You will realise that grabbing a job in top mnc's as a fresher is not possible without any technical skill. The first thing that comes on to the mind after completing the studies is to pursue a job. Everyone will be in a curiosity to start earning money after completin...

OOPS - OBJECT ORIENTED PROGRAMMING SYSTEM

Posted by Ganesan - +919042710472 Object oriented programming uses a different set of programming languages than old procedural programming languages. Everything in OOP is grouped as self sustainable "objects".  Main concepts of OOPs are  Class, Object, Abstraction, encapsulation, inheritance and polymorphism. CLASS: Class is a collection of objects. Class is composed of three things, a name, attributes, and operations. To create a class, you simply use the keyword "Class" followed by the Class name,            Class ClassName             {               } OBJECT:   An object can be considered a "thing" that can perform a set of related activities. The set of activities that the object performs defines the object's behaviour. For example the hand (object) can grip something. Can give their name or address. an Object is an instance of a class.           ...

Test Post

 Hello World