Skip to main content

Posts

Creating a file-based SWAP on your Beagleboard

On the Beagleboard you should expect to require a swap file given the limitation of how little RAM is available (between 256 MB and 512 MB). Some system programs like apt-get will only run properly when some swap space is present (due to 256 MB not being enough RAM). Some images (such as those from Linaro.org) do not come with a swap partition or any swap space allocated. Under Linux, swap space can be either a dedicated partition or a swap file. Both can be mounted as swap which the OS can access. Creating a Swapfile The following commands will create a 512MB file, limit access only to root, format it as swap and then make it available to the OS: sudo mkdir -p /var/cache/swap/ sudo dd if=/dev/zero of=/var/cache/swap/swapfile bs=1M count=512 sudo chmod 0600 /var/cache/swap/swapfile sudo mkswap /var/cache/swap/swapfile sudo swapon /var/cache/swap/swapfile To tell the OS to load this swapfile on each start up, edit the /etc/fstab file to include the following addi
Recent posts

Tcpdump Tutorial With Examples

Tcpdump is a common packet analyzer that runs under the command line. It allows the user to display TCP/IP and other packets being transmitted or received over a network to which the computer is attached.[3] Distributed under the BSD license,[4] tcpdump is free software. Tcpdump works on most Unix-like operating systems: Linux, Solaris, FreeBSD, DragonFly BSD, NetBSD, OpenBSD, OpenWrt, macOS, HP-UX 11i, and AIX. In those systems, tcpdump uses the libpcap library to capture packets. The port of tcpdump for Windows is called WinDump; it uses WinPcap, the Windows port of libpcap. I've read through a lot of how-to articles in the past. and this article "TCPDUMP Tutorial with Examples" is the most thorough, most intuitive articles that I've read.

Javascript slider examples

JavaScript is a scripting language for the web. Microsoft refers to their implementation of it as "JScript" but in terms of syntax it's pretty much the same. jQuery is JavaScript. It is a JavaScript library, so it operates on top of JavaScript. It cannot exist on its own, so you can't use one over the other. You can use just JavaScript or JavaScript and jQuery. In other words, jQuery is a software library, written in JavaScript, whose intention is to help JavaScript developers when writing code that is to be run in a web page. jQuery is designed to make many JavaScript development tasks much easier. Use jQuery when it will significantly reduce your development time, and you can afford the extra overhead of downloading the library. Personally my reasons of using jQuery/JavaSccript libraries are: Complex element selection Animation Event handling crossbrowser support easy element selection customizable plugins large support community very popular jQ

hreflang? what is it? where does it come from?

Hreflang tags are a technical solution for sites that have similar content in multiple languages. The owner of a multilingual site wants search engines to send people to the content in their own language. Say a user is Dutch and the page that ranks is English, but there’s also a Dutch version. You would want Google to show the Dutch page in the search results for that Dutch user. This is the kind of problem hreflang was designed to solve. And for the  Webmasters who serve several versions of their content in different languages or for users in different countries should use   hreflang annotations   to help Google show the right version in the search results for each user. In this article, " How to implement hreflang tags... ", the author has lay out the steps from begin to finish on the right ways of implementing hreflang tags for your multilingual and multinational web sites. In another article, " hreflang: the ultimate guide ", the author has outlined the

The most effective SEO tools for your website

Look no further, I have gathered a list of Search-Engine-Optimization (SEO) tools for anyone to maintain and monitoring your website traffic and performance. A very good list of SEO tools can be found in this SEO checker article https://smallseotools.com/website-seo-score-checker/ For a simple quick status check on your website, this SEO tool  will give you the insight information about your website. https://smallseotools.com/website-seo-score-checker/ Also, for performance checking, you should always enable gzip compression on your web server. To check if your web server is gzip enabled, CheckGZIPCompression tool is a great tool. Is your web site optimized for Chat APPs and social networks ? Most likely NOT ! RichLinkPreview is an awesome tool to validate your web site for Chat APPs and social networks.

Stream your IP web camera to YouTube Live

Ever wish to embed your IP camera's video stream on website?  By sending your IP camera’s video stream to YouTube and integrating the player into your website,  you can create a reliable 24/7 live view for an almost unlimited number of users. If streaming to YouTube is possible, depends on your camera’s capability to provide a H.264, MJPEG or MxPEG stream, and on the camera connection bandwidth. At least 1Mbit/s (upload) is recommended; but streaming with lower framerate and resolution will work. how-to article on setting up your IP webcam for a live streaming on Youtube https://webcam.io/blog/stream-to-youtube.html