Programming

611 Articles 12 Followers


Solving python challenges - 1

14 Nov 2022 5 minute read 0 comments DrPsycho

Capital indexes Write a function named capital_indexes. The function takes a single parameter, which is a string. Your function should return a list of all the indexes in the string that have capital letters. For example, calling capital_indexes("...

[Bash] Returning from functions performatically

28 Sep 2022 1 minute read 0 comments rafaeldomi

So, once a while I posted some shell script tips. Now, let's see a little more, this time about functions and returning values. First, the basics Creating a function in bash is as simple like this: #!/bin/bash fnc_name() { echo "Inside the function...

C# (C Sharp) Essentials for Impatient Java Developers: The Basics

21 Sep 2022 7 minute read 0 comments Great White Snark

One of the problems that I have with a lot of books that purport to teach any given programming language is that they also try to teach programming concepts in the process. Once I've learned them the first time, I've learned them. I don't need to hav...

Graduating the Freshman @LearnWeb3DAO Course

20 Sep 2022 1 minute read 2 comments Hamminy

Completing the Freshman course in the Learn Web3 DAO was a personal breakthrough. I've wanted to be a coder for a long time, but I made excuses that I had to find the perfect time. I got some new energy somehow and just woke up one day like fuckit. T...

A story that never was

16 Sep 2022 4 minute read 0 comments Lochard

I though I would try to write a game. A vague background story came up in my mind as I travelled to where I am. Though if the game would be written is dubious now. I wrote about two events of the story today. Reminder: English is not my native langua...

What is Coding ?

8 Sep 2022 3 minute read 0 comments Aditya Madhok

When we ask about Coding to any non-tech guy or a complete beginner to a coding, he or she will define coding as something hard as engineering usually when it is not that thing. To Non-coders, you might be surprised, that it is as easiest than engi...

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...

PHP 8: Idiosyncrasies, Oddities, Obscurities and Updates (Part 1)

2 Sep 2022 4 minute read 0 comments Great White Snark

I originally intended to write this in three parts (beginner, intermediate and advanced). However, my notes are more extensive than I realised that they would be, so that's not going to happen. There will be substantially more than three parts, so as...

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...

A very basic base for a DHTML game (Advanture?)

21 Aug 2022 1 minute read 0 comments Lochard

Seeing someone said that she wants to make a game for her boyfriend birthday's on another website but seemed to be convinced that there won't be enough time to learn and code a simple game. Since I am also a beginner on coding, I was interested and c...