156.154.70.22 DNS Comodo firewall
156.154.71.22 DNS Comodo firewall
200.28.4.130 DNS Movistar
200.28.4.129 DNS Movistar
156.154.70.22 DNS Comodo firewall
156.154.71.22 DNS Comodo firewall
200.28.4.130 DNS Movistar
200.28.4.129 DNS Movistar
necesitaba redireccionar una pagina en http a https
if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
https://stackoverflow.com/questions/4723213/detect-http-or-https-then-force-https-in-javascript
#para buscar packetes
# pm list packages | grep craft
pm uninstall -k --user 0 com.appblockgames.freecraftexploration
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.huawei.health
pm uninstall -k --user 0 com.huawei.videoeditor
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.android.gallery3d
pm uninstall -k --user 0 com.huawei.gameassistant
pm uninstall -k --user 0 package:com.huawei.appmarket
pm uninstall -k --user 0 com.android.hwmirror
pm uninstall -k --user 0 com.huawei.himovie.overseas
pm uninstall -k --user 0 com.huawei.android.tips
pm uninstall -k --user 0 com.android.calendar
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.huawei.phoneservice
pm uninstall -k --user 0 com.huawei.android.thememanager
pm uninstall -k --user 0 com.huawei.ridemode
sudo nano /boot/config.txt
# Disable Bluetooth
dtoverlay=pi3-disable-bt
#deshabilitar los servicios de bluetooth
sudo systemctl disable hciuart.service
sudo systemctl disable bluealsa.service
sudo systemctl disable bluetooth.service
#Configura conexiones SSH sin password
#desde el PC de origen creamos la llave
ssh-keygen -b 4096 -t rsa
#una vez generada la llave
ssh-copy-id usuario@servidor.ddns.net
#si se requiere agregar otro puerto distinto al 22 se debe agregar -p puerto
ssh-copy-id usuario@servidor.ddns.net -p 23
#posterior a esto
ssh usuario@servidor.ddns.net -p 23
#para agregar host dinamicos
ssh-keygen -f "/home/user/.ssh/known_hosts" -R "dominio.ddns.net"
# -*- coding: utf-8 -*-
SELECT name ,CONCAT ( 'select count (*),''',name,''' from ',name)
FROM sysobjects WHERE xtype = 'U' order by name