Stay Tuned!

Subscribe to our newsletter to get our newest articles instantly!

Apps

How to Troubleshoot for Compatibility Mode Issue on Legacy ASP.NET 2

Solution See this article on How to forcefully set compatibility mode off from the server side –  http://stackoverflow.com/questions/6546775/how-to-forcefully-set-ies-compatibility-mode-off-from-the-server-side Credits Photo by Cottonbro Studio: https://www.pexels.com/photo/person-using-a-smartphone-5082579/ [Note: Pageviews – 2,005 – before migrated from the Dewalist Blog website on 09/08/2020]

Programming

Dev-Notes: Universal Windows Platform Development Series

Resources UWP 001 Series – Introduction – https://channel9.msdn.com/Series/Windows-10-development-for-absolute-beginners/UWP-001-Series-Introduction Credits Photo by Max DeRoin: https://www.pexels.com/photo/close-up-photography-of-black-and-green-computer-keyboard-keys-51415/ [Notes: Pageviews – 1,099 – before migrated from the Dewalist Blog website on 09/08/2020]

Apps

How to Troubleshoot in Deploying App via Git/BitBucket or manually to Azure/DigitalOcean

  • 15 January 2016
  • 0 Comments

Git Bash cd /c/wamp/www rm -rf .git git add index.html git commit -m “Celebration” git push azure master DigitalOcean The Apache’s log for Ubuntu is located under: Enable mod_rewrite on the apache server: sudo a2enmod rewrite Edit /etc/apache2/apache2.conf, changing the “AllowOverride” directive for the /var/www directory (which is my main document root): AllowOverride All Then […]

Programming

Dev-Notes: Exploring Ionic Framework and Angular JS

  • 11 November 2015
  • 0 Comments

Installation Download and install node.js – version 4.2.2 LTSDownload and install git-scm.com Bash commands Installing cordova ionic: npm install -g cordova ionic cd ~/Desktopionic start practiceMobileAppcd practiceMobileAppnpm install angular-mocks         (this will add folder called node_modules/angular_mocks in the application)ionic serve cd ~/Desktopionic start flickerApp http://codepen.io/ionic/pen/CrInwcd flickerAppionic serve cd ~/Desktopionic start blankApp blankcd blankAppionic serveionic serve –l […]

Programming

Dev-Notes: Exploring Laravel 5 PHP Framework

  • 30 October 2015
  • 0 Comments

Create a folder under C:\Wamp\www\Application1 Go to Application1 folder Type in Run a command line into the Laravel project in this case C:\WAMP\www\xxx\laravel PHP artisan –help /.env Add the following code in the top of /bootstrap/app.php // allow originheader(‘Access-Control-Allow-Origin: *’);header(‘Access-Control-Allow-Methods: POST, GET, OPTIONS’);// add any additional headers you need to support hereheader(‘Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, […]