
Tildes
Jerboa for Lemmy
Reddit
Lemmy
Raddle
SaidIt.net
Aether
Lobsters
Python
JavaScript
Java
C++
Rust
Ruby
PHP
Elixir
Tildes
PythonPython might be a bit more popular than Tildes. We know about 299 links to it since March 2021 and only 244 links to Tildes. 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.
- https://tildes.net/~society/1ldg/proton_ceo_tweets_support_for_donald_trumps_department_of_justice_pick_and_the_us_republican_party. - Source: Hacker News / 12 days ago
I like https://tildes.net, reminds me of reddit back in the day where conversations were actually good. I'm not sure though if it also turned into AI slop. - Source: Hacker News / 5 months ago
Ladybird is in the process of switching over to Swift, and has been for a little over a year now. Not linking to the pedophilic nazi-site, and as Nitter is dead-ish, here is the full-text announcement archived on tildes: https://tildes.net/~comp/1j7m/ladybird_chooses_swift_as_its_successor_language_to_c. - Source: Hacker News / 6 months ago
To dial up the weirdness, sometimes the solar flare activity has spikes (https://www.spaceweatherlive.com/en/solar-activity/solar-flares.html) and these have a mild relationship with the odds of having "bitflips" in that timeframe. We had a "historic bad solarweather" a bunch of years ago and I talked with a cyber cafe operator that "you could have more computers bluescreen on this week than usual". To me it got... - Source: Hacker News / 7 months ago
I was curious too so I Googled it. The hits were just similar posts in HN comments and this one on Tildes says more (assuming it is the same person): https://tildes.net/~tech/1e5n/rss_users_how_do_you_use_organize_and_maximize_your_enjoyment_of_rss#comment-c0i4. - Source: Hacker News / about 1 year 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
Jerboa for Lemmy - Lemmy
JavaScript - Lightweight, interpreted, object-oriented language with first-class functions
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.
Java - A concurrent, class-based, object-oriented, language specifically designed to have as few implementation dependencies as possible
Lemmy - Federated link aggregator and Reddit alternative built with Rust
C++ - Has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation