Programming

Recommended Tags: Programming, Coding, Developer, Web Development. Just one is enough!


How to Fingerprint a Piece of Code

6 Dec 2022 2 minute read 0 comments TheJan

Code fingerprinting is the process of identifying the characteristics of a piece of code that are distinctive and can help to identify the code's author or origin. This is typically done by analyzing the code's structure, style, comments, and other c...

Download a File using libcurl in C++

5 Dec 2022 1 minute read 0 comments TheJan

It's super simple to download any accessible file from the internet when using libcurl. To download a file using curl in cpp, you can use the following code: Include the curl library in your cpp file using the "#include" directive. Initialize a c...

Web3 Development - Series Introduction

5 Dec 2022 1 minute read 0 comments santra

I've decided to try my hand at writing a series of tutorials/guides outlining the basics of software that interacts with web3. For those new to web3 and/or curious of its importance, I'd suggest starting with Ethereum's own What is Web3? article. Thi...

Interesting Github Projects & Tools - Episode 1

26 Nov 2022 2 minute read 0 comments Zeddicus

For me, GitHub has always held a certain feeling when browsing its vast nest of repositories. It is often the first place I will look when trying to find a piece of software, a scrap of code, or a starting point for an idea I've had. It is truly a re...

Coding career can be started at anytime during our career

24 Nov 2022 2 minute read 0 comments Bala

Sometimes I feel that I want to quit coding and start enjoying life. I can do that only if I have enough money to do it. Without financial independence, I will not be able to do something like that. This is when I get motivation from people who are p...

How to bypass CAPTCHA in python

24 Nov 2022 4 minute read 0 comments Dspyt

You may have already solved a number of captchas while filling out a form or registering for a website. The basic goal of Captcha is to determine whether the user is human or a bot. Captcha is an abbreviation for "Completely Automated Public Turing T...

The Hurrier I go, the Behinder I get, the Hurrier I go ...

22 Nov 2022 1 minute read 2 comments Great White Snark

Contrary to popular belief, Lewis Carol didn't actually write that quote, although it is often attributed to him, starting about fifty years after his death. What he did write has a similar meaning, though. The first known/recorded use is as a common...

Misusing the Image alt Attribute and Ignoring Accessible Rich Internet Application (ARIA) Attributes

18 Nov 2022 3 minute read 14 comments Great White Snark

Not all people are able/willing to view images or other graphical multimedia content in their Web browsers. For instance, I have a slow Internet connection at home and I've configured various plugins to block content from sites such as Daily Motion,...

Developers should always be open to learning

15 Nov 2022 2 minute read 0 comments Bala

Learning new trends and new technologies is always one of the key requirements to be a developer. We might be highly skilled developers but staying up to date with the technology is very important. The biggest reason is that there are always innovati...

Building mobile first applications

14 Nov 2022 2 minute read 0 comments Bala

Building mobile-first applications have become an important part of web development in today's world. The requirement of all the companies has now inclined towards building mobile-first applications. Recently my company also started moving towards bu...