Programming

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


Python show messagebox

4 Apr 2023 1 minute read 0 comments SlashReal

from tkinter.messagebox import showinfo  message = 'my message' showinfo(                title='my title'                 message = message               )

Split Screen Calculator (Style It Yourself)

22 Mar 2023 1 minute read 0 comments Lochard

You can try to use on my page's dev section. Source code including TypeScript code can be found in this repository. Instruction is on the README of the app folder. It is not styled. It is not thoroughly test. There are probably still bugs. There are...

TheWhatIfICouldProgramSeries: part 1

14 Aug 2022 1 minute read 0 comments excelencia

If I could program, I would make a spreadsheet with all my posts on PublishOx and let the program automatically adapt every change in Views, Earns and Likes/Dislikes. Photo by Arnold Francisca on Unsplash

One-liner JavaScript - Odd or Even

20 Jan 2022 1 minute read 0 comments k88.io

Welcome to a new series of JavaScript codes where I try to post a one-liner JavaScript function. This first code is a one-liner code for determining if a number is odd or even: const isEven = (num) => !Boolean(num % 2); const isOdd = (num) => Boolean...

Free Crypto Portfolio Tracker Update

17 Oct 2021 2 minute read 2 comments Michael_Brown

If you read my previous article then you will know I've decided to create a crypto portfolio tracker that I'm going to make freely available to all you nice people. This post is an update on my current progress and it will give you a better idea of h...

Free Crypto Portfolio Tracker

20 Sep 2021 2 minute read 6 comments Michael_Brown

Yes, I know, there are plenty of free, online crypto portfolio services you can access. So why am I bothering to make one? It's a fair question, so allow me to outline my reasoning below and hopefully, by the end of this short article, you'll see the...

Cardano Development: Marlowe Tips & Tricks

3 Sep 2021 1 minute read 0 comments Cryptotexty

Cardano Development: Marlowe Tips & Tricks with Tin a Haskell DEV | Hackathon Workshop   Learn some tips and tricks for working with Cardano Marlowe code from a Haskell developer who has been experimenting with building smart contracts on the Card...

OZC Smart Chain - The New Blockchain Uising O-PDoS Consensus Algorithm

22 Jul 2021 2 minute read 0 comments RalleCrypto

OZC Smart Chain - The New Developed Blockchain Using New Algorithm     What Is OZC Smart Chain? This is a new generation blockchain using the 0pen-Delegated Proof Of Stake consensus algorithm (O-DPoS) developed by the OZC-team. This consensus will cr...

Binance RSI Trading Bot

26 Jun 2021 1 minute read 0 comments Canadian Crypto Ltd

This is a simple yet effective approach to Day Trade any Cryptocurrency.   Using the RSI indicator (Relative strength index) we can determine whether we should buy or sell. ultimately our goal is to buy low sell high. depending on the day period we...

How good is the GreenGeeks affiliate program?

7 Jun 2021 4 minute read 0 comments PierreL

First of all, let's talk about GreenGeeks. If you've never heard of it, GreenGeeks is a US based eco-friendly web hosting provider. It provides an easy to use panel that will allow you to set up a website using your favorite CMS (Wordpress, Drupal, J...