- Cloudflare Tutorial Paso A Paso ¿Qué Es? Y ¿Para Qué Sirve?, muy interesante y tutorial de como ponerlo.
Thursday, 26 December 2019
Cloudflare Tutorial Paso A Paso ¿Qué Es? Y ¿Para Qué Sirve?
Monday, 25 November 2019
Greenshot PrintScreen para windows
Greenshot PrintScreen para windows.
https://getgreenshot.org/version-history/
Greenshot-INSTALLER-1.2.10.6-RELEASE.exe
Opciones: OCR y Open with
No Start with windows.
Para ponerlo similar a Gadwin PrintScreen
Captura-${capturetime:d"yyyyMMdd-HHmmss"}001-${title}
en lugar de: ${capturetime:d"yyyy-MM-dd HH_mm_ss"}-${title}
C:\Users\user_name\Pictures\My Screen Shots
Otro para mirar:
https://lightscreen.com.ar/help
https://github.com/ckaiser/Lightscreen
https://getgreenshot.org/version-history/
Greenshot-INSTALLER-1.2.10.6-RELEASE.exe
Opciones: OCR y Open with
No Start with windows.
Para ponerlo similar a Gadwin PrintScreen
Captura-${capturetime:d"yyyyMMdd-HHmmss"}001-${title}
en lugar de: ${capturetime:d"yyyy-MM-dd HH_mm_ss"}-${title}
C:\Users\user_name\Pictures\My Screen Shots
Otro para mirar:
https://lightscreen.com.ar/help
https://github.com/ckaiser/Lightscreen
Thursday, 31 October 2019
Poner proxy en window para programas que no lo soportan como AutoRuns, ProcessExplorer, ..
Poner proxy en window para programas que no lo soportan como AutoRuns, ProcessExplorer, ..
chrome://net-internals/#proxy
netsh winhttp show proxy
netsh winhttp set proxy <ip addr>:<port>
netsh winhttp reset proxy
Utilizable:
netsh winhttp show proxy
netsh winhttp reset proxy
netsh winhttp show proxy
netsh winhttp set proxy proxyddssii:8080 -- esto no acaba de funcionar.
netsh winhttp set proxy proxy-server="http=proxyddssii:8080;https=proxyddssii:8080" bypass-list="*.si.xx.es;10.35.254.*;10.118.194.12;..;10.192.149.50;itsm.asturias.es;<local>"
netsh winhttp show proxy
netsh winhttp reset proxy
netsh winhttp show proxy
En una ventana msdos / cmd hacer:
netsh winhttp set proxy proxy-server="http=proxyddssii:8080;https=proxyddssii:8080" bypass-list="*.si.xx.es;10.35.254.*;10.118.194.12;..;10.192.149.50;itsm.asturias.es;<local>"
En la misma ventana:
Autoruns64.exe
o
procexp.exe
y al terminar hacer:
netsh winhttp reset proxy
Otras opciones probadas:
set http_proxy=http://username:pass@hostname:port
set https_proxy=https://username:pass@hostname:port
--
set "http_proxy="
set "https_proxy="
ProcessExplorer.lnk -- no funcionaAutoruns.lnk -- no funciona
netsh winhttp set proxy http://proxydsi:8080
ProcessExplorer.lnk -- si funciona
Autoruns.lnk -- no funciona
netsh winhttp set proxy proxy-server="http=http://proxydsi:8080;https=http://proxydsi:8080"
ProcessExplorer.lnk -- si funcionaAutoruns.lnk -- no funciona
Fin
Thursday, 24 October 2019
Usar SFC y DISM para arreglar Windows
Usar SFC y DISM para arreglar Windows
Hacer lo siguiente:echo %date% %time%
sfc /scannow
echo %date% %time%
REM Tarda horas, devuelve el control y aún no ha acabado .. prueba con esto.
REM Tiene que ser casi inmediato.
sfc /VERIFYFILE="%windir%\explorer.exe"
Comprobar cómo fue:REM Buscar errores -- explicación más abajo
echo %date% %time%
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log | findstr -v /c:"[SR] Verifying 100 (0x0000000000000064) components" | findstr -v /c:"[SR] Verify complete" | findstr -v /c:"[SR] Beginning Verify and Repair transaction" >"%userprofile%\Desktop\aplis\energy-report\sfc-errors-20191024-1252.txt"
:: Explicación
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log
| findstr -v /c:"[SR] Verifying 100 (0x0000000000000064) components"
| findstr -v /c:"[SR] Verify complete"
| findstr -v /c:"[SR] Beginning Verify and Repair transaction"
> "%userprofile%\Desktop\aplis\energy-report\sfc-errors-20191024-1252.txt"
Guardar el detalle si lo ves importante (ojo es infumable):copy %windir%\Logs\CBS\CBS.log %userprofile%\Desktop\aplis\energy-report\CBS-20191024-1252.log"
del %windir%\Logs\CBS\CBS.log
:: Si da: El proceso no tiene acceso al archivo porque está siendo utilizado por otro proceso.
:: es que no había terminado.
:: Parece que no es necesrio borrarlo, con algún criterio los comprime como CbsPersist_20191018152857.cab y guarda varios.
:: https://www.bleepingcomputer.com/forums/t/600471/can-i-delete-cbspersist-logs-safely-your-opinion-please/
:: https://answers.microsoft.com/en-us/windows/forum/all/why-is-cbspersist-log-so-large-how-do-i-remove-it/0b6b50d4-e55d-40fb-b32a-7166d8bfec81
:: Sugiere: Dism /online /cleanup-image /startcomponentcleanup
:: No funciona en windows 7
:: https://www.computerworld.com/article/3112358/windows-7-log-file-compression-bug-can-fill-up-your-hard-drive.html
:: Explica como borrarlos.
IMPORTANTE: Reinicia para que surta efectoSi lo anterior no funciona prueba con esto en windows 10
{
https://www.windowscentral.com/how-use-dism-command-line-utility-repair-windows-10-image
Esto es sólo en Windows 10, en windows 7 hay otras opciones.
How to use DISM command tool to repair Windows 10 image Es la imagen que utiliza de referencia sfc o también de la que se extrajo la referencia
More info: https://ss64.com/nt/dism.html
/Online -- refers to the running operating system.
Check corruptions inside the local image with DISM using CheckHealth option, this won't perform any repairs.
DISM /Online /Cleanup-Image /CheckHealth
Perform a more advanced scan inside the local image
DISM /Online /Cleanup-Image /ScanHealth
Repairing issues inside the local image
DISM /Online /Cleanup-Image /RestoreHealth
Other options, repairing issues with DISM using WIM image, see article for more:
DISM /Online /Cleanup-Image /RestoreHealth /Source:E:\sources\install.wim
DISM /Online /Cleanup-Image /RestoreHealth /Source:F\sources\install.wim /LimitAccess
DISM /Online /Cleanup-Image /RestoreHealth /Source:wim:F:\sources\install.wim:1 /LimitAccess
}Referencias:
- Use the System File Checker (SFC) tool to repair missing or corrupted system files, support.microsoft.com: http://support.microsoft.com/kb/929833/en-us . Muestra como obtener los errores (aunque incompleto, limpia bastante)
- winhelponline: Fix for System File Checker Error 0x000006ba RPC Server is unavailable
- winhelp.us: Repair your computer in Windows 10 . Incluye: bootrec /fixmbr ; bootrec /fixboot ; bootrec /rebuildbcd
SSD and hibernate/sleep - No problem !! it's a myth !!
SSD and hibernate/sleep
- How long a SSD will last ? (SLC) SSD Write Endurance Considered... Sufficient
- Comparing (SSD) DWPD to TBW
- Western Digital® PC SN520 NVMe™ SSD. pdf
- Western Digital PC SN720 y PC SN520: SSDs NVMe de alto rendimiento. Ojo hay varios tamaños de M.2
Monday, 21 October 2019
Los diez errores más comunes que cometemos con las hojas de reclamaciones
Los diez errores más comunes que cometemos con las hojas de reclamaciones
Las hojas de reclamaciones son impresos oficiales emitidos por las Comunidades Autónomas y estandarizados, que determinados establecimientos abiertos al público deben tener a disposición de los consumidores y usuarios, para que éstos puedan hacer constar las incidencias o conflictos ocurridos en la adquisición de un producto o en la prestación de un servicio.
Si alguna vez has pedido la hoja de reclamaciones o si aún no lo has hecho, te resumimos en diez puntos los errores más comunes en los que caemos los consumidores al respecto de las hojas de reclamaciones.
1.-No está el encargado, yo no estoy autorizado a darle una hoja de reclamaciones:
Esta es la excusa clásica que se nos dirá cuando solicitemos una hoja de reclamaciones. La normativa autonómica no hace distinciones, la persona encargada, sea empleado o el dueño, debe facilitarnos la hoja de reclamaciones.
Este derecho se refuerza con la existencia de un “Cartel informativo” de la tenencia de las hojas a disposición del consumidor. Por tanto si se anuncia que se tienen a nuestra disposición, da igual quién esté a cargo del comercio en ese momento. Nos la tienen que dar. Si no, se incurre en infracción administrativa.
2.-No tenemos hojas, no estamos obligados:
En general, todos los comercios y profesionales que ofrezcan bienes o servicios a los consumidores deben disponer de hojas de reclamaciones. La normativa autonómica exceptúa a profesionales colegiados (abogados, economistas, médicos, etc.), a servicios públicos o a aquellos que tengan una norma específica de hojas de reclamaciones).
Tiendas online: Estas no son una excepción a la obligación de comunicar la existencia de hojas de reclamaciones en la propuesta comercial y el contrato.
Servicios a domicilio o fuera del establecimiento mercantil: la norma catalana dice al respecto:
“En el caso de las actividades de venta de productos o prestación de servicios fuera de un establecimiento mercantil o fijo, las hojas de reclamación/denuncia las llevarán las personas vendedoras, los operarios o prestadores de servicios y los entregarán a la persona consumidora o usuaria”.
3.-Se nos han agotado, lo sentimos, no puede reclamar:
Esta es otra triquiñuela a la que algunos comercios podrán recurrir. No disponer de hojas de reclamaciones es una infracción administrativa. En este caso, como consumidor no te preocupes: puedes reclamar a posteriori en el formato en que desees, haciendo constar lo anterior.
4.-Como no ha adquirido nada ni consumido nada no se la podemos dar, no es cliente:
Esta es otra de las jugadas maestras y algo que muchas personas no saben. No hay que ser cliente de un servicio para poder solicitar una hoja de reclamaciones y reclamar:
La normativa catalana es expresa al respecto:
“Las hojas de reclamación/denuncia oficiales tienen que permanecer en el establecimiento donde se lleve a término la actividad comercial o de servicios a la persona consumidora o usuaria, y serán entregados a la persona que lo solicite, aunque no haya formalizado ningún trato comercial con la empresa”.
5.-Si no me da la hoja no le pago o, pues ahora dejo de pagar, se van a enterar los de Televodarange Comunicaciones:
La peor cosa que se puede hacer como consumidor disconforme es dejar de pagar algo. La norma es así: paga primero y después reclama. Las consecuencias de un impago, aparte de poder pasar a formar parte de un fichero de morosos, son las de incumplir un contrato (incluso a veces ligado a una entidad financiera que no tiene nada que ver con el establecimiento que ofrece el bien o el servicio), por mucha razón que tengamos.
La estrategia pasa por pagar para poder solicitar un justificante del pago en el que se detalle bien el servicio prestado para poder luego adjuntarlo como prueba junto con la hoja de reclamación a la administración.
6.-Para qué voy a reclamar si no sirve para nada:
Es bueno distinguir dos tipos de acciones que podemos comunicar a la administración a través de las hojas de reclamaciones:
a) reclamar: es decir, exigir al establecimiento una compensación por un mal servicio o por cobrarnos más de lo que, a nuestro criterio, deberían. Aquí tenemos un fin claro: resarcirnos de un daño.
b) sin embargo, mucha gente piensa que quejarse o denunciar una situación de abuso no merece la pena: en este caso, nos solemos cruzar de hombros y decir, “no vuelvo” pero no estamos ayudando a atajar el problema frente a otros usuarios ni la administración puede conocer el incumplimiento del establecimiento de la normativa.
Por favor pide la hoja siempre, ayudarás a todos.
7.-Tome, esta es la hoja:
Las hojas de reclamaciones son documentos oficiales, autocopiativos y que constan de tres ejemplares (uno para el consumidor, otro pare el comercio y el tercero para la administración) y no valen otros.
Algunos comercios podrían estar tentados a entregarnos un formulario de parte, hecho por ellos mismos y muy parecidos (es aspecto y denominación) para engañarnos. Sin embargo, conviene saber que está prohibida por Ley la tenencia o entrega a los consumidores de hojas o documentos de reclamación o denuncia que puedan inducir a error o confusión con los oficiales para su presentación, naturaleza o finalidad. También está prohibido utilizar el nombre de hoja de reclamación u hoja de denuncia en los documentos, distintos a las hojas oficiales, que ofrezcan los comercios a los consumidores.
8.-Déjeme a mí el ejemplar de la administración que yo se lo haré llegar a Consumo:
Otro error frecuente es que el consumidor no se quede, además de con su ejemplar de la hoja rellena, con el ejemplar de la Administración. Este debe quedarse con nosotros para que le podamos añadir fotocopia de la documentación que deseemos acompañar junto a la hoja y entregarlo en cualquier organismo público (preferentemente de consumo).
9.-No tengo los originales de la factura o del contrato, se los adjunté a la reclamación y no me quedé con copia:
La normativa permite (y es recomendable) entregar como anexos a la hoja de reclamación todos los documentos que la apoyen (facturas, tiques de caja, contratos, fotografías, etc.), pero siempre es mejor que sean fotocopias, quedándonos nosotros con los originales por si nos piden cotejarlos con las fotocopias en algún momento.
10.-No pasa nada, puedes reclamar después, directamente a los organismos de consumo:
Otro de los principales motivos de no reclamación es lo embarazoso de poner una reclamación (sobre todo en la hostelería tanto por el lugar como por la hora en que los hechos ocurren) en un momento dado. Los consumidores pensamos que si no es en ese momento y por medio de una hoja de reclamaciones, ya no podremos reclamar.
Nada más lejos de la realidad. Recuerda que no por no rellenar una hoja de reclamaciones se pierde el derecho a reclamar contra un establecimiento o a quejarse de algún incumplimiento de la norma.
Hoja de reclamaciones online
- Hojas de reclamaciones online
- Plazo para devolver un producto comprado online
- Derecho de desistimiento
Eva Tamames
Soy una abogado con ejercicio en Madrid con muchos años de experiencia en el derecho de recuperaciones. He trabajado para varios de los más grandes bancos de este país, en su área de recuperaciones. En la actualidad ejerzo la abogacía en el ámbito de la violencia de género.Creo que Consumoteca es un proyecto participativo que tiene que ocupar un gran vacío entre la información de las empresas por un lado, y la de las asociaciones e instituciones de consumo.En medio no hay nada, y mucho menos, nada que sea participativo, terreno que están ocupando Blogs y contenidos poco elaborados de baja factura.Understanding Key Differences Between FTP, FTPS and SFTP
Original: Understanding Key Differences Between FTP, FTPS and SFTP
Managed File Transfer and Network Solutions
Perhaps the most common protocols used in file transfer today are FTP, FTPS and SFTP. While the acronyms for these protocols are similar, there are some key differences among them, in particular how data are exchanged, the level of security provided and firewall considerations. Learning these key differences can help you when choosing a file transfer protocol or troubleshooting common connection issues.
Data Exchange
The FTP protocol exchanges data using two separate channels known as the command channel and data channel.
The command channel typically runs on server port 21 and is responsible for accepting client connections and handling the exchange of simple commands between an FTP client and server. The USER and PASS commands used for authenticating an FTP user are examples of commands that are exchanged on the command channel. The command channel remains open until the client sends the QUIT command to disconnect, or the server forcibly disconnects the client due to inactivity or other reason.
The data channel, runs using on-demand temporary ports listening on the server (passive mode) or on the client (active mode) and is responsible for exchanging data in the form of directory listings and file transfers. The LIST, STOR and RETR commands used for getting a server directory listing, uploading a file and downloading a file are examples of commands (sent using the command channel) that open a data channel. Unlike the command channel which remains open during the entire FTP session, the data channel is closed once the transfer of data is complete. In order to handle concurrent file transfers or directory listings a range of data channel ports must be used.
Security
Using FTP both the command and data channels are unencrypted. Any data sent over these channels can be intercepted and read. One common exploit that takes advantage of this particular vulnerability is the man-in-the-middle attack using ARP poisoning and a packet sniffer.
Firewall
Server - Allow inbound connections on port 21. Define passive port range (e.g. 2000-2500) for file transfers and directory listings and allow inbound connections on passive port range. Consult your server documentation for instructions on how to set a passive port range.
Client - Allow outbound connections to port 21 and passive port range defined by server.
Many firewall issues encountered when using FTP are caused by a poor understanding of FTP's two modes: the active mode and the passive mode. The settings you will have to make on your server-side firewall or your client-side firewall will largely depend on which mode you choose. To avoid these issues, we suggest you take time for a deeper discussion on active and passive FTP.
Data Exchange See FTP
Security
Secure variants of FTP include FTPS Implicit SSL and FTPS Explicit SSL. Both utilize SSL encryption.
FTPS Implicit SSL
In implicit SSL mode a required SSL session is established between client and server before any data is exchanged. As it's name suggests, the use of SSL is implied and any connection attempt made by a client without using SSL are refused by the server. FTPS implicit SSL services generally run on port 990. Although still in use today, FTPS Implicit SSL is considered by many to be obsolete in favor of FTPS Explicit SSL.
FTPS Explicit SSL
In explicit SSL mode the client and server negotiate the level of protection used. This is very useful in that the server can support both unencrypted FTP and encrypted FTPS sessions on a single port. In an explicit SSL session the client first establishes an unencrypted connection to the FTP service. Prior to sending user credentials, the client requests that the server switch the command channel to an SSL encrypted channel by sending the AUTH TLS or AUTH SSL command. Upon successful setup of the SSL channel the client then sends user credentials to the FTP server. These credentials along with any other commands sent to server during the FTP session are automatically encrypted by the SSL channel. Similar to the way in which the command channel may be protected, the level of protection used on the data channel is negotiated between the client and server using the PROT command.
Firewall
Server - Allow inbound connections on port 21 and / or 990. Define passive port range (e.g. 2000-2500) for file transfers and directory listings and allow inbound connections on passive port range. Consult your server documentation for instructions on how to set a passive port range.
Client - Allow outbound connections to port 21 and passive port range defined by server.
Recommended post: How To Install A SFTP Server on Windows
Data Exchange
Unlike FTP/S, SFTP does not utilize separate command and data channels. Both data and commands are transferred in specially formatted packets via a single connection.
Security
All data sent between client and server is encrypted using an agreed upon encryption cipher. SFTP sessions can also be further protected through the use of public and private keys, which offer an alternative form of authentication known as public key authentication. This can be used as an alternative to or in conjunction with the traditional form of authentication of usernames and passwords.
Firewall
Server - Allow inbound connections on port 22.
Client - Allow outbound connections to port 22.
Managed File Transfer and Network Solutions
Understanding Key Differences Between FTP, FTPS and SFTP
Posted by Van Glass on Sat, Jan 07, 2012 @ 12:56 PMPerhaps the most common protocols used in file transfer today are FTP, FTPS and SFTP. While the acronyms for these protocols are similar, there are some key differences among them, in particular how data are exchanged, the level of security provided and firewall considerations. Learning these key differences can help you when choosing a file transfer protocol or troubleshooting common connection issues.
FTP
The FTP (File Transfer Protocol) protocol has been around for quite some time. It was first proposed in RFC 114 over 40 years ago and eventually evolved into RFC 959 which is the standard that FTP clients and servers follow today.Data Exchange
The FTP protocol exchanges data using two separate channels known as the command channel and data channel.
The command channel typically runs on server port 21 and is responsible for accepting client connections and handling the exchange of simple commands between an FTP client and server. The USER and PASS commands used for authenticating an FTP user are examples of commands that are exchanged on the command channel. The command channel remains open until the client sends the QUIT command to disconnect, or the server forcibly disconnects the client due to inactivity or other reason.
The data channel, runs using on-demand temporary ports listening on the server (passive mode) or on the client (active mode) and is responsible for exchanging data in the form of directory listings and file transfers. The LIST, STOR and RETR commands used for getting a server directory listing, uploading a file and downloading a file are examples of commands (sent using the command channel) that open a data channel. Unlike the command channel which remains open during the entire FTP session, the data channel is closed once the transfer of data is complete. In order to handle concurrent file transfers or directory listings a range of data channel ports must be used.
Security
Using FTP both the command and data channels are unencrypted. Any data sent over these channels can be intercepted and read. One common exploit that takes advantage of this particular vulnerability is the man-in-the-middle attack using ARP poisoning and a packet sniffer.
Firewall
Server - Allow inbound connections on port 21. Define passive port range (e.g. 2000-2500) for file transfers and directory listings and allow inbound connections on passive port range. Consult your server documentation for instructions on how to set a passive port range.
Client - Allow outbound connections to port 21 and passive port range defined by server.
Many firewall issues encountered when using FTP are caused by a poor understanding of FTP's two modes: the active mode and the passive mode. The settings you will have to make on your server-side firewall or your client-side firewall will largely depend on which mode you choose. To avoid these issues, we suggest you take time for a deeper discussion on active and passive FTP.
FTPS
When the FTP protocol was initially drafted security was not a concern. Since then many things have changed and sending data over any public network without encryption is considered very risky and in some cases prohibited. Regulations like PCI-DSS and HIPAA, for instance, contain provisions that require data transmissions to be protected by encryption. In order to address this issue a set of security extensions to the original FTP protocol were proposed in RFC 2228 that protect FTP data as it travels over the network using SSL encryption.Data Exchange See FTP
Security
Secure variants of FTP include FTPS Implicit SSL and FTPS Explicit SSL. Both utilize SSL encryption.
FTPS Implicit SSL
In implicit SSL mode a required SSL session is established between client and server before any data is exchanged. As it's name suggests, the use of SSL is implied and any connection attempt made by a client without using SSL are refused by the server. FTPS implicit SSL services generally run on port 990. Although still in use today, FTPS Implicit SSL is considered by many to be obsolete in favor of FTPS Explicit SSL.
FTPS Explicit SSL
In explicit SSL mode the client and server negotiate the level of protection used. This is very useful in that the server can support both unencrypted FTP and encrypted FTPS sessions on a single port. In an explicit SSL session the client first establishes an unencrypted connection to the FTP service. Prior to sending user credentials, the client requests that the server switch the command channel to an SSL encrypted channel by sending the AUTH TLS or AUTH SSL command. Upon successful setup of the SSL channel the client then sends user credentials to the FTP server. These credentials along with any other commands sent to server during the FTP session are automatically encrypted by the SSL channel. Similar to the way in which the command channel may be protected, the level of protection used on the data channel is negotiated between the client and server using the PROT command.
Firewall
Server - Allow inbound connections on port 21 and / or 990. Define passive port range (e.g. 2000-2500) for file transfers and directory listings and allow inbound connections on passive port range. Consult your server documentation for instructions on how to set a passive port range.
Client - Allow outbound connections to port 21 and passive port range defined by server.
SFTP
SFTP is often confused with FTPS and vice-versa even though these protocols share nothing in common except their ability to securely transfer files. SFTP is actually based on the SSH (Secure Shell) protocol which is best known for it's use in providing secure access to shell accounts on remote servers.Recommended post: How To Install A SFTP Server on Windows
Data Exchange
Unlike FTP/S, SFTP does not utilize separate command and data channels. Both data and commands are transferred in specially formatted packets via a single connection.
Security
All data sent between client and server is encrypted using an agreed upon encryption cipher. SFTP sessions can also be further protected through the use of public and private keys, which offer an alternative form of authentication known as public key authentication. This can be used as an alternative to or in conjunction with the traditional form of authentication of usernames and passwords.
Firewall
Server - Allow inbound connections on port 22.
Client - Allow outbound connections to port 22.
Get Started
Looking for an SFTP, FTPS or FTP server? Try JSCAPE MFT Server. It's a managed file transfer server that supports all three file transfer protocols and more. Download a free, fully-functional evaluation edition now.Tuesday, 15 October 2019
European Article Number - ejemplo de código en 16 lenguajes. Curioso !!
European Article Number - ejemplo de código en 16 lenguajes
https://es.wikipedia.org/wiki/European_Article_Number
https://es.wikipedia.org/wiki/European_Article_Number
Sunday, 6 October 2019
Comprobar el estado de la batería de los portátiles en windows 7 y 10
Comprobar el estado de la batería de los portátiles en windows 7 y 10
Según lo ve windows
https://www.downloadsource.es/como-conocer-el-estado-de-salud-de-la-bateria-de-tu-portatil-en-windows-10-8-y-7-sin-programas/n/8577/
http://www.pcactual.com/noticias/trucos/como-comprobar-estado-bateria_13518
Resumen:
windows 7
cd "%userprofile%/Desktop"
powercfg -energy
windows 10
cd "%userprofile%/Desktop"
powercfg /batteryreport -- sólo información de la batería
Según lo ve windows
https://www.downloadsource.es/como-conocer-el-estado-de-salud-de-la-bateria-de-tu-portatil-en-windows-10-8-y-7-sin-programas/n/8577/
http://www.pcactual.com/noticias/trucos/como-comprobar-estado-bateria_13518
Resumen:
windows 7
cd "%userprofile%/Desktop"
powercfg -energy
windows 10
cd "%userprofile%/Desktop"
powercfg /batteryreport -- sólo información de la batería
powercfg /energy -- información de todo
Otras opciones:
BatteryInfoView, es más rápido y sencillo - https://www.nirsoft.net/utils/battery_information_view.html
https://answers.microsoft.com/en-us/windows/forum/all/sleep-mode-not-working-only-after-i-use-it-for-an/2d2d98ac-b7d4-49c0-a95e-98acb8cb37ca
powercfg -WAKETIMERS -- activa el sistema desde suspensión e hibernación. **WOSB**
Otras herramientas
WinLogOnView v1.33 - https://www.nirsoft.net/utils/windows_log_on_times_view.html
https://www.nirsoft.net/utils/index.html
Portátil Curro win7: Identificador de batería 1774SanyoDELL NH6K93C:
Otras opciones:
BatteryInfoView, es más rápido y sencillo - https://www.nirsoft.net/utils/battery_information_view.html
https://answers.microsoft.com/en-us/windows/forum/all/sleep-mode-not-working-only-after-i-use-it-for-an/2d2d98ac-b7d4-49c0-a95e-98acb8cb37ca
powercfg -WAKETIMERS -- activa el sistema desde suspensión e hibernación. **WOSB**
Otras herramientas
WinLogOnView v1.33 - https://www.nirsoft.net/utils/windows_log_on_times_view.html
https://www.nirsoft.net/utils/index.html
Última carga completa | Capacidad de diseño | % | Comentario | |
20141031 | 42702 | 53280 | 80% | |
20151228 | 37030 | 62160 | 60% | Cambia la capacidad de diseño ?? |
20180123 | 31424 | 53280 | 59% | |
20190531 | 32201 | 53280 | 60% | |
20191006 | 40271 | 53280 | 76% | Curioso !! El id sigue siendo el mismo 1774SanyoDELL NH6K93C |
Wednesday, 4 September 2019
Thursday, 1 August 2019
Errare humanum est -- Errar es humano
Errare humanum est -- Errar es humano
De la wikipedia Errare humanum est .- La expresión completa es: Errare humanum est, sed perseverare diabolicum
- Errar es humano, pero perseverar (en el error) es de idiotas.
- Cicerón (Filípica XII 5.): Cuiusvis hominis est errare: nullius nisi insipientis, in errore perseverare
- Errar es propio de cualquier hombre, pero sólo del ignorante perseverar en el error.
- Livio (Historias, VIII, 35): Venia dignus este error humanus.
- Error cada ser humano merece el perdón.
Monday, 15 July 2019
i18n, L10n and Internationalization Coding Guidelines
- i18n = I + (some 18 characters) + N = InternationalizatioN
- L10n stands for "localization" and uses capital L to distinguish it from the lowercase i
- Internationalization Coding Guidelines Internationalization Coding Guidelines en https://www.edx.org/
- stackoverflow.com:What does I18N safe mean?
Editores de texto para Windows
- Notepad++
- Textpad
- Gedit
- Sublime Text
- Visual Studio Code
- Geany
- Komodo Edit
- UltraEdit
- PSPad
- Programmer's Notepad Github
- BBEdit for Mac
- 👉 alternativeto.net textpad
Saturday, 29 June 2019
Vacaciones en Berlín
Notas para viajar de vacaciones a Berlín
Visitar en Berlín 2Requisitos:
- Hotel adaptado para minusválidos. La ducha es lo más importante.
- Llevar una maleta grande y equipaje de mano y silla de ruedas
- Comentarios en tripadvisor
- ==} Reservado el Hotel NH Collection Berlin Mitte Friedrichstrasse y vuelo ida y vuelta con Iberia. En https://www.expedia.es con hab y desayuno y seguro de cancelación. Ida 17/7 ; vuelta el 24/7
- google: Hotel Berlin Berlin. Hotel sugerido por Helena el 24/06/2019.
Direción (es dificil localizarlo por que el nombre es igual a de la ciudad):
Dirección: Lützowpl. 17, 10785 Berlin, Alemania
Teléfono: +49 30 26050
- Lo encuentro algo apartado de la zona de interés
- Adaptado para minusválidos
- booking redireciona a lastminute
- Nota en ordenador Paloma sesión Loli en E:\Users\lolir\Desktop\Berlin-a-visitar.txt
Para visitar en Berlín
- Hacer tu propio mapa en Google
- Mapa nuestro de sitios a visitar: Loli, el resto
- Mapa interactivo con sitios interesantes.
Se puede exportar KLM y poner en tu mapa.
- Consejos para visitar berlín (y no cagarla)
- Berlin Welcome Card. Leer las condiciones y que incluye: 4 * 45 durante 6 días = 180 euros
- Mapa e info
- City Pass La página oficial
- Nomadas.Com/Berlin/Antes-Del-Viaje
- Nomadas.Com Taxis en Berlín
- https://www.sixt.es/ride/traslados-aeropuerto/berlin Estos o Uber
- (TXL) Aeropuerto de Berlín Tegel
- Hotel NH Collection Berlin Mitte Friedrichstrasse, Friedrichstraße, Berlín, Alemania
- 17/07/2019 23:30
- ==} Ida de 35 euros a 42 euros
- Vuelta de 30 a 37 euros
- Traslados de los de nomadas 78€ hasta 8 personas
- me parecen caros, para 4 personas, pero ok para 8.
- https://www.sixt.es/ride/traslados-aeropuerto/berlin Estos o Uber
Tours guidas, sugerencias de visita (sin detalle) y algunas cosas que comer
- Qué ver en Berlín en una semana. Puntos ya añadidos a nuestro mapa
Sitios dudosos
- ¿Qué Ver en BERLÍN? Guía (¡con Mapa!) - Guía Low Cost
Algunas Webs:
- kayak
- trivago
- expedia
- kiwi.com
- booking.com === lastminute. El total no correspondía 4 x 500 = 3000 !!
- iberia
- https://www.lol.travel/es/hoteles - no V+H complejo.
Al contratar en experia sale esto:
Información importante del vuelo
Vuelo de Madrid (MAD) a Berlín (TXL). Del mié., 17 de jul. al mié., 24 de jul.
- Sabemos que, algunas veces, los planes cambian. En caso de cambio o cancelación de la reserva, es posible que te cobremos los gastos de gestión, además de la penalización o la diferencia de precio que pueda cobrar la aerolínea.
- Consulta los datos y términos y condiciones del seguro (se abre en una ventana nueva).
- Confirmo que he recibido, leído y aceptado lo dispuesto en el apartado IPID y Condicionado General, que conozco los destinos excluidos, y que cumplo los requisitos para recibir la cobertura. También acepto recibir documentación de forma electrónica y reconozco que se considera que este producto cumple con mi Declaración Sobre Exigencias y Necesidades
Información importante sobre el hotel
NH Collection Berlin Mitte Friedrichstrasse (mié., 17 de jul. - mié., 24 de jul.)
- Confirmo que he recibido, leído y aceptado lo dispuesto en el apartado IPID y Condicionado General, que conozco los destinos excluidos, y que cumplo los requisitos para recibir la cobertura. También acepto recibir documentación de forma electrónica y reconozco que se considera que este producto cumple con mi Declaración Sobre Exigencias y Necesidades
Comprar ahora
Utilizamos procesos de almacenamiento cifrado y transmisión segura para proteger tus datos personales.
Expedia Travel asumirá toda la responsabilidad por la correcta ejecución del viaje combinado que compras. Usted gozará de todos los derechos que se aplican en el marco de la UE a los viajes combinados. Expedia Travel dispone de la protección correspondiente para reembolsar tus pagos, así como para garantizar la repatriación en el caso de insolvencia por parte del proveedor de servicios del transporte o de nuestro proveedor de servicios. Esto se realiza de conformidad con los derechos que te confiere el Real Decreto Legislativo 1/2007, de 16 de noviembre. Para más información [haga clic aquí].El pago se procesará en España. Esto no es aplicable cuando es el proveedor de viajes (aerolínea, hotel, compañía ferroviaria, etc.) el que procesa el pago.
Monday, 24 June 2019
Vacaciones / Visitar en Berlín
E:\Users\lolir\Desktop\Berlin-a-visitar.txt
--------------------------------------------------
Para visitar en Berlín
======================
Hacer tu propio mapa
https://www.google.com/maps/d/?hl=es
Documentación
https://www.google.com/intl/es_ES/maps/about/mymaps/
Mapa interactivo con sitios interesantes
https://www.disfrutaberlin.com/mapa
Se puede exportar KLM y poner en tu **mapa**
CONSEJOS PARA VISITAR BERLÍN (Y NO CAGARLA)
https://www.mochileandoporelmundo.com/consejos-para-visitar-berlin/
Berlin Welcome Card
https://www.civitatis.com/es/berlin/berlin-welcomecard/
**Leer las condiciones** y que incluye: 4 * 45 durante 6 días = 180 euros
Mapa e info
https://cdn.civitatis.com/alemania/berlin/galeria/folleto-berlin-welcomecard-guide.pdf
La página oficial
https://www.berlin-welcomecard.de/es
City Pass
Tours guidas, sugerencias de visita (sin detalle) y algunas cosas que comer
Visitas guiadas
https://www.civitatis.com/es/berlin/free-tour-berlin/?aid=1026#precios
Qué ver en Berlín en una semana
https://www.skyscanner.es/noticias/inspiracion/que-ver-en-berlin-en-una-semana
Puntos ya añadidos a nuestro mapa
Qué ver en Berlín en una semana
https://www.skyscanner.es/noticias/inspiracion/que-ver-en-berlin-en-una-semana
https://www.guialowcost.es/que-ver-berlin-guia-mapa/
https://mapaturistico.net/alemania/berlin/
Free tour por Berlín ¡Gratis!
https://www.civitatis.com/es/berlin/free-tour-berlin/?aid=1026
========== Sitios dudosos
=========================
¿Qué Ver en BERLÍN? Guía (¡con Mapa!) - Guía Low Cost
https://www.guialowcost.es/que-ver-berlin-guia-mapa/
kayak
trivago
expedia
kiwi.com
booking.com
https://www.nomadas.com/berlin/taxis/
https://drive.google.com/open?id=1msWPcDwodpn1xd8KCM_Dd4NtXPPvFhzF&usp=sharing
https://drive.google.com/open?id=1msWPcDwodpn1xd8KCM_Dd4NtXPPvFhzF&usp=sharing
--------------------------------------------------
Para visitar en Berlín
======================
Hacer tu propio mapa
https://www.google.com/maps/d/?hl=es
Documentación
https://www.google.com/intl/es_ES/maps/about/mymaps/
Mapa interactivo con sitios interesantes
https://www.disfrutaberlin.com/mapa
Se puede exportar KLM y poner en tu **mapa**
CONSEJOS PARA VISITAR BERLÍN (Y NO CAGARLA)
https://www.mochileandoporelmundo.com/consejos-para-visitar-berlin/
Berlin Welcome Card
https://www.civitatis.com/es/berlin/berlin-welcomecard/
**Leer las condiciones** y que incluye: 4 * 45 durante 6 días = 180 euros
Mapa e info
https://cdn.civitatis.com/alemania/berlin/galeria/folleto-berlin-welcomecard-guide.pdf
La página oficial
https://www.berlin-welcomecard.de/es
City Pass
Tours guidas, sugerencias de visita (sin detalle) y algunas cosas que comer
Visitas guiadas
https://www.civitatis.com/es/berlin/free-tour-berlin/?aid=1026#precios
Qué ver en Berlín en una semana
https://www.skyscanner.es/noticias/inspiracion/que-ver-en-berlin-en-una-semana
Puntos ya añadidos a nuestro mapa
Qué ver en Berlín en una semana
https://www.skyscanner.es/noticias/inspiracion/que-ver-en-berlin-en-una-semana
https://www.guialowcost.es/que-ver-berlin-guia-mapa/
https://mapaturistico.net/alemania/berlin/
Free tour por Berlín ¡Gratis!
https://www.civitatis.com/es/berlin/free-tour-berlin/?aid=1026
========== Sitios dudosos
=========================
¿Qué Ver en BERLÍN? Guía (¡con Mapa!) - Guía Low Cost
https://www.guialowcost.es/que-ver-berlin-guia-mapa/
kayak
trivago
expedia
kiwi.com
booking.com
https://www.nomadas.com/berlin/taxis/
https://drive.google.com/open?id=1msWPcDwodpn1xd8KCM_Dd4NtXPPvFhzF&usp=sharing
https://drive.google.com/open?id=1msWPcDwodpn1xd8KCM_Dd4NtXPPvFhzF&usp=sharing
Saturday, 15 June 2019
Capturador de pantalla windows getgreenshot.org/
Muy bueno y poco conocido.
Hay que configurarlo :-) !!
Tiene version .zip sin instalación !!
https://getgreenshot.org/
https://github.com/greenshot/greenshot
Funciona con Win 7, 10 - probados
Usa Microsoft .NET framework 2.0 or later
Hay que configurarlo :-) !!
Tiene version .zip sin instalación !!
https://getgreenshot.org/
https://github.com/greenshot/greenshot
Funciona con Win 7, 10 - probados
Usa Microsoft .NET framework 2.0 or later
Saturday, 11 May 2019
A Git Horror Story: Repository Integrity With Signed Commits
A Git Horror Story: Repository Integrity With Signed Commits
https://mikegerwitz.com/2012/05/a-git-horror-story-repository-integrity-with-signed-commits#automate
https://mikegerwitz.com/2012/05/a-git-horror-story-repository-integrity-with-signed-commits#automate
Wednesday, 6 March 2019
Windows 10 - Audio no funciona
https://answers.microsoft.com/es-es/windows/forum/all/soluci%C3%B3n-oficial-windows-10-audio-no-funciona/d57f37cd-9068-4201-bf93-510e92a994ca
Thursday, 21 February 2019
When to work as root & When to Work as a System User
When to work as root & When to Work as a System User
https://www.linux.org/threads/when-to-work-as-root-when-to-work-as-a-system-user.4136/
Short answer NEVER !!
https://www.linux.org/threads/when-to-work-as-root-when-to-work-as-a-system-user.4136/
Short answer NEVER !!
How does a journaling file system work?
How does a journaling file system work? 1 Answer
https://www.quora.com/How-does-a-journaling-file-system-work
Bastante interesante pero a muy alto nivel, faltan los detalles
https://en.wikipedia.org/wiki/Journaling_file_system
y
https://es.wikipedia.org/wiki/Journaling
.. y curiosamente en la versión española está mejor explicado.
https://www.quora.com/How-does-a-journaling-file-system-work
Bastante interesante pero a muy alto nivel, faltan los detalles
https://en.wikipedia.org/wiki/Journaling_file_system
y
https://es.wikipedia.org/wiki/Journaling
.. y curiosamente en la versión española está mejor explicado.
Comparativa ETL Talend vs Pentaho Data Integration (Kettle)
Comparativa ETL Talend vs Pentaho Data Integration (Kettle). Posted by Roberto Espinosa en 1 junio 2010
https://churriwifi.wordpress.com/2010/06/01/comparativa-talend-vs-kettle-pdi/
Talend vs Pentaho
https://www.educba.com/talend-vs-pentaho/
Talend component index
https://www.talendforge.org/components/index.php
https://churriwifi.wordpress.com/2010/06/01/comparativa-talend-vs-kettle-pdi/
Talend vs Pentaho
https://www.educba.com/talend-vs-pentaho/
Talend component index
https://www.talendforge.org/components/index.php
Thursday, 14 February 2019
Posters, crear a partir de imagen jpeg online
Posters, crear a partir de imagen jpeg online.
https://www.blockposters.com/create/
Lo encontré aquí, https://www.wired.com/2008/11/blockposters/
Es de 2008 y sigue funcionando en 2019 :-) !!
https://www.blockposters.com/create/
Lo encontré aquí, https://www.wired.com/2008/11/blockposters/
Es de 2008 y sigue funcionando en 2019 :-) !!
Wednesday, 2 January 2019
Java memory error, momoria
Error de java cuando el sistema falla en darle memoria, no el fallo normal
[error occurred during error reporting (null), id 0xc00000fd]
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 4088 bytes for AllocateHeap
# An error report file with more information is saved as:
# X:\path\hs_err_pid22304.log
[error occurred during error reporting (null), id 0xc00000fd]
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 4088 bytes for AllocateHeap
# An error report file with more information is saved as:
# X:\path\hs_err_pid22304.log
El error normal tiene esta pinta:
java.lang.OutOfMemoryError: Java heap space” error?
java.lang.OutOfMemoryError : GC overhead limit exceeded
En el primer caso la máquina estaba petada y hubo que reiniciarla.
El segundo es que llegué al máximo de la memoria permitida, parámetro -Xmx1024M o -Xmx2G
Subscribe to:
Posts (Atom)