Programming

611 Articles 12 Followers


Weekly Development Updates for D.Buzz - Today : v3.16.0 up on D.Buzz

15 Jun 2021 2 minute read 0 comments DBuzz

Weekly Development Updates for D.Buzz - Today : v3.16.0 up on D.Buzz Hello fans and friends of D.Buzz! We are pleased to say that this week we published Version: v3.16.0 to the main D.Buzz platform. What does this mean for you? It means that you c...

Coding during interviews

14 Jun 2021 1 minute read 1 comment baohx2000

I understand the hatred towards coding tests during interviews, but I can't say that I would ever not do them. There are too many "framework developers" out there who do not understand the basics and it is way faster to do a relatively simple exercis...

Weekly Development Updates for D.Buzz - Today : URL MAGIC and Counters!

8 Jun 2021 2 minute read 0 comments DBuzz

Weekly Development Updates for D.Buzz - Today : URL MAGIC and Counters! Hello fans and friends of D.Buzz! This week, we’ve made a lot of updates to the site. These include a few new features, but also we worked towards increase the functionality o...

[Ultimate Guide] How to create wordpress plugin and upload to wordpress.org | Creating wordpress plugin | Part - 1

5 Jun 2021 5 minute read 0 comments Mr. Smart

What is WordPress? At its core, WordPress is the simplest, most popular way to create your own website or blog. In simple terms, it is a CMS (Content Management System) which is licensed under GPLv2, which means that anyone can use or modify WordPres...

So you want to be a “Web Developer”

4 Jun 2021 2 minute read 2 comments baohx2000

This started as a reply to a post on reddit r/phphelp. I’ll likely add to it as I find new things or think of bits and pieces to add. Do not think you have to be a “full stack” developer. Unless you dedicate many years, you will be a jack of all trad...

Weekly Development Updates for D.Buzz - Today : More Embeds and ease-of-use updates

1 Jun 2021 2 minute read 0 comments DBuzz

Weekly Development Updates for D.Buzz - Today : More Embeds and ease-of-use updates Hello fans and friends of D.Buzz! It's that time of the week again when we talk about new developments to the D.Buzzplatform. This week we have a bunch of updates,...

Weekly Development Updates for D.Buzz - Today : Basic Wallet and Mobile Version Blog!

25 May 2021 3 minute read 0 comments DBuzz

Weekly Development Updates for D.Buzz - Today : Basic Wallet and Mobile Version Blog! Hello fans and friends of D.Buzz! We're excited to bring you our weekly update! In the last week, we've made a lot of progress on a variety of fronts. We've made...

Indie Game Dev Log: 25/05/2021 (Procedurally Generated Planet Icon Nr. 2: 'Icey-Ringy Planet')

25 May 2021 1 minute read 0 comments Timanious

    'Icey-Ringy Planet'Procedurally Generated Planet Icon 2   This is one of the results of a couple of procedural planet texture generation shaders that I'm currently working on for my game.This time I improved the math behind the planets rings bec...

Common problems and workarounds while building apps using Apple Silicon

24 May 2021 5 minute read 0 comments rizwanahmed

Apple’s new Apple Silicon (M1 processor) is a beast. The apps open pretty quickly, and the slow Xcode build times are a thing of the past. But what does it have in store for the iOS/macOS developers? When you try to run your existing projects on Appl...

Swap keys and values of a Dictionary in Swift

24 May 2021 1 minute read 0 comments rizwanahmed

Dictionaries are one of the most commonly used data structures. Dictionaries come with keys and values where the keys are unique. Sometimes, there might be a situation where we would want to swap the keys and values of a dictionary. Let’s see how to...