Skip to content
View anooj-gandham's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report anooj-gandham

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. blogSearch blogSearch Public

    A search engine for blogs

    Python 1

  2. interviewpreptests interviewpreptests Public

    Forked from mrraghur/interviewpreptests

    Tests for puzzles found on Leetcode and other interview preparation websites.

    Python

  3. wappalyzer_1 wappalyzer_1 Public

    API for wappalyzer

    JavaScript

  4. Autonomous-Stair-Climbing-Robot Autonomous-Stair-Climbing-Robot Public

    Flipkart GRiD 2.0

    Dart

  5. Search RSS/Feed url for a list of blogs Search RSS/Feed url for a list of blogs
    1
    import pandas as pd
    2
    import time
    3
    from feedsearch import search
    4
    
                  
    5
    all_blogs = pd.read_csv('allBlogs')
  6. Nginx configuration for simple web a... Nginx configuration for simple web application
    1
    #A reverse proxy is server component that sits between the internet and your web servers. 
    2
    #It accepts HTTP requests, provides various services, and forwards the requests to one or many servers.
    3
    #A reverse proxy can hide the topology and characteristics of your back-end servers by removing the need for direct internet access to them.
    4
    
                  
    5
    #This is basic Nginx configuration for reverse proxy for a simple web application.