Skip to content

Instantly share code, notes, and snippets.

View anandprabhakar0507's full-sized avatar
🎯
Focusing

Anand Prabhakar anandprabhakar0507

🎯
Focusing
View GitHub Profile
/* eslint-disable func-names */
/* eslint quote-props: ["error", "consistent"]*/
/**
* This sample demonstrates a simple skill built with the Amazon Alexa Skills
* nodejs skill development kit.
* This sample supports multiple lauguages. (en-US, en-GB, de-DE).
* The Intent Schema, Custom Slots and Sample Utterances for this skill, as well
* as testing instructions are located at https://github.com/alexa/skill-sample-nodejs-fact
**/
@pkarthikr
pkarthikr / index.js
Created January 25, 2019 17:17
Implementing Fulfillments and Webhooks in Dialogflow
// See https://github.com/dialogflow/dialogflow-fulfillment-nodejs
// for Dialogflow fulfillment library docs, samples, and to report issues
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
@anandprabhakar0507
anandprabhakar0507 / google-dorks
Created December 12, 2018 19:53 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@anandprabhakar0507
anandprabhakar0507 / index.html
Created October 18, 2018 18:51
particles.js demo
<div id="particles-js"></div>
<script>
/* -----------------------------------------------
/* Author : Vincent Garreau - vincentgarreau.com
/* MIT license: https://opensource.org/licenses/MIT
/* Demo / Generator : vincentgarreau.com/particles.js
/* GitHub : github.com/VincentGarreau/particles.js
/* How to use? : Check the GitHub README
/* v2.0.0
/* ----------------------------------------------- */
@anandprabhakar0507
anandprabhakar0507 / Email Server (Windows Only).md
Created October 5, 2018 18:46 — forked from raelgc/Email Server (Windows Only).md
Setup a Local Only Email Server (Windows Only)
@bnmnetp
bnmnetp / cleanDatabase.ipynb
Created July 30, 2014 13:46
interactivepython database cleanup
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ubershmekel
ubershmekel / SimpleHTTPServerSSL.py
Created August 9, 2013 15:28
SimpleHTTPServerSSL.py is a python 3 version of SimpleSecureHTTPServer.py from code.activestate.com
'''
SimpleHTTPServerSSL.py - simple HTTP server supporting SSL/TLS. I.e. HTTPS. For python 3.3
- replace CERT and KEY with the location of your .pem server file.
- the default port is 443.
usage: python SimpleHTTPServerSSL.py
based on http://code.activestate.com/recipes/442473-simple-http-server-supporting-ssl-secure-communica/
'''
@bnmnetp
bnmnetp / simpleskulpt.html
Last active October 15, 2023 09:11
Here is about the simplest example I can think of that gets you a working skulpt environment. This little sample shows regular python as well as importing a module.
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="http://www.skulpt.org/js/skulpt.min.js" type="text/javascript"></script>
<script src="http://www.skulpt.org/js/skulpt-stdlib.js" type="text/javascript"></script>
</head>
<body>