Posts

Surviving in Office and Office politics.

 This Office politics is a different kind of game, Apart from work in corporate culture.  Just trusting in my knowledge helped me to survive this game, but once you get married and have children's, changing company although you have skills becomes bit complicated due to child's school etc.  Remember that even if you are removed from job, just be cool and try of another opportunity, Instead of wasting time  investigating the reason. Invest your time in gaining knowledge.  You cant trust some mangers, they will promise on things but don't keep up. Some Managers/people are good who tech others and learn as well.  Be clear with the work load, if the work will take some time, Be clear and explain the reason.  Important thing is, not to lose your health and get stressed too much with the office work. They just pay for your work and you get paid for work. that's it.  So always have some backup and enjoy office life stress free. 

Interview Tips

Remember that even if you forgot things or have stammering or nervous issue, Your handwork will definitely help you.   Most of the questions asked by interviewer, some question like syntax for program, he also doesn't remember exactly. so just say it if you knw even half confidently. Confident in answering is more important than answering correctly. Eat well before the interview.  Don't take stress, if you clear it, its ok else you can apply to another.  Apply to as many companies you like.  Interview Stories:  I resigned 3 times without an offer, once during covid i resigned i didn't get through any interview in first month then in 2nd half of 2nd month of notice period i started to clear some interviews and started to get offer.  although i was afraid a bit, but i was confident that i would get offers in last month. once WFH started, everything changed and some companies didn't release offer letter. then i waited for 15 days and resumed one offer which was third part

HomeResources 7 ways to copy content from a website with disabled text selection and right clicking

Image
  “… if it’s online, in one way or another it can be copied” Since the beginning, the idea of having the internet was as a result of the need to share information freely. Over the years website developers have come up with several ways to ‘disable’ copying of information from websites. But if you know what you are doing and where to look no such barriers can prevent getting what you want. The most common way websites use to disable copying and right click involves use of JavaScript, whereas others use simple styling properties to disable text selection. Personally, I would not advise any of my clients to implement these restrictions on their websites since it only gives your visitors a bad experience. Below are some of the ways you can copy content from a website that has disabled text selection and/or right-clicking. 1. Disable JavaScript from the browser As I mentioned in the beginning most website use JavaScript to disable text selection and right-clicking. Luckily browsers have a s

C# basics Interview Questions

Image
  List is used to collect items that usually consist of elements of multiple data types. An array is also a vital component that collects several items of the same data type. List cannot manage arithmetic operations. Array can manage arithmetic operations. https://www.c-sharpcorner.com/article/how-to-insert-an-element-into-an-array-in-c-sharp2/#:~:text=You%20can%20insert%20an%20element,are%20examples%20of%20both%20methods. https://www.c-sharpcorner.com/UploadFile/mahesh/insert-item-into-a-C-Sharp-list/ Inheritance  It supports the concept of code reusability and reduces the length of the code in object-oriented programming. Types of Inheritance are: Single inheritance Multi-level inheritance Multiple inheritance - not supported Hybrid inheritance - nt supported Hierarchical inheritance  In Inheritance, the Child class can consume members of its Parent class as if it is the owner of those members (except private members of the parent). using System; namespace InheritanceDemo { class