WhatsApp, Facebook e Instagram vuelven a fallar a nivel mundial

Las redes sociales presentan problemas de carga en varios países desde las 14:00 (hora de Argentina).

Las populares redes sociales Whatsapp, Facebook e Instagram, todas ellas propiedad de Facebook, han vuelto a fallar y presentan problemas de carga a nivel mundial, según reportan los usuarios de Downdetector.

Read more

Postgres: file -> Bytea

Antes que nada, creamos una tabla en la Base de datos:

 

prueba=# create table archivo (Id serial, Nombre varchar(20), Tipo varchar(20), Contenido bytea, primary key (Id));

Luego hay que crear un formulario sencillo HTML:

 <form action="dato_image.php" method="post" enctype="multipart/form-data">
        <table>
           <tr> <td>
               <label for="archivo">Busque El archivo</label> </td>
               <td>
               <input type="file" name="archivo" size="20"> </td></tr>
            <tr><td>
                <input type="submit" value="cargar archivo"></td></tr></table>    </form>

Read more

Owncloud 10 fixing warnings

No memory cache has been configured This issue can take a bit more time and decision making based on what memory cache you use. It is all well documented here. In my case I went with the recommended APCu solution. First I installed APCu with sudo apt-get install php-apcu Then you should restart your web … Read more

some resources

https://www.w3schools.com/CSSref/tryit.asp?filename=trycss_overflow https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_iframe_scrolling —————–Fonts——————————– https://fonts.google.com/specimen/Iceland?selection.family=Iceland https://fonts.google.com/specimen/Graduate —————tracker—————————- https://hackernoon.com/build-a-cryptocurrency-price-tracker-in-5-minutes-d66c3d37ad71 —————–Theme xfce———————- https://www.xfce-look.org/p/1240075/ Facebook0Twitter0Reddit0Linkedin0Stumbleupon0 X

Using pyinotify to Monitor a Website and send alarms

Hello there now i will teach you how to monitor a website files to track and react to any type of events like a MOD or a DELETE or WRITE event in those files you can expand  the python code to make it better for example you can create a routine that writes the log into a file this way the tutorial wont require stdbuf for sending output to the log anyways here we go hope it helps you:

Read more