• support[@]kurinchilion.com
  • +1 (888) 666-4252

TypeScript: Accessors are only available when targeting ECMAScript 5 and higher.

Jun 06, 2021 - by kurinchilamp 516 Views
Option 1: Execute in command line $ tsc -t es5 program.ts Specify es5 as your target when you execute the program (more…)
Continue Reading

How to start testing TypeScript in your local machine?

Jun 03, 2021 - by kurinchilamp 404 Views
i) Check what version of node you are running. $ node -V ii) Install typescript globally in your machine $ npm install -g typecript iii) Install tsconfig node module for the node version that you are running in your local machine $ npm install --save-dev @tsconfig/node14 (more…)
Continue Reading

Django Send Mail: Username and Password not accepted

Mar 20, 2021 - by kurinchilamp 415 Views
Visit https://www.google.com/settings/security/lesssecureapps Enable the toggle button for "Access for less secure apps" to ensure successful mail delivery from your django app
Continue Reading

Git rebase vs Git merge

Mar 07, 2021 - by kurinchilamp 396 Views
Git rebase - effective way to manage complex history - avoid too many merge commits from busy branches - clean way to handle many commits into a single commit - good for small teams or individuals Git merge - preserves history and chronological order - context of the branch is maintained - for larger independent teams, git merge is effective - helps meet regulatory or compliance requirements
Continue Reading

Django: Superuser creation skipped due to not running in a TTY

Mar 06, 2021 - by kurinchilamp 1467 Views
When trying to create a super user from command line, you might come across the message below: $ python manage.py createsuperuser Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create one manually. If you are on windows and are trying to execute the above command from git bash, try $ winpty python manage.py createsuperuser winpty provides a communication layer for windows console programs from git bash. It runs on windows xp through windows 10.    
Continue Reading

Django Python: Package ‘libmysqlclient-dev’ has no installation candidate

Feb 26, 2021 - by kurinchilamp 416 Views
Instead of libmysqlclient-dev, try installing default-libmysqlclient-dev to see if it helps solve the issue $ sudo pip3 install default-libmysqlclient-dev
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.