User Tools

Site Tools


start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
start [2016/10/12 16:37] rlunarostart [2020/01/22 07:27] rlunaro
Line 1: Line 1:
  
-These pages are a notepad with notes about technology and other stuff. +<code> 
 +import hashlib 
 +import sys
  
 +with open(sys.argv[1], "rb") as f:
 +    file_hash = hashlib.md5()
 +    while chunk := f.read(8192):
 +        file_hash.update(chunk)
  
-<WRAP center round important 60%> +print(file_hash.hexdigest())  # to get a printable str instead of bytes 
-¿Eres santiago luna y estás buscando la página de descarga de los mods????  +</code>
-**Visita [[http://minecraft.supermanhamuerto.com]]** +
-</WRAP>+
  
 +These pages are a notepad with notes about technology and other stuff. 
  
   * [[PorqueDebemosEnseniarProgramacion|Por qué debemos enseñar programación]]   * [[PorqueDebemosEnseniarProgramacion|Por qué debemos enseñar programación]]
   * [[http://www.jnestor.supermanhamuerto.com|JNestor Project]]   * [[http://www.jnestor.supermanhamuerto.com|JNestor Project]]
 +  * [[cpp:index|C++]]
   * [[Java:index|Java]]   * [[Java:index|Java]]
   * [[python:index|Python]]   * [[python:index|Python]]
   * [[Linux:index|Linux]]   * [[Linux:index|Linux]]
   * [[RaspberryPi:index|Raspberry Pi]]   * [[RaspberryPi:index|Raspberry Pi]]
-  * [[Chip:index|C.H.I.P]] 
   * [[Windows:index|Windows]]   * [[Windows:index|Windows]]
   * [[Oracle:index|Oracle]]   * [[Oracle:index|Oracle]]
-  * [[ComputerParts|Computer Parts]] 
   * [[Mysql:index|Mysql]]   * [[Mysql:index|Mysql]]
   * [[gimp:index|GIMP]]   * [[gimp:index|GIMP]]
start.txt · Last modified: 2023/06/21 08:46 by rlunaro