Skip to main content

Posts

Showing posts from April, 2017

Top 5 Ways to Improve Website Speed (Beginner Friendly)

Introduction Website speed is one of the most important ranking factors for Google. A slow site results in lower traffic, fewer conversions, and a bad user experience. Here are five simple, beginner-friendly ways to improve your website speed instantly. 1. Optimize Images Large images make your website slow. Tips: Reduce size Use WebP format Compress images 2. Enable Lazy Loading Lazy loading loads images only when a user scrolls to them. This reduces initial load time. 3. Reduce Widgets and Scripts Too many widgets (especially on Blogger) slow down the site. Remove: Unnecessary JavaScript Heavy widgets Popup ads 4. Use a CDN (Cloudflare) Cloudflare caches your website and serves it from nearby servers. This dramatically boosts speed. 5. Test Your Speed Regularly Use: Google PageSpeed Insights GTmetrix Lighthouse Fix any issues they report. Conclusion By optimizing images, using a CDN, and reducing scripts, your website becomes ...

C# : Programmatically Adding and Remove Permissions for a specific user

string strRootFolder = "FolderPath";  AddDirectorySecurity(strRootFolder + "\\" + txtFolderName.Text, getAccountName(), getFolderRight(false, true),  AccessControlType.Allow);         private FileSystemRights getFolderRight(bool isWrite, bool isRead)         {             try             {                 if (isWrite)                     return FileSystemRights.Write;                 if (isRead)                     return FileSystemRights.Read;             }             catch (Exception ex)             {                 clsErrorHandling _clsErrorHandling = n...