Hemanth Vishwakarmahemanthvk.hashnode.dev·Sep 28, 2023🚀 Top 10 Common CSS Mistakes: A Developer's guide 🎨Certainly! Let's go through some common CSS mistakes with examples: Incorrect Selectors: When you use multiple selectors for your element you must choose the right one to style your element accordingly. For example, say you have multiple buttons o...Discuss·6 likesCSS
Zainab Daoduzaycodes.hashnode.dev·Sep 15, 2023Style Guides in Technical WritingIntroduction Technical writing requires precision, clarity, and adherence to specific guidelines. Technical writers play an essential role as the bridge between complex information and its audience in various industries. One essential tool that aids ...Harlimat and 1 other are discussing this2 people are discussing thisDiscuss·2 likes·46 readsTechnical writing Informative! 5
Erich Buelowerichbuelow.com·Sep 13, 2023Imperative vs Functional ProgrammingImperative and functional programming are two different programming paradigms or styles of writing code. They represent different ways of thinking about and solving problems in programming. Here's a brief overview of each: Imperative Programming Imp...DiscussJavaScript
Ragavi S PforDocument360document360.hashnode.dev·Jul 11, 2023What is a Technical Writer Style Guide? With ExamplesTechnical writing style guides are designed to provide the necessary formatting styles to help technical writers create engaging and consistent content for readers. However, technical writing is quite different from regular freelance writing. The pur...DiscussTechnical writing
Alexis Abakasangaalexisabakasanga.hashnode.dev·Jun 6, 2023Day 19: Design Systems, Pattern Libraries, and Style GuidesVisual design, here we go! Today I learned about these three terms that share the common goal of making design efficient and productive. What is a system? This is a set of connected things or parts forming a complex whole. Design system? A comprehens...Discuss60daysUXchallenge
Dhanush Gowdadhanushks.hashnode.dev·Jun 6, 2023CSS CountersCSS Counters are an incredibly useful feature that allows web developers to create custom numbering systems and enhance the styling of lists and headings. In this blog post, we will dive into CSS counters, explore their capabilities, and provide prac...DiscussCSS
Gaddiel Ogunniyigaddiel.hashnode.dev·May 23, 2023Achieving Mastery: Fundamental Principles for Clarity and Effectiveness in Technical Writing.Technical writing necessitates careful consideration of several fundamental principles to ensure the production of documentation that is clear, concise, and effective. Here are some critical aspects to bear in mind: Understanding your audience: Famil...Discuss·5 likesTechnical writing
Rodrigo Vianaviana.hashnode.dev·May 16, 2023Guia do PEP 8: Convenções de Estilo de Código PythonVamos abordar agora um pouco sobre o PEP 8. Falarei resumidamente dos principais conceitos dessa convenção Introdução: Quando se trata de escrever código Python limpo, legível e consistente, seguir as diretrizes do PEP 8 é fundamental. O PEP 8 é um...Discuss·1 like·33 readsPython
Gulshangzamann.hashnode.dev·May 1, 2023Naming Conventions In JavascriptIntroduction Labels and names are everywhere. It is one of the ways for us to recognize something. And if the name is not enough, we would describe the thing and make it understandable for others. But imagine you have only a word to use for the ident...Discuss·4 likes·87 reads#namingconvention
Nikhil AkkiPronikhilakki.in·Apr 15, 2023Top 10 Python best practicesFollow PEP 8 style guide: PEP 8 is the official style guide for Python code. Following PEP 8 can make your code more readable and easier to maintain. # Good def calculate_area(radius): """ Calculates the area of a circle with given radius...Discuss·56 readsPython DevelopmentPython