Programmer

37 Articles 0 Followers


Created my first Website

22 May 2024 2 minute read 0 comments Jawad Ahmed Khan

Good Morning Family!   Greetings, everyone! Introduction   Good day, everyone! I hope you're all having a wonderful day. I'm having a nice time as well. I apologize for not visiting your posts lately. As I mentioned in my previous articles, I am bus...

Code WP: Revolutionize Your WordPress Site Creation with the Power of Artificial Intelligence

4 Mar 2024 6 minute read 0 comments Miguel M. Nunes

Introduction Imagine a world where you can create stunning WordPress websites without having to write a single line of code. A world where artificial intelligence (AI) becomes your partner, materializing your ideas with speed and ease. Well, that wor...

Coding Ruined My Life | 4chan stories

8 Jan 2024 1 minute read 0 comments Biz Wisdom

I won't write a whole life story here for those with tiny attention span but here's a summary: Go to college major in CS. I want to be a game designer bro. Learn a few years into my degree that coding is really hecking hard at the same time learn tha...

The best trick to let AI's write your codes

10 Sep 2023 2 minute read 0 comments Imad Eddine Aris

#development Introduction Hello, I'll be happy to give you an amazing tip to trick AI's such as chatgpt or Poe to give you complete codes of a project in any language. Sometimes you probably don't have any experience to start developing a project but...

Nexus Recap; Exchange listings and Further Updates!

7 Apr 2023 5 minute read 0 comments Nexus.io Blockchain

It's been quite a week. As you may have seen, Bittrex announced on Friday that they will no longer be servicing US customers. We're now focused on getting listed on other exchanges and speaking to a market maker tomorrow who can help us with that, i...

Optimising Java Performance: Understanding Thread Pools and Their Benefits

16 Mar 2023 5 minute read 0 comments Corey

One of the most effective, and efficient ways to implement multi-threading in Java is through the use of thread pools.   What are thread pools and how do they work? In simple terms, a thread pool is a group of pre-initialised threads that can...

What is Kivy?

11 Dec 2022 1 minute read 0 comments Sthappened

Kivy is an open-source Python framework used to create a cross-platform GUI (graphical user interface) apps. Why should you choose Kivy? Kivy has lots of different options, despite this, it is relatively simple. If you want to create an app with GUI...

Perl - Math

5 Sep 2022 3 minute read 0 comments lingy

One of the most important things in any programming language is its support for mathematical operations. With Perl it's no different: the language supports most of the mathematical operations you'll need in your academic and professional life, and I...

AWK: a precursor to RegEX

22 Aug 2022 4 minute read 4 comments lingy

The AWK language is a text processing language created for early versions of Unix. You can think of it as the grandfather of RegEx, as you could create simple scripts to search for text on the lines of files you wanted and then filter them. The firs...

"Hello World" in Perl

5 Jul 2022 2 minute read 2 comments lingy

As, in all programming languages, time to make a “Hello World” to consolidate our knowledge in the Perl language. Installing Perl First, we will need to install the Perl language. If you're using Linux or Mac OS X, don't worry, the Perl interpreter...