Filter
Exclude
Time range
-
Near
localStorage size is measurable but often underestimated. 5-10MB varies by browser. If you're storing large objects, you're going to hit the wall. Use IndexedDB. #Frontend #WebAPIs
8
Check which WebAPIs are available on your device with webapicheck.com, a tool built with Vue by @toniengelhardt! ✅❌ - madewithvuejs.com/webapi-che…
1
3
416
The CSS Custom Highlight API lets you highlight search results — Without affecting the DOM structure. ::highlight(search-results) { background-color: #ff0066; color: white; } #CSS #WebAPIs
9
71
856
44,373
An enlightening talk by @ElianCodes on the hidden capabilities of the web. #webHID #webMIDI #JavaScript #WebAPIs gitnation.com/contents/shapi…
1
3
281
Java_2026_Modern_Roadmap ├── /00_Fundamentals │ ├── /Core_Java │ │ ├── java_syntax_and_basics │ │ ├── oops_concepts │ │ ├── collections_framework │ │ └── generics_and_annotations │ └── /Development_Tools │ ├── jdk_and_jre │ ├── maven_or_gradle │ └── git_and_cli_tools │ ├── /01_Modern_Java_Features │ ├── /Java_17_LTS_and_Beyond │ │ ├── pattern_matching │ │ ├── sealed_classes │ │ └── records │ ├── /Concurrency_and_Parallelism │ │ ├── java_threads_and_executors │ │ └── virtual_threads_project_loom │ └── /Functional_Style │ ├── lambda_expressions │ ├── streams_api │ └── optional_and_enhanced_null_handling/ │ ├── /02_Databases │ ├── /Relational │ │ ├── jdbc_fundamentals │ │ ├── postgresql_mysql │ │ └── jpa_and_hibernate │ ├── /NoSQL │ │ ├── mongodb_with_java_drivers │ │ └── redis_for_caching │ └── /Query_Optimization_and_Indexing │ ├── /03_Backend_Web_Development │ ├── /Spring_Ecosystem │ │ ├── spring_core │ │ ├── spring_boot │ │ └── spring_data_jpa │ ├── /WebAPIs │ │ ├── rest_api_design │ │ └── openapi_and_swagger │ ├── /Reactive_Java │ │ ├── spring_webflux │ │ └── reactor_core │ └── /Security │ ├── spring_security │ └── oauth2_jwt_authentication │ ├── /04_Frontend_for_Java_Developers │ ├── /Web_UX_Basics │ │ ├── html_css_js_basics │ │ └── responsive_design_principles │ ├── /Modern_JS_Frameworks │ │ ├── react_or_vue │ │ └── typescript_for_stronger_typing │ ├── /Java_Frontend_Integrations │ │ ├── thymeleaf │ │ └── spring_mvc_templates │ └── /Consume_Java_APIs │ ├── fetch_graphql_requests │ └── manage_auth_tokens │ ├── /05_Cloud_Native_and_Deployment │ ├── /Containers │ │ ├── docker_for_java_apps │ │ └── docker_compose │ ├── /Orchestration │ │ ├── kubernetes_basics │ │ └── helm_charts │ ├── /Cloud_Providers │ │ ├── aws_ecs_eks_lambda │ │ ├── google_cloud_run │ │ └── azure_app_services │ └── /CI_CD │ ├── github_actions │ └── automated_tests_and_builds │ ├── /06_Reactive_Systems_and_Messaging │ ├── /Reactive_Architecture │ │ ├── backpressure_strategies │ │ └── event_driven_patterns │ ├── /Message_Brokers │ │ ├── apache_kafka │ │ └── rabbitmq │ └── /Async_Processing │ ├── /07_AI_and_LLM_Integration │ ├── /AI_Principles_for_Java │ │ ├── ml_basics_and_models │ │ └── java_ml_libraries_overview │ ├── /LLM_Integration │ │ ├── calling_llm_apis_from_java │ │ ├── generative_use_cases_in_services │ │ └── retrieval_augmented_generation │ └── /Vector_Search │ ├── integration_with_vector_db │ └── semantic_search_in_apps │ ├── /08_Scaling_and_System_Design │ ├── /Design_Principles │ │ ├── scalability_and_latency │ │ ├── consistency_and_availability │ │ └── fault_tolerance │ ├── /Architecture_Styles │ ├── /API_Gateways_and_Rate_Limiting │ └── /Caching_and_CDNs │ ├── /09_Testing_and_Quality_Assurance │ ├── /Unit_Testing │ ├── /Integration_Testing │ ├── /E2E_Testing │ └── /Contract_Testing │ ├── /10_Practical_Projects │ ├── /Microservices_ECommerce_Platform │ ├── /RealTime_Collaboration_Tool │ ├── /Cloud_Native_Inventory_System │ ├── /AI_Assistant_for_Enterprise_Data │ └── /Portfolio_Showcase For deep Java learning and mastery in 2026, check out this eBook: codewithdhanian.gumroad.com/…
14
56
258
21,548
Replying to @tsoding
Visual Basic 6 was "ok". There are newer versions of it. "Windows Forms" is still a thing on the .NET (it's supported up to the latest version today). And it works really well! The only problem is: Only works on Windows. The entire .NET stuff is cross-platform... WebApps, WebApis, Console applications... Everything. Just the Forms stuff is still a Windows-only thing.
3
949
Replying to @5eniorDeveloper
Mi jefe fanatico de las IAs descubrio hace poco (porque yo le dije) que podia crear un objeto MSXML desde FoxPro (si.. viejo) y llamar "webapis", hace 5 años que le vengo diciendo que un REST es solo un sitio web que devuelve Json.. le pregunto a Gemini y ahora se cree imparable.
1
4
77
3,211
7 Nov 2025
Replying to @schneidenbach
Hmm, sounds like tunnel vision and a limited scope of knowledge. The best .net devs I've worked with in the last 20 years of .net can work wonders using any part of .net. for suitable use cases. From winforms, windows services, wpf with surface coffee table, Silverlight, winforms, razor pages, MVC, webapis on .net framework through to all the goodies of .net core, asp.net core, and blazor.

2
29
1,087
Check which WebAPIs are available on your device with webapicheck.com, a tool built with Vue by @toniengelhardt! ✅❌ - madewithvuejs.com/webapi-che…
2
12
1,225
22 Oct 2025
JS Synchronous or Asynchronous ? JS Itself is Single Threaded and Sync but It can able to behave Async with the help of its Environment. When JS runs in Node Env/Browser it uses these components to handle Async - WebAPIs - Event Loops (Tracks CallStack & CallBack Q) - Callbacks
4
3
101
22 Oct 2025
Replying to @gauravkmaurya09
all the asynchronous stuff the call stack event loop are part of the runtime or when on browser it uses web apis the langauge in itself isn't actually async paired with the runtime and webapis the system becomes async
3
114
Meet Nhlanhla Lucky Nkosi — Executive & Head of Specialised Consulting, Research & Development at BBD & software engineer. 🎤 Web track: Web APIs You Should Be Using in 2025 — explore WebGPU, Background Fetch, & File System Access. #DevFest2025 #GDGCT#WebAPIs
5
10
355
19 Oct 2025
the policy of all new webapis being "secure contexts" only is such bs bro
2
90
Building web apps? Consider the power of web APIs combined with React. Why rely solely on external libraries when native solutions offer efficient alternatives and deeper understanding? #WebAPIs #React
1
4
262
Out with heavy JS libraries! In 2026, 12 native Web APIs—from declarative Shadow DOM to built-in validation, animation & more—will shrink dependencies and boost performance.⚡ Checkout this aritcle to know more: medium.com/@orami98/12-revol… #WebDev #JavaScript #WebAPIs #Performance
2
34
Nuxt, Git, WebApis, ZeroMQ, OCaml, Elixir…
17 Aug 2025
What technology is this?
1
4
593
Top 𝗘𝗫𝗖𝗟𝗨𝗦𝗜𝗩𝗘 free resources to become better in .NET You won't find this in any other blogs 👇 👉 I've compiled 650 hand-picked resources for mastering C#, .NET, ASP .NET Core, EF Core, and Microservices. Get PDF for free: ↳ anton-devtips.kit.com/dotnet… Inside, you'll find high quality resources: 📌 Official docs, tutorials, and guides 📌 Best blogs, videos Structured Logging and Distributed Tracing for Microservices ↳ antondevtips.com/blog/how-to… Real-Time Server-Sent Events in ASP .NET Core 10 ↳ antondevtips.com/blog/real-t… How to Log API Requests and Responses in ASP .NET Core ↳ antondevtips.com/blog/loggin… Getting Started with GraphQL (HotChocolate) ↳ antondevtips.com/blog/gettin… Building WebAPIs with FastEndpoints and Vertical Slices: ↳ antondevtips.com/blog/produc… Building AI ChatBot with OpenAI and Postgres ↳ antondevtips.com/blog/buildi… Building Multitenant Cloud Application ↳ antondevtips.com/blog/buildi… Snapshot Testing in .NET ↳ antondevtips.com/blog/how-to… Integration Tests with WireMock ↳ antondevtips.com/blog/how-to… ASP .NET Core Integration Testing Best Practices ↳ antondevtips.com/blog/asp-ne… Best Practices When Working With MongoDB in .NET ↳ antondevtips.com/blog/best-p… How to create Command-Line Applications: ↳ antondevtips.com/blog/how-to… How to Customize ASP .NET Core Identity ↳ antondevtips.com/blog/how-to… How To Create Migrations For Multiple Databases in EF Core ↳ antondevtips.com/blog/how-to… How To Manage EF Core DbContext Lifetime ↳ antondevtips.com/blog/how-to… Calling Views, Stored Procedures and Functions in EF Core ↳ antondevtips.com/blog/callin… 📌 These are exclusive articles in my antondevtips newsletter, you won't find in any other blogs. Join 11,000 readers, more exclusive content is coming in August (link in Profile). — ♻️ Repost to help your network ➕ Follow me ( @AntonMartyniuk ) for more #dotnet
3
11
69
3,897
Check which WebAPIs are available on your device with webapicheck.com, a tool built with Vue by @toniengelhardt! ✅❌ - madewithvuejs.com/webapi-che…
1
8
717
20 May 2025
Next speaker at #SoftwareArchitectureConf 2025 is 𝐒𝐢𝐫𝐢 𝐕𝐚𝐫𝐦𝐚 𝐕𝐞𝐠𝐢𝐫𝐚𝐣𝐮! He will be talking about Building Secure API's 🗓 August 05–06, 2025 🔗 Register here: softwarearchitecture.live #SoftwareArchitecture #API #WEBAPIs
11
19
248
Replying to @edandersen
Not really I would prefer MVP paradigms, since MVC is more focused on web development, and not UI/UX agnostic. Minimal APIs are just a step in learning or for microservices, since WebAPIs aren't the same as MVC, and the overhead of the roundtrips with MVC, I would recommend never to go back. I developed an eLearning platform with Razor Pages 5 years ago, I'm moving all that code base to Blazor in .net 9 this week. The focus is the benefits for the end user, reducing data overhead, roundtrips, and optimizing it. If the developer find it to much work, it's because of laziness.
2
917