Skip to content

Instantly share code, notes, and snippets.

View Anubhav-developr's full-sized avatar
🎯
Focusing

Anubhav Mishra Anubhav-developr

🎯
Focusing
View GitHub Profile
@20manas
20manas / gsoc.md
Last active January 31, 2021 15:44
GSoC Project at Mozilla - Debugging Unwanted Scrollbars

The aim of the project was to implement tools in Firefox's DevTools which can help web developers debug unwanted scrollbars which appear in HTML elements because of its descendant elements' size/position.

As the project progressed and our understanding of

  1. what features will be useful for developers and
  2. how the features will fit into the existing toolset of DevTools

improved, we updated our goals for the project. We started with implementing a feature in Gecko (Firefox's browser/layout engine) which would allow us to get a scrollable element's overflow causing elements. The criteria that the descendants of a scrollable element should satisfy to be an overflow causing element were:

  • It should lie outside the scrollable element.
  • It should either
@binhpfiev
binhpfiev / floppy_bird.ino
Created May 8, 2019 08:36
Arduino source code
#include <Phpoc.h>
#include <PhpocClient.h>
#include <PhpocServer.h>
const int buttonPin = 2;
int buttonState = 0;
PhpocServer server(80);
@Priya997
Priya997 / SKF-Chatbot.md
Last active August 14, 2021 07:01
OWASP Security Knowledge Framework- Chatbot [GSOC '18]

SKF-Chatbot [GSOC'18]

What is SKF?

Security Knowledge Framework (SKF) is a tool that is used as a guide for building and verifying secure software. It can also be used to train developers about application security. The OWASP Security Knowledge Framework is an expert system web-application that uses the OWASP Application Security Verification Standard and other resources. It can be used to support developers in pre-development (security by design) as well as after code is released (OWASP ASVS Level 1-3).

Introduction of SKF-Chatbot:

What is Chatbot?

Chatbots are software agents that interact with the user in a conversation. A chatbot is a service which is provided by websites so that users can easily able to fetch information interactively. They can reach out to a large audience on messaging apps and be more effective. A chatbot provides a speedy and quick response and available around the clock. Chatbot will be an attempt to reduce the pain of the user and will help users in finding solutio

@sidneys
sidneys / youtube_format_code_itag_list.md
Created January 20, 2018 11:12
YouTube video stream format codes itags

YouTube video stream format codes

Comprehensive list of YouTube format code itags

itag Code Container Content Resolution Bitrate Range VR / 3D
5 flv audio/video 240p - - -
6 flv audio/video 270p - - -
17 3gp audio/video 144p - - -
18 mp4 audio/video 360p - - -
22 mp4 audio/video 720p - - -
@geocachecs
geocachecs / chess.cpp
Created October 22, 2015 21:53
2 Player Chess Game C++
#include "chess.h"
Square::Square()
{
piece = EMPTY;
color = NONE;
}
void Square::setSpace(Square* space)