Programming

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


Vue.js Framework

17 May 2021 1 minute read 0 comments ac05

                If you’ve been following JS framework market trends, you may know that the main contenders in the competition are React and Angular. But there is another JS framework that is growing rapidly, Vue.js. As per estimates, approx 15.2% of...

Personal rebranding: The last step

15 May 2021 4 minute read 0 comments PierreL

This is going to be the last instalment of the personal rebranding series. After deciding on a direction for my Twitter, Instagram, Youtube and Publish0x accounts, I needed to revamp my website. I decided to go with only 2 basic pages: a link tree an...

Using Daedalus as a Cardano Node for Minting Tokens

12 May 2021 1 minute read 0 comments Cryptotexty

Learn how to leverage Daedalus Wallet as a Cardano Node to mint tokens and any other cardano-cli. Episode made possible by Project Catalyst FUND3 (Cardano Decentralized Innovation Fund)   You can also get ADA MakerSpace LAB ACCESS PASS NFT (Price is...

Hydro Development Updates May 2021

11 May 2021 5 minute read 1 comment Project Hydro

Happy Tuesday Everyone! The pandemic has affected many Countries and activities around the world, and our team isn't left out. Either someone in our team or someone in their family/relatives are sick, we're hoping for their speedy recovery but block...

My experience building with Flutter and finally coming close to app completion.

11 May 2021 2 minute read 2 comments Unhedged

So, I've been working on this Flutter application in my free time as a side project with my girlfriend and her graphic designer friend. I went into this not knowing anything about Flutter or mobile app development and figured it would be a good learn...

Advantages of self-balancing BST over Hash Table

11 May 2021 1 minute read 1 comment ac05

  What is binary Search tree?BST is the node-based binary tree data structure. A binary tree is a tree that has almost 2 children. The Binary search tree differs from the Binary tree in the aspect that:- The left child of the node is always smaller...

Replacing Selectors with Closures in UIButton

10 May 2021 1 minute read 0 comments rizwanahmed

iOS 14.0 brings us many improvements and new APIs using which the developers can write efficient code. One such API is the closure based action API instead of the addTarget method in UIControls. Yes, you heard me right—no more usage of addTarget meth...

How to create time-locked functions using Builder and Solidity

10 May 2021 4 minute read 0 comments Cryptex Finance

I’ve been working at Cryptex for several months now building the contracts for the World’s First Total Cryptocurrency Market Capitalization Token, TCAP. Part of my job consists of making sure the code is secure for all of our users. One way of doing...

Indie Game Dev Log: 8/05/2021 (Procedurally Generated Planet Icon Nr. 1: 'Ringy Planet')

8 May 2021 1 minute read 0 comments Timanious

'Ringy Planet'Procedurally Generated Planet Icon 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 texture is fully procedurally generated with Unity ShaderGraph an...

Lambda Expressions- Reshaping Java Language

7 May 2021 1 minute read 2 comments ac05

Many features were added in java since its initial release. however, the two that stand out most in reshaping this language were generics and lambda expressions. The lambda expressions added two new capabilities:- It added new syntax element that in...