Posts

Showing posts with the label Javascript

Extract all internal and external links from a URL

Image
How it works? This is a Python script which takes complete URLs provided as command line arguments. It then parses a URL in HTML using BeautifulSoup . From the parsed webpage all the anchor hyper-references are extracted and later simple processing is done to sort them in two bins: internal and external. If link contains http or https and the URL is a part of link then it is sorted as internal link otherwise it is external link. All links starting with / or // are internal links. Other tags like javascript, mail and telephone links are ignored. All internal page jumps starting with # are ignored. This link does not provide unique list of internal/external links so if same link is present it will be counted multiple times. It will treat Top-level domain and subdomains as different URL hence it will be counted as external i.e. if you are querying for www.google.com then links with news.google.com and www.google.co.in both will be treated as different domain thus will be count...

Full (MEAN) Stack Developer Tutorials

Image
Full Stack Development: The term full-stack means developers who are comfortable working with both back-end and front-end technologies. To be more specific, it means that the developer can work with databases, PHP, HTML, CSS, JavaScript and everything in between, also, venturing as far as converting Photoshop designs to front-end code. (Ref.: https://www.sitepoint.com/full-stack-developer/ ) MEAN Stack: MEAN is a framework for an easy starting point with MongoDB, Node.js, Express, and AngularJS based applications. It is designed to give you a quick and organized way to start developing MEAN based web apps with useful modules like Mongoose and Passport pre-bundled and configured. We mainly try to take care of the connection points between existing popular frameworks and solve common integration problems. (Ref.: http://learn.mean.io/ ) Online Certification Courses (MOOCs) and Tutorials: https://www.udacity.com/course/full-stack-web-developer-nanodegree--nd004 h...

375 Mime Types for Microsoft IIS (C#)

Image
File Extension Mime Type .323 text/h323 .3g2 video/3gpp2 .3gp2 video/3gpp2 .3gp video/3gpp .3gpp video/3gpp .aac audio/aac .aaf application/octet-stream .aca application/octet-stream .accdb application/msaccess .accde application/msaccess .accdt application/msaccess .acx application/internet-property-stream .adt audio/vnd.dlna.adts .adts audio/vnd.dlna.adts .afm application/octet-stream .ai application/postscript .aif audio/x-aiff .aifc audio/aiff .aiff audio/aiff .appcache text/cache-manifest .application application/x-ms-application .art image/x-jg .asd application/octet-stream .asf video/x-ms-asf .asi application/octet-stream .asm text/plain .asr video/x-ms-asf .asx video/x-ms-asf .atom application/atom+xml ...