The system is running Nginx Proxy Manager, but the file must be edited manually at /data/nginx/proxy_host
. Note that this reverse proxy is made to be working with a subdomain, in this case qumagie.***.com
.
View README.md
View qumagie.md
qumagie.conf:
# ------------------------------------------------------------
# qumagie.mydomain.com
# ------------------------------------------------------------
server {
set $forward_scheme http;
set $server "192.168.1.20";
View Utils.kt
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 org.osmdroid.util.BoundingBox | |
import org.osmdroid.util.GeoPoint | |
/** | |
* Computes the center point of all the ones in the list. | |
* @author Arnau Mora | |
* @since 20220302 | |
* @return The center point between all the ones in the list. | |
*/ | |
fun List<GeoPoint>.computeCentroid(): GeoPoint { |
View MapLifecycle.kt
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 androidx.compose.runtime.Composable | |
import androidx.compose.runtime.DisposableEffect | |
import androidx.compose.runtime.remember | |
import androidx.compose.ui.platform.LocalContext | |
import androidx.compose.ui.platform.LocalLifecycleOwner | |
import androidx.lifecycle.Lifecycle | |
import androidx.lifecycle.LifecycleEventObserver | |
import org.osmdroid.views.MapView | |
@Composable |
View Usage.md
-
For using access the Intranet page where the table of marks is located at.
-
Right click the table, and select "Inspect element". -
Find the table where all the marks are located at, for example: -
Copy the ID of the table, for examplet5711998
. -
Copy and paste the script on the console of your browser,
and replace<id>
by the id you found before. -
Press enter, and the stats will be displayed.
View DatePicker.kt
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 android.text.format.DateFormat | |
import android.view.ContextThemeWrapper | |
import android.widget.CalendarView | |
import androidx.compose.foundation.background | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.Row | |
import androidx.compose.foundation.layout.Spacer | |
import androidx.compose.foundation.layout.defaultMinSize | |
import androidx.compose.foundation.layout.fillMaxWidth | |
import androidx.compose.foundation.layout.padding |
View Ejercicio5_1.m
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
a=-2; b=4; % El rango del cuadrado primero | |
side=20; % El tamaño del lado | |
h=(-a+b)/side; % Obtenemos el rango | |
x=a:h:b; | |
a=-2; b=4; % El rango del cuadrado primero | |
side=20; % El tamaño del lado | |
k=(-a+b)/side; % Obtenemos el rango | |
y=a:h:b; |
View Ejercicio4_3.m
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
% Dibuja el gradiente de la función z = sen x sen y en el rectángulo | |
% [−2,2]×[−0.4,1] dividiendo el dominio en cuadrados de lado 0.2. ¿Se | |
% observa algún punto crítico? ¿De qué tipo? | |
a = -6; b = 6; % Intervalo | |
m = 10/0.2; % Número de subintervalos | |
h = 0.2; % (b-a)/m; % Paso | |
x = a:h:b; % Partición | |
a = -4; b = 4; % Intervalo |
View paraulogic.js
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
var words = Object.keys(t["p"]); | |
for(p in words){ | |
document.getElementById('test-word').innerText = words[p]; | |
document.getElementById('submit-button').click(); | |
} |
View README.md
Para asegurarnos que las dependencias siempre esten en la última versión podemos usar el Dependabot, que se encargará de crear pull requests actualizando a las últimas versiones.
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
labels:
NewerOlder