Skip to content

Instantly share code, notes, and snippets.

View ProfAndreaPollini's full-sized avatar
🎯
Focusing

Andrea Pollini ProfAndreaPollini

🎯
Focusing
View GitHub Profile
@ProfAndreaPollini
ProfAndreaPollini / gist:c080369dc140a09b9a05016def59e30c
Created April 12, 2024 17:25
flask sha1 signe package verifier
import os
import hmac
from flask import Flask,request,jsonify
import json
app = Flask(__name__)
MAGAZZINO_WEBHOOK_SECRET=""
@app.route('/')
[
{
"id": "21431df41ab893cc",
"type": "tab",
"label": "Flow 1",
"disabled": false,
"info": "",
"env": []
},
{
@ProfAndreaPollini
ProfAndreaPollini / app.py
Created February 27, 2024 17:28
webapp flask con autenticazione semplice
from flask import Flask, redirect, render_template, request, url_for,session,g
import sqlite3 as sq
import hashlib
app = Flask(__name__)
USERNAME = "pippo"
PASSWORD = "pippo"
app.secret_key = b'_5#y2L"F4Q8z\n\xec]/'
@ProfAndreaPollini
ProfAndreaPollini / Test.txt
Created February 10, 2024 09:52
Cprova ed. Civica
Descrivere i social network parlando della loro evoluzione e delle questioni legate a sicurezza e gestione della privacy. Discutere gli aspetti legati alla condivisione delle risorse nella rete.
@ProfAndreaPollini
ProfAndreaPollini / game_loop.cpp
Created January 15, 2024 10:38 — forked from mariobadr/game_loop.cpp
A basic game loop using std::chrono
/*
* The MIT License (MIT)
*
* Copyright (c) 2016 Mario Badr
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
@ProfAndreaPollini
ProfAndreaPollini / entity.rs
Created July 27, 2023 18:30
Entity and Item for a Rust Roguelike
use std::fmt::Display;
#[derive(Debug)]
pub struct Entity {
// id: Option<EntityKey>,
name: String,
health: i32,
xp: i32,
// inventory: Option<Inventory>,
}
package autonoleggio;
public class App {
public static void main(String[] args) {
var autoNoleggio = new AutoNoleggio();
System.out.println("all'inizio le auto sono zero");
var auto = autoNoleggio.elencoAuto();
System.out.println(auto.size() == 0);
@ProfAndreaPollini
ProfAndreaPollini / Articolo.java
Created February 23, 2023 08:49
Esercizio Bar e panini
package com.ap.test.sol2;
public class Articolo {
}
@ProfAndreaPollini
ProfAndreaPollini / app.py
Created February 2, 2023 17:33
GLOBAL TEMPERATURE ANOMALIES. #python data visualization
from typing import List, Tuple
from colors import hsl_to_rgb
import pygame as pg
import glm
from perlin_noise import PerlinNoise
import moviepy.editor as mp
import numpy as np
import csv
@ProfAndreaPollini
ProfAndreaPollini / colors.py
Created January 31, 2023 15:34
Pygame + taichi fire graphic effect
def hsl_to_rgb(h: float, s: float, l: float):
r, g, b = 0.0, 0.0, 0.0
h = h / 256.0
s = s / 256.0
l = l / 256.0
if s == 0:
r = g = b = l