P2P File Transfer With IPConnect

IPConnect is a Multi Threaded, Peer to Peer File Transfer Application. A Project I worked on summer 2016, Wrote Version 2 from scratch with better code base and SOLID Principles. IPConnect v2 includes better GUI made with Qt Quick, Download Manager, and also supports Encryption. API Documentation available, see README.

Macros In Rust Programming Language

Macros allow us to abstract at a syntactic level. A macro invocation is shorthand for an "expanded" syntactic form. In Rust we can use Pattern Matching to create a hard looking code but at the same very useful like vec! macro .

Go Real Time With AJAX

Ajax stands for Asynchronous JavaScript And XML. When we request a page we do it synchrously i.e. we have to wait for the response to proceed to the next step. But with it AJAX it is simple, communicate with the server and handle the response whenever request is completed in the mean time you can do your work.