Quantcast
Channel: BinaryTides » Coding
Browsing latest articles
Browse All 10 View Live

Disable output buffering on stdout in c

Like other languages output buffering takes place even in C. Output buffering will cause output of a program to appear in chunks after long intervals, instead of each line appearing the moment it is...

View Article



ICMP ping flood code using sockets in C – Linux

ICMP Ping Flood Icmp ping flood is a kind of DOS attack that can be performed on remote machines connected via a network. It involves sending a large number of ping echo requests (packets) to the...

View Article

ICMP ping flood code using sockets in C – Winsock

In a previous article on we saw how to construct raw icmp echo packets and send them out in large quantities to remote hosts in an attempt to bomb them. Now we are going to construct the same program...

View Article

Code a simple telnet client using sockets in python

The telnet client is a simple commandline utility that is used to connect to socket servers and exchange text messages. Here is an example of how to use telnet to connect to google.com and fetch the...

View Article

Python socket – chat server and client with code example

Socket based chat application In our previous article on we learned about the basics of creating a socket server and client in python. In this post we are going to write a very simple chat application...

View Article


Optimise your database design for speed and efficiency – Part 1

Database schemas Databases are present in almost all kinds of application that need to store information in some form or the other. Web applications like blogs, cms, social networking sites or business...

View Article

Php – Do not rely on set_time_limit too much

Php set_time_limit Php has a function called set_time_limit which can be used to dynamically adjust the maximum execution time permitted to a script. It allows specifying the time in seconds and limits...

View Article

Output buffering in php and apache

Output Buffering Output buffering is processing mechanism where the output being generated by a program is held in a place till its size reaches a limit or the generation is complete. Only after, will...

View Article


Code a simple socket server in Python

Python sockets In a previous tutorial we learnt how to do basic . The tutorial explained how to code a socket server and client in python using low level socket api. Check out that tutorial if you are...

View Article


How to compile and install wxWidgets on Ubuntu/Debian/Linux Mint

wxWidgets wxWidgets is an application development framework/library that allows developer to make cross platform GUI applications for Windows, Mac and Linux using the same codebase. Its primarily...

View Article
Browsing latest articles
Browse All 10 View Live




Latest Images