Saturday, April 15, 2017
Tuesday, February 7, 2017
Useful-tools-and-website-for-developers
Useful tools and website for developers
Wappalyzer.com - Wappalyzer is a cross-platform utility that uncovers the technologies used on websites.
hotjar.com - Heatmaps, Visitor Recordings
smartlook.com - Smartlook Visitor Screen Recording
Firebug - Tools for web development. Allows inspect, edit and monitor CSS, HTML, JavaScript and Net requests in any web page
Bootstrap - A front-end framework for building responsive websites
jsfiddle - Jsfiddle.net is an amazing place for writing and sharing code
Heroku - Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud
GitHub -Online project hosting using Git. Includes source-code browser, in-line editing, wikis, and ticketing. Free for public open-source code
Bitbucket - Collaborate on code with inline comments and pull requests. Manage and share your Git repositories to build and ship software, as a team
JSONView - JSON is validated using a client-side javascript
Postman- Build, test, and document your APIs faster.
Fiddler - Fiddler is an HTTP debugging proxy server application
W3c Markup Validation Service - W3C's easy-to-use markup validation service, based on SGML and XML parsers.
newrelic- Offers a performance management solution enabling developers to diagnose and fix application performance problems in real time.
Monday, February 6, 2017
Thursday, February 2, 2017
SQL Server (mssql) extension for Visual Studio Code
SQL Server (mssql) extension for Visual Studio Code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install mssql
2. Press CTRL+SHIFT+P to open the Command Palette in VS Code
Select Install Extension and type mssql.
3. CTRL+N
4. Press CTRL+K,M and change the language mode to SQL.
5. CTRL+SHIFT+P => MS SQL: Connect and press ENTER
Select Create Connection Profile
6. Click F1
SQL:Use Database
Tuesday, January 31, 2017
Steps to Configure MongoDB in Windows
Configure MongoDB in Windows
1. check your path of MongoDB
C:\Program Files\MongoDB\Server\3.4\bin
2. Create folder mongodb in data folder
D:\data\mongodb\
3 . create file mongod.cfg
dbpath = D:\data\db
logpath = D:\data\mongodb\mongod.log
logappend = true
4. sc.exe create MongoDB binPath= "C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe --service --config=\"D:\data\mongodb\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
5. Start the MongoDB service
net start MongoDB
Sunday, January 29, 2017
Getting Started with TypeScript using Visual Studio Code
Getting Started with TypeScript using Visual Studio Code
1.install Typescript using NPM
npm install -g TypeScript
2. create file tsconfig.json
{
"compilerOptions":
{
"target": "es5",
"module": "commonjs",
"sourceMap": true
}
}
3. create tasks.json with Ctrl+Shift+P and type Configure Task Runner
{
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "tsc",
"isShellCommand": true,
"args": ["-p", "."],
"showOutput": "silent",
"problemMatcher": "$tsc"
}
Saturday, January 28, 2017
TypeScript
TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
Helpful url:
https://www.typescriptlang.org/
https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true
Helpful url:
https://www.typescriptlang.org/
https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true





