🔥 Burn Fat Fast. Discover How! 💪

SeasonedDev

Logo of telegram channel seasoneddev — SeasonedDev S
Logo of telegram channel seasoneddev — SeasonedDev
Channel address: @seasoneddev
Categories: Technologies
Language: English
Subscribers: 314
Description from channel

Fullstack, Web, Frontend, JavaScript, React, Software, Architecture, SQL, Books, Mentoring, Interview, Jobs
Chat: @webdev_en
Created by: @wojiaomakeximu

Ratings & Reviews

3.33

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

1

3 stars

0

2 stars

0

1 stars

1


The latest Messages 2

2021-10-14 04:01:00
Here is a solution for the #challenge above
322 views01:01
Open / Comment
2021-10-14 01:15:00 #challenge

Is the Number Symmetrical? | #easy

Create a function that takes a number as an argument and returns true or false depending on whether the number is symmetrical or not. A number is symmetrical when it is the same as its reverse.

Examples:

isSymmetrical(7227) ➞ true
isSymmetrical(12567) ➞ false
isSymmetrical(44444444) ➞ true
isSymmetrical(9939) ➞ false
isSymmetrical(1112111) ➞ true

For your convenience: jsfiddle | codepen.

Leave your solutions in the comments. The solution will be posted below in a couple of hours

#interview
272 views22:15
Open / Comment
2021-10-13 01:11:00
Format the output of json.stringify | #tip

The spacer is the third argument to JSON.stringify.

You can pass a String or a Number that is used to insert white space into the output.

If you pass a Number, it will indicate the number of space characters to use.

If you pass a String, it will use it as the “space” character.

#javascript

Creds to @SimonHoiberg
246 views22:11
Open / Comment
2021-10-12 21:56:11
#sale

Designing Data-Intensive Applications

Amazon: 4.8 / Goodreads: 4.7

Data is at the center of many challenges in system design today. Difficult issues need to be figured out, such as scalability, consistency, reliability, efficiency, and maintainability. In addition, we have an overwhelming variety of tools, including relational databases, NoSQL datastores, stream or batch processors, and message brokers. What are the right choices for your application? How do you make sense of all these buzzwords?

In this practical and comprehensive guide, author Martin Kleppmann helps you navigate this diverse landscape by examining the pros and cons of various technologies for processing and storing data.

Software keeps changing, but the fundamental principles remain the same. With this book, software engineers and architects will learn how to apply those ideas in practice, and how to make full use of data in modern applications.

Buy at Amazon: $13.49 (-78% off from $59.99)

#book
223 views18:56
Open / Comment
2021-10-07 04:01:00
Here is a solution for the #challenge above
302 views01:01
Open / Comment
2021-10-07 01:15:00 #challenge

Find the Smallest and Biggest Numbers | #easy

Create a function that takes an array of numbers and return both the minimum and maximum numbers, in that order.

Examples:

minMax([1, 2, 3, 4, 5]) ➞ [1, 5]
minMax([2334454, 5]) ➞ [5, 2334454]
minMax([1]) ➞ [1, 1]

For your convenience: jsfiddle | codepen.

Leave your solutions in the comments. The solution will be posted below in a couple of hours

#interview
266 views22:15
Open / Comment
2021-10-06 01:18:00
Skip elements with Array Destructuring | #tip

You can use an empty 'placeholder' comma to skip elements when destructuring arrays.

If you want to access the second or third element from a list, or want to skip the first or second element (etc), this is a great and clean way to do it.

#javascript
263 views22:18
Open / Comment
2021-10-02 01:11:00
Happy Weekend y'all!
340 views22:11
Open / Comment
2021-10-01 00:58:00 ​​ Prototyping is a learning experience

Its value lies not in the code produced, but in the lessons learned.

You can prototype anything that carries risk, unproven, is absolutely critical to the final system. It can be:

Architecture

New functionality in an existing system

External data structure

Third-party tools or components

Performance issues

User interface design

When building prototypes you should focus on specific aspects. These are the details you can ignore:

Correctness - use dummy data where appropriate

Completeness - isolate the concept you're proving

Robustness - be specific, error checking may be excessive

Style - after all, you're going to throw the prototype away anyway

Properly used prototypes can save you huge amounts of time, money, and pain by identifying potential problems early in the development cycle - the time when fixing mistakes is both cheap and easy.

#pragmatic
304 views21:58
Open / Comment
2021-09-30 04:01:00
Here is a solution for the #challenge above
270 views01:01
Open / Comment