
Reddit Enhancement Suite
Reddit
Jerboa for Lemmy
Hacker News
Tildes
Lemmy
Dark Reader
teddit
Python
JavaScript
Java
C++
Rust
Ruby
PHP
Elixir
Reddit Enhancement Suite
PythonBased on our record, Reddit Enhancement Suite should be more popular than Python. It has been mentiond 1304 times since March 2021. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
It seems to be OK for me, but I am using https://redditenhancementsuite.com/ So many that makes a difference. I think it forces the old interface. Like my URL isn't even old.reddit, but all I see is the old interface. Or maybe I don't use subs with newer posts types that are not compatible with old? - Source: Hacker News / over 1 year ago
> you don't need any keys for trust, you can imagine a centralized system ... I guess part of the essence of what I was trying to describe was that it's non-centralized. Otherwise, you have to trust some entity to unilaterally behave well, now and forever. But fair point; something like this could be implemented in someone else's walled garden. I wouldn't trust it though :p Since you mentioned JS... - Source: Hacker News / over 1 year ago
Reddit Enhancement Suite for Old Reddit on desktop. I dunno about mobile though since Apollo died. Source: over 2 years ago
Have you tried old reddit with the RES extension? I'm not a fan of the way comments appear without the extension, but the extension boosts readability significantly. I can't stand reddit's design without it. Source: over 2 years ago
It's a giant step backwards in site design. Discuit wastes an incredible amount of screen space in making the site look pretty. Scroll down a bit and you'll see that more than half of your screen is empty and there is very little submissions displayed. Look at https://old.reddit.com/ and see the difference between the two. (Or add Reddit Enhancement Suite https://redditenhancementsuite.com/ for an even better... Source: over 2 years ago
137Foundry provides legacy modernization services that include dependency mapping as a foundational assessment phase. Prettier and ESLint are useful companion tools for enforcing code style consistency as the refactoring proceeds. Node.js and Python.org official documentation are authoritative references for understanding the import and module systems of those runtimes. - Source: dev.to / 2 months ago
For Python codebases, tools like Python's built-in ast module and import analysis scripts can generate call graphs. For JavaScript, ESLint and module analysis tools serve a similar purpose. GitHub advanced search can help you find all internal references to a specific function across a large repository. - Source: dev.to / 2 months ago
Import asyncio Import aiohttp From bs4 import BeautifulSoup Async def scrape_and_parse(url: str, session: aiohttp.ClientSession) -> dict: async with session.get(url) as response: html = await response.text() # BeautifulSoup parsing happens after the await โ no issue soup = BeautifulSoup(html, "html.parser") return { "url": url, "title": soup.title.string if soup.title... - Source: dev.to / 3 months ago
**_Beginner mistake to avoid_** - Writing SQL only inside DBeaver - Always save SQL files in VS Code and commit them **Using PostgreSQL with Python** _**What Python does here**_ Python talks to PostgreSQL and says: - โSave this dataโ - โGet this dataโ - PostgreSQL listens. Python works. _**Step 1: Install Python **_ - Download from https://python.org - During install, check Add Python to PATH Screenshot... - Source: dev.to / 6 months ago
Import time Import requests Import asyncio Import aiohttp Urls = [ 'https://example.com', 'https://httpbin.org/get', 'https://python.org' ] # Synchronous version Def sync_fetch(): for url in urls: response = requests.get(url) print(f"{url} fetched with {len(response.text)} characters") # Async version Async def async_fetch(): async with aiohttp.ClientSession() as session: ... - Source: dev.to / 9 months ago
Reddit - Reddit gives you the best of the internet in one place. Get a constantly updating feed of breaking news, fun stories, pics, memes, and videos just for you.
JavaScript - Lightweight, interpreted, object-oriented language with first-class functions
Jerboa for Lemmy - Lemmy
Java - A concurrent, class-based, object-oriented, language specifically designed to have as few implementation dependencies as possible
Hacker News - Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by Paul Graham's investment fund and startup incubator, Y Combinator.
C++ - Has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation