Programming

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


Pi Network: The Crypto Revolution We Were Promised—Now It’s Our Turn

2 Mar 2025 2 minute read 0 comments Crypto Guy

For years, we were told what crypto was supposed to be. 🔹 It was meant to be for everyone, not just early adopters or tech elites. 🔹 It was meant to be useful in the real world, not just a speculative asset. 🔹 It was meant to be fair and decentral...

"Front-end is the visible face of applications."

3 Oct 2024 1 minute read 0 comments 0xkenneth

         

Python 3.12 text to speech and make a sound

23 Sep 2024 1 minute read 0 comments Slash13

    Text_to_Speech_File   Text_to_speech_file  alternativ download Don't forget download and install of the librarys.

Python 3.12 Sound Synthesizer

22 Sep 2024 1 minute read 0 comments Slash13

  Bittorrent Soundsynthesizer   Dropbox Alternativer Downloadlink Python 3.12  You have to install:  pip install soundfile                                  pip install numpy   I hope you like making sounds with the programm.    

Accessing your BTC wallet in Python

21 Nov 2023 2 minute read 3 comments CryptoEnthusiast

A majority of the time if you want to access a BTC wallet you have to use apps or websites developed by others. Of course 9 times out of 10 these sites/apps are very reliable and trustworthy but there's always an inherent risk in using things where y...

If you can't sleep, just count sheep!!

8 Aug 2023 1 minute read 0 comments Lochard

DESCRIPTION: If you can't sleep, just count sheep!!   Task: Given a non-negative integer, 3 for example, return a string with a murmur: "1 sheep...2 sheep...3 sheep...". Input will always be valid, i.e. no negative integers. def count_sheep( n ):...

Codewars Kata - Opposite number

2 Aug 2023 1 minute read 0 comments Lochard

Very simple, given an integer or a floating-point number, find its opposite.   Examples: 1: -1 14: -14 -34: 34 def opposite(number): return -number

Print Hello World @ Dcoder

28 Jul 2023 1 minute read 0 comments Lochard

Problem: Alice recently discovered programming.Help Alice to code her first Program. Input:  Output: Hello World Constraints:  Sample Input:  Sample Output:  Hello World print ("Hello World")

Printing number using loop @ Dcoder

26 Jul 2023 1 minute read 0 comments Lochard

Problem: Ariel & Eric have a child, help them teaching him Counting from 1 to 10. Input:  Output: Output should be 1 to 10 separated with a new line character "\n" Constraints:  Sample Input:  Sample Output:  1 2 3 4 5 6 7 8 9 10 for i in range(1, 11...

Learning User Input with Natural Numbers @ Dcoder

25 Jul 2023 1 minute read 0 comments Lochard

Problem: The numbers 1,2,3.. are known as Natural numbers. Calculate the sum of all the natural numbers from 1 to N, where N will be the input. Input: A positive integer N Output: Output will be sum of numbers from 1 to N Constraints: 1