Categories
hard drive refurbish

Industrial PC, embedded computer repair

Many factories and industrial users, are still using 15 year old and 20 year old computers because they control expensive hardware that is not easily replaced. Or they have software that can not be ported to newer PCs and operating systems.

We specialize replacing hard disks (512MB, 1GB, 2GB, 4GB size) for which parts are no longer available in the market.

Our IT staff also has deep knowledge of MS-DOS, Windows 3.1, Windows 95, Windows 98 and Windows NT so that we can help you troubleshoot issues and install the operating system.

We can also find replacements for a broken power supply, even power supplies with non standard connectors.

We can also find replacement for a broken motherboard and broken graphic card, or when the exact replacement is not available we will provide compatible parts.

Please contact us with your support requirement and we will quickly provide the best solution based on your system specifications.

Categories
Uncategorized

Compress PNG

Yes, png image files can be compressed and make website load times shorter. I have been testing several online tools and https://tinypng.com/ had done a great job so far. Saved me almost 50% while keeping full transparency and good image quality.

This post is my way of thanking them for the service!

 

Categories
programming Useful

Bash Infinite Loop raspberry pi

We are using a raspberry pi (with raspbian) to run a video file in a loop at www.dokodemoterebi.com, but this should work with any linux version.

Creating an infinite loop is very simple the following code will do the trick:

while true; do omxplayer /home/pi/myvideo.mp4; done

If you want it to run at start up, edit /etc/init.d/rc.local and copy the code above at the end of rc.local

Now you only need to power the pi and the video will run in an endless loop, log in or any input from the user is not necessary. Be careful as you will be locked out if you do this. If you need to change something in the future you can plug the disk into another linux machine or use ssh.

Categories
Uncategorized

speech jammer application

Did you ever want to silent someone? Then this is your tool. After japanese researchers invented the speech jammer, it did not take long for the smartphone app to pop out.

It must be fun, but I am not sure the phone speakers are strong enough, probably you need bigger speakers for this to work.

 

 

Categories
programming

How to search and replace all wordpress posts using phpmyadmin

Today I had to replace an specific text that was repeated on many of our blog posts. Fortunately there is an easy way to search and replace everything automatically.

First open your blog database on phpmyadmin and select SQL tab

 

Copy the code bellow and replace the text between the quotes with the desired text to be searched and replaced.

UPDATE wp_posts SET post_content = REPLACE (post_content, "text to replace here", "new text here");

Press go and the task will be done automatically.