Computer Science and Programming
155K subscribers
492 photos
32 videos
37 files
786 links
Channel specialized for advanced topics of:
* Artificial intelligence,
* Machine Learning,
* Deep Learning,
* Computer Vision,
* Data Science
* Python

Admin: @otchebuch

Memes: @memes_programming

Ads: @Source_Ads,
https://telega.io/c/computer_science
Download Telegram
11 Free Must-Know Websites for Every Developer

TLDR Highlighting 11 essential websites and tools for developers, this post covers resources like Omatsuri for frontend development, HTMLRev for templates, Unicornicons for icons, UiVerse for UI elements, Undraw for illustrations, PatternPad for custom patterns, Shape Divider for stylish transitions, Photopea as a Photoshop alternative, QuickRef for cheat sheets, DevDocs for API documentation, and DevHints as a quick-reference assistant.


πŸ”— https://dev.to/kafeel_ahmad/11-free-must-know-websites-for-every-developer-22g6
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘20❀6
The Full-Stack Lie: How Chasing β€œEverything” Made Developers Worse at Their Jobs

Why the obsession with being a coding Swiss Army knife is sabotaging careers β€” and how to reclaim your superpower


πŸ”— https://medium.com/mr-plan-publication/the-full-stack-lie-how-chasing-everything-made-developers-worse-at-their-jobs-8b41331a4861
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘17
Everything you need to build state-of-the-art foundation models, end-to-end

Oumi is a fully open-source platform that streamlines the entire lifecycle of foundation models - from data preparation and training to evaluation and deployment. Whether you're developing on a laptop, launching large scale experiments on a cluster, or deploying models in production, Oumi provides the tools and workflows you need.


πŸ’» https://github.com/oumi-ai/oumi
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯11πŸ‘8❀4πŸ—Ώ1
Frontend Developer Roadmap 2025: The Complete Guide

TLDR This guide provides a comprehensive roadmap for aspiring frontend developers in 2025, covering essential skills such as understanding web basics, setting up a coding workspace, HTML, CSS, JavaScript, version control with Git and GitHub, and learning popular frameworks like React. It also includes bonus skills like advanced JavaScript techniques, TypeScript, automated testing, and hosting options, all designed to help developers stand out.


πŸ”— https://levelup.gitconnected.com/frontend-developer-roadmap-2025-the-complete-guide-b209a9c3a22b
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘16πŸ”₯6❀2
Forwarded from programming memes
😁41πŸ‘Ž12πŸ‘6❀5
JavaScript Shallow Copy vs Deep Copy: Examples and Best Practices

TLDR Creating copies of objects and arrays in JavaScript can be challenging, as developers need to choose between shallow copies and deep copies. Shallow copies duplicate only top-level properties and share references for nested objects, whereas deep copies create entirely independent duplicates of all properties. Shallow copies are faster and suitable for flat structures, while deep copies are necessary for complex or nested objects. Understanding these differences is key to avoiding unintended side effects and performance issues in your code.


πŸ”— https://dev.to/hkp22/javascript-shallow-copy-vs-deep-copy-examples-and-best-practices-3k0a
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘21❀1😁1
What is CI/CD Pipeline?

TLDR Delivering quality software swiftly is essential in modern development. Continuous Integration and Continuous Delivery (CI/CD) pipelines help teams integrate code frequently and deploy it automatically, preventing integration issues and ensuring a reliable release cycle. Key stages in a CI/CD pipeline include source, build, test, and deploy. Popular CI/CD tools include GitHub Actions, Jenkins, TeamCity, CircleCI, and Azure DevOps. Optimizing your CI/CD pipeline involves identifying bottlenecks, streamlining builds, improving test efficiency, and leveraging caching. Choosing the right CI/CD platform depends on factors such as cloud-based versus self-hosted options, user-friendliness, and integration capabilities.


πŸ”— https://newsletter.techworld-with-milan.com/p/what-is-cicd-pipeline
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘14❀10
Why I abandoned IDEs

TLDR The author discusses their journey from using traditional Integrated Development Environments (IDEs) to adopting lightweight text editors such as NeoVIM and Helix. They highlight the efficiency, lack of distractions, and the closer connection to code that these terminal-based editors offer compared to modern feature-rich IDEs. They conclude by emphasizing the importance of reducing 'noise' between the developer and the code, allowing for better mental representation and continuous code improvement.


πŸ”— https://medium.com/codex/why-ive-abandoned-ides-8967d12ecde7
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘12❀7πŸ‘Ž1
Join our memes channel ⬇️

https://t.me/memes_programming
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘5
Wave Terminal

TLDR Wave Terminal is an open-source, cross-platform terminal that allows users to render anything inline, save sessions and history, and edit code on local or remote machines. It also provides features such as viewing Markdown, CSV, and JSON inline, image preview, workspaces, persistent sessions, and universal history. Wave Terminal is designed for extensibility and is open-source.


πŸ”— https://www.waveterm.dev/
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘22❀1
When Job Hopping Doesn't Make Sense

TLDR While job hopping is often seen as a fast track to higher pay and promotions early in a career, it may hinder growth at senior levels. At Staff+ positions, influence and credibility built within a company are key to advancement. Switching companies frequently resets these, slowing progress. Calculated career moves are essential later in your career to maintain momentum and minimize risk.


πŸ”— https://www.developing.dev/p/when-job-hopping-doesnt-make-sense
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘16πŸ‘¨β€πŸ’»4😁3πŸ‘Ž2
Excalidraw - an open source virtual hand-drawn style whiteboard. Collaborative and end-to-end encrypted.

πŸ’» https://github.com/excalidraw/excalidraw
Please open Telegram to view this post
VIEW IN TELEGRAM
❀25πŸ”₯7πŸ‘4πŸ—Ώ4
JavaScript Temporal is coming

TLDR JavaScript Temporal is being introduced to simplify and modernize date and time handling in web development. It overcomes the limitations of the existing Date object by supporting time zones, reliable parsing, and various calendar systems. Temporal provides numerous methods for conversions, comparisons, computations, and formatting. Experimental implementations are appearing in some browsers, with detailed documentation available on MDN.


πŸ”— https://developer.mozilla.org/en-US/blog/javascript-temporal-is-coming
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘17❀9
solidtime - The modern Open-Source Time Tracker

πŸ’» https://github.com/solidtime-io/solidtime
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯13πŸ‘10❀4
Stop rendering conditions like this

TLDR The post discusses a more efficient way to handle conditional rendering in React applications. Instead of using multiple if-else blocks or ternary operators, it suggests grouping user actions into an object and rendering based on the object's keys. This method is easier to read, debug, and update while reducing the overall code. It also covers handling undefined user types with a default key and using the null coalescing operator to ensure correct rendering.


πŸ”— https://dev.to/abdoseadaa/stop-rendering-conditions-like-this-imo
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘8πŸ—Ώ5❀2
What's New With Java 24

TLDR Java 24, a short-term JDK release scheduled for March 2025, will introduce 24 new features, including experimental, incubator, preview, and permanent JEPs. Key highlights include the Generational Shenendoah garbage collector and compact object headers. Java 24 will be replaced by long-term support Java 25 in September 2025.


πŸ”— https://www.jrebel.com/blog/whats-new-java-24
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘16πŸ‘Ž5❀1
Clean Architecture on Frontend

TLDR The Clean Architecture is a way of separating responsibilities and parts of functionality according to their proximity to the application domain. It is often referred to as a three-layer architecture, because the functionality in it is divided into layers. In this post we'll talk about what the clean architecture is in general and get familiar with such concepts as domain, use case and application layers. Then we'll discuss how this applies to the frontend and whether it's worth it at all.


πŸ”— https://dev.to/bespoyasov/clean-architecture-on-frontend-4311
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘15❀7
Tech, code, and endless laughs! πŸ˜‚

Join for the best programming memes and dev humor. Because coding should be fun!

@memes_programming
😁52πŸ‘20❀4
Modern Web App Design Patterns

TLDR Design patterns are descriptive, not prescriptive. They can guide you when facing a problem other developers have encountered many times before. They are not a blunt tool for jamming into every scenario. Patterns.dev aims to be a catalog of patterns (for increasing awareness) rather than a checklist (what you must do)


πŸ”— https://www.patterns.dev/
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘12❀7πŸ”₯2
Are LLMs making StackOverflow irrelevant?

TLDR The volume of questions on StackOverflow has significantly declined since the release of ChatGPT in November 2022. This trend, which began before the pandemic, highlights how LLMs (large language models) provide quicker and more effective solutions for developers. Criticism of StackOverflow's moderation policies has also contributed to the downturn. The decrease in questions may lead to outdated content and a vicious cycle of reduced search engine traffic. StackOverflow's situation underscores the disruptive impact of GenAI on stable businesses. The future of coding Q&A data for LLMs remains uncertain.


πŸ”— https://blog.pragmaticengineer.com/are-llms-making-stackoverflow-irrelevant
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘23❀8πŸ‘¨β€πŸ’»7😁2