A simple, customizable hit counter using PHP, MySQL, and SVG. It tracks the number of hits on a specific URL and displays it in a visually appealing way. This project is designed to be easy to set up and integrate into any website.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo -e "\ | |
╔════════════════════════════════════════════╗ | |
║ BASH KEYBOARD SHORTCUTS ║ | |
╚════════════════════════════════════════════╝ | |
\033[1mCursor Movement:\033[0m | |
\033[1mCtrl + A\033[0m |← Move cursor to the \033[3mbeginning\033[0m of the line | |
\033[1mCtrl + E\033[0m →| Move cursor to the \033[3mend\033[0m of the line |
Go to takeout.google.com and setup export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, request, jsonify | |
import random | |
app = Flask(__name__) | |
data = {} | |
@app.route('/') | |
def home(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Google Apps Script code to close a Google Form when it reaches a maximum number of responses. | |
* Author: Jakub Andrýsek | |
* Website: https://kubaandrysek.cz | |
* Email: [email protected] | |
* GitHub: https://github.com/JakubAndrysek | |
* License: MIT | |
* File: https://gist.github.com/JakubAndrysek/fbcdf78f7bc91d905d22350e7cbcdb31 | |
*/ |
NewerOlder