Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).
La veille Haut de page Lendemain
https://xivslog.hashnode.dev/decryption-animation-in-javascript
So I just saw a video of hyperplexed creating an awesome Hacker effect. (codepen) and I thought how can I improve it. First thing, the animation only runs on mouse over, and it's good for hoverable elements, but to use this animation on a showcasing ...
https://ajayadsule.hashnode.dev/types-of-functions-in-javascript
Introduction Functions are like little helpers in your code. You can give them a name and tell them what to do, and then you can use them over and over again whenever you need that task done. Function statement/ declaration This is the standard metho...
https://ashcode98.com/day-1-of-100daysofcode
What I learned' I learned the following topics: Two-pointer Approach to solve array problem Solved 1 leetcode easy question 283.Move Zeroes Solve 1 codeforces question 1360B. Honest Coach Object literals, this keyword, instanceof operator, constr...
https://rutam.hashnode.dev/chat-with-your-data-langchains-document-loading
Have you ever wished you could engage in a conversation with all the information scattered across the internet in websites, PDFs, and videos' Imagine being able to ask questions and receive useful responses based on the all these sources. In this blo...
https://devlog.tublian.com/making-your-first-open-source-contribution-in-10-minutes-with-tublian
Contributing to open-source projects is essential, especially for new (emerging) developers. It showcases your skills to potential employers and gives you valuable real-world experience. While not inherently problematic, the process can be intimidati...
https://ashcode98.com/100daysofcode-challenge
Hey everyone! ' I'm Ashish, and I'm diving into the #100DaysOfCode challenge! '' For the next 100 days, I'm committing to spending at least an hour every day coding, learning new technologies, and improving my programming skills. ' Whether it's ta...
https://davender.hashnode.dev/day-77-alerting-with-grafana
Welcome back! Today, let's delve into the powerful world of Grafana Alerting. Whether you're managing a small project or a large-scale system, being notified of issues in real-time is crucial for maintaining smooth operations. Let's get started! Unde...
https://gamedevacademy.org/audiostreamrandomizer-in-godot-complete-guide/
Welcome to this exciting exploration of the AudioStreamRandomizer class in Godot 4. This powerful tool is an essential part of Godot’s audio engine, enabling you to add a touch of ... Read more
https://labnotes.org/weekend-reading-hurkle-durkle/
This week we play the songs of Vim, double performance every 2 years, draw a manual wheelchair properly, learn about the reality of a Silicon Valley Unicorn, discovery the uncanny history of AI, and change our toothbrushing routine.
10 / 49
https://shivamgoswami5123.hashnode.dev/javascript-interview-concepts
Implement Custom forEach in JS https://youtu.be/uYvT0-kwfNE'si=DsEV1NLNUCK0wguZ //Fresher Level Reply Array.prototype.customForEachOne=function(callback){ for(let i=0;i
https://gamedevacademy.org/aabb-in-godot-complete-guide-2/
In the exciting world of game development, understanding the key components is vital. One such component is the AABB (Axis-Aligned Bounding Box) class in Godot 4. As you embark on ... Read more
https://himanshuchauhan.hashnode.dev/day-37-object-oriented-programming-with-pythoncode-examples
Welcome to our journey into the world of object-oriented programming (OOP)! We'll explore theory and practical examples to help you understand OOP easily. In this blog post, we'll break down OOP concepts with clear code examples. We want to make lear...
https://www.lebigdata.fr/robot-h1-unitree
Le robot H1 d'Unitree ne cesse d'impressionner le monde du high-tech. Le record de vitesse était déjà un exploit. Mais … Cet article Vidéo : après le record de vitesse, ce robot chinois réalise un salto arrière a été publié sur LEBIGDATA.FR.
https://valliappan.in/introduction-to-javascript
JavaScript is a versatile and widely used programming language primarily used for building dynamic and interactive web applications. It is commonly associated with front-end web development but can also be used on the server-side with technologies li...
https://www.lebigdata.fr/deflagration-demographique-imminente-le-compte-a-rebours-est-lance
Une étude publiée dans The Lancet révèle que la majorité des pays connaîtront un déclin de leur population d'ici 2100. … Cet article Déflagration démographique imminente : Le compte à rebours est lancé a été publié sur LEBIGDATA.FR.
https://zguyun.hashnode.dev/15-javascript-tips-you-cant-afford-to-miss
After mastering how to write JavaScript code, the next step is advancing to practice '' how to truly solve problems. We need to refactor JS code to make it simpler and more readable because such programs are easier for team members to collaborate clo...
https://zguyun.hashnode.dev/10-lesser-known-javascript-tricks
In this article, I have outlined 10 great JavaScript tricks to help you make the most of its capabilities. Whether you're just starting to learn or already deep into practice, I believe you can learn something new from these. So, let's dive in now. 1...
https://devnation.joshisfitness.com/server-side-kotlin-20
union() function merge two collections into one. It is in the infix form a union b. Order of the operands is important. In the resulting collection, the elements of the first operand comes before the second: val numbers = setOf("one hundred", "two...
https://www.lebigdata.fr/cyberattaque-terroriste-lycees-francais
Les levées de doute se poursuivent après la cyberattaque terroriste contre des lycées français. Les autorités traquent les auteurs des … Cet article Cyberattaque et menaces de mort : Le lycée de votre enfant pris pour cible ' a été publié sur LEBIGDATA.FR.
20 / 49
https://rajamsr.hashnode.dev/big-numbers-no-worries-javascript-format-number-with-commas
If you are a web developer, you may have encountered the challenge of formatting numbers with commas in JavaScript. For example, you can display a large number, like 1000000 or 1,000,000, for better readability. Using the toLocaleString() method you ...
https://biswa-dev.hashnode.dev/day-0-of-learning-react
Today I learned about the file structure in a React JS project by jotting down the differences in creating a react app by using CRA & Vite. #Note: I have only refered to npm as the package manager To create a react app by CRA using npm: npm create-r...
Une rumeur persistante colporte que les cadres des grandes entreprises technologiques privent leurs enfants d'écrans. En réalité, ils font face aux mêmes questionnements et hésitations que tous les autres parents ! Faisons un petit état des lieux : La majorité des cadres de la tech envoient leurs enfants dans des lycées publics de la région, … Lire la suite Les patrons des entrepris [...]
https://shreyandas.hashnode.dev/171-leetcode-challenge-solution-problem-171
Final Solution def titleToNumber(self, columnTitle): """ :type columnTitle: str :rtype: int """ val = 0 alphabet = "!ABCDEFGHIJKLMNOPQRSTUVWXYZ" for i,letter in enumerate(columnTitle[::-1]): val += (26**i) * alp...
https://rafie.hashnode.dev/what-is-front-end-developer
Front-End Developer Definition Front-End Developer is a Developer who is responsible to create and building the 'look' or the UI(User Interface) and UX(User Experience) of a website. Front-End Developer Basic Skills Front-End Developer must have thes...
https://rafatrace.hashnode.dev/rendering-a-dynamic-amount-of-elements-in-react-native
Imagine this scenario: you're aiming to render a precise number of squares for crafting a pattern or generating some kind of chart. When the quantity is relatively small, you can easily render it like this: return ( ...
https://mypersonalblog.hashnode.dev/concept-of-dom-manipulation-using-java-script
DOM manipulation refers to the process of dynamically modifying the structure, content, or style of a web page using Javascript. The Document Object Model (DOM) is a programming interface that represents the HTML elements of a web page as objects, al...
C'est une 'saga sans fin' entre Google et l'Autorité de la concurrence. Le géant technologique est une nouvelle fois dans le viseur de l'antitrust, cette fois-ci pour ses pratiques concernant l'intelligence artificielle. Ce mercredi 20 mars, Google s'est vu infliger une amende de 250 millions d'euros par l'Autorité de la... The post Liens vagabonds : Google épinglé pour pillage de contenu d'à [...]
https://www.blogdumoderateur.com/comment-trouver-numero-imei-telephone/
Le numéro IMEI est un code unique attribué à chaque appareil mobile. Il permet aux opérateurs de bloquer votre smartphone en cas de perte ou de vol.
https://davidmarquis.hashnode.dev/fastparquet-a-guide-for-python-data-engineers
Recently I was on the path to hunt down a way to read and test parquet files to help one of the remote teams out. The Apache Parquet file format, known for its high compression ratio and speedy read/write operations, particularly for complex nested d...
30 / 49
https://www.meta-media.fr/2024/03/23/television-estonienne-un-virage-editorial-reussi.html
« Prendre le pouls d'un secteur qui se trouve à la croisée de la tradition et de l'innovation ». Il s'agit selon Pierre-Olivier Valet, rédacteur en chef de la RTS (Radio télévision suisse), de la clé pour dépoussiérer les JT des grands médias publics européens. Dans un rapport de l'Union... The post Télévision estonienne, un virage éditorial réussi ' first appeared on Méta-media | [...]
https://pizofreude.hashnode.dev/million-dollar-question-for-data-analysis
Common enemy for a business data analyst in addressing the issue of companies using expensive tools for the wrong reasons is crucial. This problem can lead to inefficient resource allocation, increased costs, and suboptimal decision-making. Strategic...
https://www.lebigdata.fr/parc-dbz-arabie-saoudite
Un parc à thème, où l'univers de DBZ est le centre des attentions. Oui, ce projet existe, et il sera … Cet article Le 1er parc DBZ ouvre en Arabie : Bulma en niqab'' Le pouvoir de l'argent a été publié sur LEBIGDATA.FR.
https://mayursinhdevblog.hashnode.dev/topic-7-understanding-custom-view-layout
Hello devs, Today we talked about Custom View Layouts in Android Kotlin. They let us create unique, visually stunning and super functional UIs that are tailored to our app's style. With Custom Views, we can reuse our favourite design elements across ...
https://adityag7678.hashnode.dev/basic-of-css
What Is CSS ' CSS stands for Cascading Style Sheet. CSS is used to design HTML tags. CSS is a widely used language on the web. HTML, CSS and JavaScript are used for web designing. It helps the web designers to apply style on HTML tags. Why use ...
https://aghattikar82.hashnode.dev/django-rest-framework
Django REST Framework Documents Contains- Introduction- What is API and Why do we use Django rest framework- Django rest framework setup- API view decorators- GET, POST, PUT method in API view decorators- Creating model- Writing serialisers- CRUD m...
https://aghattikar82.hashnode.dev/django-rest-framework-final-project
Django REST Framework : Final ProjectThis project demonstrates core functionalities learned about Django REST framework (DRF). https://www.linkedin.com/posts/aghattikar82_django-rest-framework-project-activity-7176797259756417024-jEYr'utm_source=sh...
https://aghattikar82.hashnode.dev/django-rest-framework-part-11
Django REST Framework Part 11 :Video Contains Summary of the course https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176593420625297409-p-pp'utm_source=share&utm_medium=member_desktop
https://aghattikar82.hashnode.dev/django-rest-framework-part-10
Django REST Framework Part 10 :Video Contains Token Authentication in DRFPermissions in DRF https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7176231042951864321-lksa'utm_source=share&utm_medium=member_desktop
https://aghattikar82.hashnode.dev/django-rest-framework-part-9
Django REST Framework Part 9 :Video ContainsAPIView class in DRFModelViewSet in DRF https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175868651642761217-e5xn'utm_source=share&utm_medium=member_desktop
40 / 49
https://aghattikar82.hashnode.dev/django-rest-framework-part-8
Django REST Framework Part 8 :Video ContainsValidation in serializersSerializing foreign key in Django rest framework https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175506262887997440-DD0J'utm_source=share&utm_...
https://aghattikar82.hashnode.dev/django-rest-framework-part-7
Django REST Framework Part 7 :Video ContainsCRUD method using serializers https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7175143854579331072-CRWs'utm_source=share&utm_medium=member_desktop
https://aghattikar82.hashnode.dev/django-rest-framework-part-6
Django REST Framework Part 6 :Video Contains Writing serialisers https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174600261917683712-IVBh'utm_source=share&utm_medium=member_desktop
https://aghattikar82.hashnode.dev/django-rest-framework-part-5
Django REST Framework Part 5 :Video ContainsCreating model https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174419068408541184-ftPQ'utm_source=share&utm_medium=member_desktop
https://aghattikar82.hashnode.dev/django-rest-framework-part-4
Django REST Framework Part 4 :Video Contains API view decoratorsGET, POST, PUT method in API view decorators https://www.linkedin.com/posts/aghattikar82_djangorestframework-django-api-activity-7174056759345524737-AIc4'utm_source=share&utm_medium=...
https://madhusaini.netlify.app//how-to-use-and-write-express-middleware
Building a great Express app can feel complex, but what if there were helpers to manage tasks like security and data handling' Express middleware acts like those helpers, silently improving your app's flow. This blog will guide you through using and ...
https://nextstarterai.hashnode.dev/next-starter-ai-launched
Launch your SaaS in days, not weeks with Next Starter AI: Your all in one NextJs Typescript Boilerplate kit with Stripe/Lemon Squeezy payment integration along with the best marketing/SEO toolkit; SaaS marketing made easy! https://nextstarter.ai What...
https://adityarajhblog.hashnode.dev/learning-javascript-day-2
Yesterday while trying to make Prettier work on my machine, I ran into an error: npm ERR! code ENOENT I tried to make Prettier my default formatter, added a .settings file where I made Prettier my default formatter, nothing worked(cause I was going ...
https://decpk.hashnode.dev/optional-chaining-in-depth
TLDR; If you try to access a property that doesn't exist or is undefined or null then optional chaining short circuits and prevent us from run time errors. ' The optional chaining ('.) operator accesses an object's property or calls a function. If ...
La veille Haut de page Lendemain
Note : Webriche.fr est un agrégateur de flux RSS. C'est à dire un outil automatique qui regroupe l'accès à des informations, dont il n'est ni le rédacteur, ni l'éditeur.
Pour toutes questions, merci de contacter Richard Carlier.
Ceci est un site qui explore certains mécanismes du Web 2.0, histoire de jouer avec tout ça...
Oui, une sorte de mashup 2.0 appliqué à la veille informationnelle... Hum, rien de neuf ?
Expérimental, c'est un site collaboratif à usage d'une seule personne. Ou presque.