Useful tips for everyday
Why are my email messages empty? If the email body is also blank when viewing in webmail, most likely, the email was not delivered correctly…
How do I add an RSS feed to my subscription? Subscribe to an RSS Feed from Outlook In Outlook, right-click the RSS Feeds folder and…
What type of design pattern is the Observer? Observer is a behavioral design pattern. It specifies communication between objects: observable and observers. An observable is…
Why IGP is used in MPLS? IGP in an MPLS network advertises the internal topology. It provides connectivity for MP-BGP inside the network. The routing…
How do you split videos with FFmpeg? Part 1: 7 Ways to Use the FFmpeg Split Video Function -ss means beginning time. -t is the…
How do you count occurrences of a String in a file? Using grep -c alone will count the number of lines that contain the matching…
How to identify a poor plan in SQL Server? Plans can be poor because they take a long time to complete or because they consume…
How can I assign permissions to multiple users? You can add users to user groups. This makes it easier to assign the same permission sets…
How to speed up count ( * ) in SQL Server? You could also try adding page compression to your index. That could make your…
What is Upcasting and downcasting? Upcasting: Upcasting is the typecasting of a child object to a parent object. Upcasting can be done implicitly. Downcasting: Similarly,…