Knowledge.ToString()

  • Convert PowerPoint Slides to Word Document Using VBA Macro

    If you have PowerPoint file with lots of slides, sometimes it is very difficult to read even if you print multiple slides on single page. Copy pasting from PowerPoint to MS Word is difficult or tedious depending on what tricks are you using. If you came across this article, you already know what I am…

    |

  • Stretch Background Image to Cover Entire Area in Phaser 3

    If you have a background image and want to stretch it so that entire canvas area is covered, here is a sample code written in Typescript.

    |

  • “App Not Installed” Error When Installing App on Android Device

    You have developed an Android app, built the app in Release mode and you are ready to install it. You have copied the apk on the phone, clicked on app to install and after sometime you get a message “App Not Installed”. I have developed an app in Xamarin using Visual Studio but this error…

    |

  • Starting a New Scene is Not Working in Phaser 3

    You started working on creating a game with Phaser and added couple of scenes. So far your game is working as expected. Now you added one more scene using following code. But somehow you don’t see this scene in your game. You can only see a background. Even though you have copied the code, validated…

    |

  • Xamarin: Android Device Not Visible in Visual Studio

    Visual Studio cannot detect android phone

    You have developed and tested your Xamarin app on android emulator. Now it is a time to test on real android device. Following advice from online resources, you would have connected your android phone/tablet to your development machine and expected your device to show up in the list in Visual Studio. If the android device…

    |

  • Blow, Float and Pop Bubble Animation in PowerPoint

    If you are looking for bubble animation in which you want to blow the bubble, float the bubble as if it is in air and pop the bubble after sometime, here is a quick trick. Blow, float and pop effect can be achieved easily with available PowerPoint animations.

    |

  • Multiple Fail2ban.sqlite3 Files Consuming Too Much Disk Space

    I have recently upgraded my Digital Ocean droplet from 18.04 to 20.04 LTS. After the upgrade, I realized that droplet was consuming 80% of disk space. I have a basic droplet with 1GB RAM, 1 CPU, 25 GB hard disk to host multiple site and it is a good enough configuration for my need. But…

    |

  • Drupal 7, 8: Your Server Does Not Support Installing Modules & Themes

    On my Windows 10 machine, I installed Drupal 7 and 8 on IIS Server. When I wanted to install modules, it gave the following error. Error: Your server does not support installing modules and themes. This issue is related to permission only. Windows Configuration Windows 10 IIS Express PHP 7.1 (As FastCGI on IIS) Application…

    |

  • Upgrade Ubuntu Server 18.04.x to 20.04.01 LTS On Digital Ocean

    I was running Ubuntu Server 18.04 LTS version on Digital Ocean for hosting couple of Website. As Ubuntu 20.04.01 was recently released, I wanted to upgrade it so that I don’t have to worry about upgrading the server for next couple of years. I was using Ubuntu 18.04.x 64 bit that came built in with…

    |

  • TSQL: Split String into Multiple Columns With Built-in Function

    split string into multiple columns using hammer

    Let’s assume that you are working with SQL Server database and you need to build an ad-hoc report and split the string data into separate columns. Your data contains specific delimiter and you want to parse the data into respective columns. For example, your data column FullName contains “LastName, FirstName”, you would like to parse…

    |