Medium
Ghost
DEV.to
WordPress
Tumblr
Blogger
Hashnode
Write.as
Python
JavaScript
Java
C++
Rust
Ruby
PHP
Elixir
Medium
PythonMedium is recommended for avid readers seeking a variety of topics ranging from personal development to technology. It's also ideal for writers looking to publish their work to a broad audience and potentially earn revenue through the platform's Partner Program.
Based on our record, Medium seems to be a lot more popular than Python. While we know about 3082 links to Medium, we've tracked only 299 mentions of Python. 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.
The tests are in no way scientific. Do a little research and you will find some horrifying truths about what is presented. https://medium.com/@randomuser_11627/the-telepathy-tapes-is-a-scam-606f7e11963e https://jonogden.substack.com/p/lets-talk-about-the-telepathy-tapes https://sciencebasedmedicine.org/the-telepathy-tapes-more-fc-pseudoscience/. - Source: Hacker News / 1 day ago
Console vs PC is a red herring since UE games still stutter on consoles, people just notice that less because most games run at 30 fps anyway. You can read Unreal's own blog posts on this and they'll actually explain that this is mostly down to their material system (and game logic/scripts reaching into it) being designed to create nearly infinite shader variations on the fly in response to arbitrary world/game... - Source: Hacker News / 1 day ago
I'm no expert on haplogroups either, but cursory googling seems to indicate they are far more numerous and nuanced than the late victorian, scientific-racism derived classifications used today - i.e.: black, white, asian etc. But we don't need to be specialists in population genetics to observe that human cultures interbreed. We can't reliably correlate visible biomarkers with genetic origin, especially in... - Source: Hacker News / 2 days ago
I think it's intresting to read about the guy who made yolo, take a look at his website and later, his thoughts about the monster he may have created. https://medium.com/@graham.wallington/the-evolution-of-yolo-joseph-redmons-departure-and-the-ethics-of-computer-vision-66d9b75f0eca https://pjreddie.com/darknet/yolo/. - Source: Hacker News / 3 days ago
One hardly needs to soar to the exalted heights of "mysticism" or any sort of "ineffable qualities" to come into contact with the limitations of LLMs. 1) Models do not perform the functional equivalent of reasoning at all. When we reason, we don't simply babble out textual derivations of prior examples of "reasoning" to which we have been exposed, arrive at a conclusion, then occasionally state an altogether... - Source: Hacker News / 3 days 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
Ghost - Ghost is a fully open source, adaptable platform for building and running a modern online publication. We power blogs, magazines and journalists from Zappos to Sky News.
JavaScript - Lightweight, interpreted, object-oriented language with first-class functions
DEV.to - Where software engineers connect, build their resumes, and grow.
Java - A concurrent, class-based, object-oriented, language specifically designed to have as few implementation dependencies as possible
WordPress - WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time.
C++ - Has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation