User Profile

Collapse

Profile Sidebar

Collapse
natashasturrock
natashasturrock
Last Activity: Sep 26 '25, 09:03 AM
Joined: Jul 17 '25
Location: Brooklyn, New York, United States
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • natashasturrock
    replied to SQL UNION query with 3 SELECTs
    The error usually comes up in access when your query or table names have spaces. Just wrap them in square brackets like [SetupQry_Latest BrdOrCteeDetail s], and it should run fine.
    See more | Go to post

    Leave a comment:


  • How can I scale user generated content in web apps without spending a lot of budget?

    I am working on a web app where users can upload and share media files. As the app grows, I am worried about scaling file storage and managing bandwidth efficiently.

    Do you have any tools, architectures, or hosting approaches that you can recommend?
    See more | Go to post

  • Gamification in healthcare but turn good if done right. Simple Rewards, challenges, or progress tracking in apps, whether for fitness, medication adherence, or rehab exercises, can motivate patients to stay on track and make care more engaging....
    See more | Go to post

    Leave a comment:


  • I've run into the same problem with programs that require an interactive session. One approach I've tried is using automation frameworks like Playwright or PyautoGUI to simulate user interactions when the program starts.

    Another option could be containerizing or virtualizing the environment so the app thinks it's running in a desktop session, even if no one is actively logged in....
    See more | Go to post

    Leave a comment:


  • You are right, Windows Forms does not have the old VB6 unload event. The closest equivalent is the form.closing or form.formclosin g event....
    See more | Go to post

    Leave a comment:


  • Hey, cool project you’re working on! Hairstyles are such a dynamic trend dataset, so visualizing them interactively definitely makes sense.

    For your specific questions:
    1. Binding JSON to a chart
      • With D3, you’d typically parse your dataset and use d3.scaleLinear( ) for popularity values and d3.scaleBand() for the categorical styles. Then, data.join('rect ') will let you bind each object to a bar.
      • If you’re after something fast
    ...
    See more | Go to post

    Leave a comment:


  • I’ve seen AI really shift ERP reporting workflows. Instead of maintaining hundreds of SQL reports, users can query in natural language and get either summaries or dynamic SQL behind the scenes. A hybrid approach works best: keep optimized templates for heavy reports, but let AI handle ad-hoc needs. Adding anomaly detection and trend insights on top of ERP data has been especially valuable.

    For stack: LLM + RAG (pgvector with Postgres...
    See more | Go to post

    Leave a comment:


  • This is a really smart move by Red Hat. Giving business developers no-cost access to RHEL with up to 25 instances feels like a huge step in reducing friction between dev and ops teams. The fact that developers can now build and test directly on the same hardened platform used in production should help cut down on a lot of “it works in dev, but not in prod” issues. Pairing that with Podman Desktop and curated open source tools makes it even more...
    See more | Go to post

    Leave a comment:


  • natashasturrock
    natashasturrock posted a Visitor Message for natashasturrock
    Is WebAssembly Really the Future of High-Performance Web Apps?


    WebAssembly (Wasm) has been generating excitement in the web development community and promises web applications that are near-native. But the question many developers and organizations have is: Will WebAssembly be the future of high-performance web apps or another hype?

    As one who has provided web application development services for many years, I have...
    See more | Go to post
    Last edited by Niheel; Aug 24 '25, 08:52 PM.

  • For cryptocurrency trading, relying on a single data source can limit your access to timely and accurate market information. To address this, a DolphinDB-based multi-source solution can integrate both Binance WebSocket and REST APIs to improve market data coverage and refresh rates.

    The approach works by:

    - Accessing real-time data via WebSocket at 100 ms intervals and polling REST API at 50 ms intervals.

    -...
    See more | Go to post

    Leave a comment:


  • Congrats on expanding your dev team. A few DevOps trends worth looking into in 2025:

    - AI-assisted monitoring and incident resolution
    - GitOps and Infrastructure as Code for smoother deployments
    - DevSecOps – security built into your CI/CD pipelines
    - Cloud-native and multi-cloud strategies
    - Automation to reduce repetitive tasks

    For sources, check DevOps.com, CNCF, and LinkedIn articles — they’re...
    See more | Go to post

    Leave a comment:


  • This is a really solid guide — especially the parts on communication and long-term support. A lot of people underestimate how crucial the post-launch phase is until they’re knee-deep in bug reports or user feedback.

    One small addition I’d make is to pay close attention to how a team approaches feature prioritization and user behavior trends. Tech stacks and timelines are important, but the best results I’ve seen come from teams...
    See more | Go to post

    Leave a comment:


  • This webinar sounds like a valuable resource, especially for those working at the intersection of Medtech and cloud security. Scaling systems while ensuring compliance with regulations like HIPAA and GDPR (RODO) is definitely a complex challenge. Zero Trust architectures and real-time observability are becoming essential to protect sensitive data in these sectors. Looking forward to learning more about practical approaches to balancing scalability...
    See more | Go to post

    Leave a comment:


  • If you're already familiar with Unity, that's a great start for mobile game development since Unity supports both Android and iOS. For non-game mobile apps, you might want to explore frameworks like Flutter or React Native, which let you build cross-platform apps with a single codebase. Alternatively, for native development, Android Studio (Java/Kotlin) for Android and Xcode (Swift) for iOS are popular choices. Since you use Visual Studio, you can...
    See more | Go to post

    Leave a comment:


  • I’ve worked with a few CMSs alongside Next.js, and honestly, it depends on what you're building. For something headless and developer-friendly, Sanity is fantastic—great API structure and real-time collaboration. Contentful is another solid pick, especially if you're working with teams that prefer a clean UI and structured content types.

    If you want open source and flexibility, Strapi is worth a look. It gives you more control, and...
    See more | Go to post

    Leave a comment:


  • To create a shared library in .NET Core, you simply create a Class Library project. This library can contain reusable code like helper methods, services, or business logic. Once built, you can reference it from other .NET Core projects within the same solution or even package it as a NuGet package for wider reuse. It's a great way to keep your code modular and maintainable.
    See more | Go to post

    Leave a comment:


  • Creating a shared library in .NET Core (now just .NET, from .NET 5 onward) is straightforward using a Class Library project. Here's how to do it:

    Steps to Create a Shared Library in .NET Core
    Create the class library project:

    [HTML]bash
    dotnet new classlib -n MySharedLibrary
    This creates a .csproj and a basic Class1.cs.[/HTML]

    Write your shared code:
    Replace or add classes, interfaces,...
    See more | Go to post

    Leave a comment:


  • You're on the right track — a framework like .NET is essentially a collection of pre-written code, libraries, and tools that simplify common development tasks. The .NET Framework (and now .NET 5/6/7 onwards) is mainly built in C++ and C#, and supports multiple languages like C#, VB.NET, and F#.

    As of 2025, .NET has evolved into a unified, cross-platform, open-source framework (simply called ".NET") with major performance...
    See more | Go to post

    Leave a comment:


  • natashasturrock
    natashasturrock posted a Visitor Message for natashasturrock
    I’m Natasha Sturrock, a technology strategist and content specialist working closely with Eminence Technology — a leading jQuery development company delivering modern web solutions. With a passion for simplifying complex tech for decision-makers, I focus on topics like front-end frameworks, custom .NET development, and scalable web app solutions. My goal is to bridge the gap between business goals and digital execution with clear, data-backed...
    See more | Go to post
    Last edited by Niheel; Aug 24 '25, 08:51 PM.
No activity results to display
Show More
Working...