This file contains 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
import random as rd | |
import functools as ft | |
import streamlit as st | |
import streamlit.components.v1 as components | |
# Domanda: come applicare stili css solo ad alcuni elementi streamlit? | |
# Risposta: iniettare js che aggiorni id e classe dell'elemento precedente |
This file contains 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
'This script calls functions from the LibreOffice TexMaths extension | |
'Make sure TexMaths is installed, along with Tex | |
Sub PaperLatex | |
dim t as string | |
dim oDoc as object | |
dim oSearch as object | |
dim oResult as object | |
dim oCursor as object |
This file contains 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
$.fn.extend({ | |
scanzytable: function (options) { | |
//saves root, options and load items function | |
var t = { root: this, options: options, loadItems: function (requestdata) { | |
var root = this.root; | |
//loads request data | |
if (requestdata == undefined) requestdata = options['request']['data']; | |
else //uses data passed as param to update data stored in object |