1,426 Recommended Topics
Remove Filter ![]() | |
... and I don't just mean things like 40 years ago I used punch cards, and today I use Python. Walk us through the more *human side* of your career. Things like how has the Internet changed your perception of things? What other big milestones were there over the years … Software Development career | |
Hey everyone, Over the past few years, I've worked closely with dev teams (startups, product companies, and even agencies) that hit a point where internal capacity wasn’t enough—tight deadlines, talent shortages, or the need for niche skills like DevOps or QA automation. That’s where team extension services come in. Basically, … Software Development seo | |
Suggest me from where i can hire developers in USA for my organization Software Development business-entrepreneurship career | |
What are the most important principles that all software developers should know? Software Development developer-tools monitoring-software software-architecture | |
Finding some text and replacing it with new text within a C string can be a little trickier than expected. Here is what I had come up with one day. Software Development c | |
Hi DW, I'm getting this error when I try to debug, it says it can't open `"c:\users\myusername\Documents\Visual Studio 2010\Projects\myprojectname\debug\myprojectname.exe"` How can I solve this? Software Development c++ microsoft:visual-studio | |
I think it's likely possible but the question is: do we need it? Is the goal transparent: more cash for Mars?? In other words for Macrohard to mimic Microsoft they need to: * Make new programming language and ecosystem, aka .NET and C# - do we REALLY need yet another … Software Development artificial-intelligence-llm business-entrepreneurship | |
Shopping apps are designed to make online purchasing faster and more convenient, yet many users still encounter issues that negatively affect their experience. By asking this question, the goal is to understand the common pain points people face while using these apps. For example: Do you find checkout processes too … Software Development ecommerce | |
This is for those application developers out there: Have you ever shipped something to production that you instantly regretted? When I first got interested in web development, the appeal was the instant gratification. Come up with an idea in the morning, code it in the afternoon, and see people all … Software Development software-architecture | |
.NET has evolved into a powerful framework for building secure, scalable, and high-performance applications. For SMBs especially, it offers a productive environment with cross-platform support, robust libraries, and seamless integration with cloud services like Azure. If you’ve worked with .NET for web apps, APIs, or enterprise tools—what real-world advantages have … Software Development | |
Hey Flutter devs I’ve been learning Flutter app development for cross-platform app development and I’m starting to get into more advanced stuff — but one thing that still feels a bit unclear is state management. I know there are several options like: setState() Provider Riverpod Bloc GetX, MobX, etc. But … Software Development flutter google:android-development | |
How to return multiple value from a function in VB 6.0 Any suggestion sir/madam? Software Development visual-basic | |
what are the pros and cons of controlling a smart house via: MCP servers (via LLMs) versus the livingrimoire software design pattern (with skill classes for a more heuristic control) Software Development python | |
Hi everyone, I'm learning C++ and made a simple coin toss game. It tosses a coin 100 times and counts heads vs. tails. The first time it works fine, but when I continue the game, it tosses 200, then 300 times, etc. I only want 100 tosses each time. "I … Software Development c++ | |
Hello clever people, Completely new to VB.NET (only installed Visual Studio 2019 in the past couple of days). To start all I want to do is open Excel (office 365) from a button on a userform. The location of the file is on a network, lets say: - \\file-svr01\Rozel\Design\Parts\PNG.xlsx OR … Software Development asp.net:vb.net microsoft:visual-studio | |
What are some best practices for optimizing memory management when working with large datasets? I am tagging this topic both with php (because that is my language of choice, and the one I work with big data with) as well as c++ (because I know DaniWeb has a large low … Software Development c++ | |
**Features:** * Retrieves the differentiating bit of a key with respect to the previous one and stores only this position in the index. * With at most one single disk read, assuming the index is in memory, it determines whether the key exists or not. * The index is always … Software Development asp.net:vb.net data-structure | |
What is the difference between a sharepoint developer and a sharepoint administrator ? Software Development sharepoint | |
Hi everyone, I’m currently working with a university research group, and we’re exploring the real-world use of software verification tools in industry. We’re particularly interested in whether there is a market for mathematical reasoning tools (e.g., formal verification, model checking, static analysis) and how they are actually being used in … Software Development engineering software-architecture | |
When displaying extensive MLM (Multi-Level Marketing) hierarchies using TreeView in ASP.NET, performance issues often arise due to the sheer volume of nested nodes. Loading thousands of members at once can slow down the interface, increase page load time, and degrade user experience. Software Development asp.net software-architecture | |
I have a candlestick chart with long list (data point) on X-Axis which becomes congested when loaded. How to show datapoint with sufficient space . Is there any container with horizontal scroll bar to display chart just like data is displayed in DataGrid view without reducing column width.  Software Development asp.net:vb.net | |
i want to add Crosshair , a vertical and horizontal line to view the value of the axis is this available for charts in vb.net 2017.  Software Development asp.net:vb.net | |
I've been reading about the Microsoft Solutions Partner program and wanted to ask the community is it actually worth pursuing for an IT company It looks like Microsoft has set certain performance and certification requirements that companies need to meet in order to qualify. They have categories like Infrastructure, Data … Software Development business-entrepreneurship microsoft:azure | |
Hello, Just curious and want to know is their any alternatives to github as well? Software Development github | |
Hi everyone. I am just learning Python on class so I am really at the basic. I need to write a python program that will flip a coin 100 times and then tell how many times tails and heads were flipped. This is what I have so far but I … Software Development python | |
The project is: -------------------------------- Write a program that computes and prints the average of the numbers in a text file. You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. Create a text file and name as numbers.txt and add the … Software Development python | |
I use Github for DaniWeb's code base. I was just wondering though. How secure is it? Would you ever store passwords or other sensitive information in Github (Don't worry. We use .gitignore.)? What about code that could be considered a trade secret, or that type of thing? Software Development cybersecurity github | |
Hello, I'm a Freshman in college that's going to majoring in Electrical and Computer Engineering. Right now I'm taking a C++ class and I'm looking to do something funny to a friend of mine. I have been searching the web for some "fake viruses" and whatnot to to play around … Software Development c++ engineering | |
What model of Android phone would you start with for testing a Java app? Is there one phone of which you can say, "Well, it works fine on here. There’s a good chance it’ll work on 75% of other Android phones and tablets"? Software Development google:android-development java | |
I have been searching online for a program that will: -reads in number of times a user wants a coin flipped -flip the coin that many times, printing out result of each coin flip -print out the total number of heads flipped and total number of tails flipped the application … Software Development java | |
i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js (thegeekinsights) and its going fine. can … Software Development html-css javascript | |
I’ve been working on a mid-size React project and started noticing performance lags and bloated component trees. I optimized a few things like: Using useMemo() and useCallback() smartly (but not overusing) Breaking components into smaller reusable ones Lazy loading routes and components But I’d love to know: What are your … Software Development javascript | |
**English Translation:** Hello everyone, I’m Chen Yang. It’s been a while since my last update. The main reason is my busy schedule with my full-time job, leaving me little time for writing. Additionally, I’ve spent the past six months learning HarmonyOS ArkTS, and now that I’ve reached a semi-proficient level, … Software Development github google:android-development open-source | |
If you want to add a dynamic filtering option in your web application, here’s a simple and effective solution using React. This filter allows users to search by keyword, set minimum and maximum values, and filter by category. import React, { useState } from "react"; const DataFilter = ({ data … Software Development javascript | |
## **Introduction** > The McCharts component library is developed based on Hongmeng ArkTS syntax and supports API 9 and above. The chart component has been open sourced. Everyone can participate, whether they are new or experienced, to learn from each other, develop more component libraries, and enrich the ArkTS ecosystem. … Software Development algorithm-pseudocode api javascript open-source | |
This project is a cross-platform Kafka GUI client. A star would be appreciated to support the open-source effort by the author. Thank you! # Features of Kafka-King * View the list of cluster nodes, dynamically configure broker and topic settings. * Support for consumer clients to consume messages from specified … Software Development gui java open-source | |
My name is Ray Brad. I am a learner in Salesforce development and administration, and I also have knowledge of Java concepts. If anyone has questions related to these topics, feel free to comment, and I will do my best to answer them. Software Development java | |
Does anyone know, how we can build, basically i want to know, what things will be need? Software Development software-architecture | |
In your opinion, what are industries use/benefit the most from automation, specifically intelligent automation? Software Development artificial-intelligence-llm | |
I need to develop an application where I give an llm a piece of code, like maybe a function, and then the llm finds the closest match that does the same thing. It would look in one or more source files. The thing found may be worded differently. If the … Software Development artificial-intelligence-llm python | |
Environment is Windows 11 and Visual Studio 2019 using Python. I am a Python novice. The goal is a project with multiple dialogs. Not a web project, just many dialogs. From VS some options are Django, Flask, Bottle, Jade, and more. Searches for each of those provide simplistic descriptions without … Software Development python | |
Can anyone provide some guidance? Software Development cryptocurrency | |
How do I establish an open connection to an open web browser in C#? In a Microsoft C# program using a Visual Studio Code I am using the following namespaces: using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using OpenQA.Selenium.Support.UI; After I get a string variable, "url", assigned with a URL of a website … Software Development asp.net:c# web-browser web-scraping | |
good day - I am wondering if anyone can explain to me how to allow the user to change the name of the tabs in a tab control via a textbox? For example, at runtime the user will be able to change the title of the tab ("TabPage1") to "Baking" … Software Development asp.net:vb.net visual-basic | |
Hi DW, I'm trying to automate using NAVIS, I tried using post method simulating how it does on a web browser but I get error 678 then now I'm trying to access it using vb.net web browser.It does load but the issue is that I can't set the input elements … Software Development asp.net:vb.net web-browser | |
Hi I want to make use of GitHub-programs, and so I downloaded a bunch of Python-tools. When I run this command in "Python 3.12", which looks like CMD to me, I get a syntax error. "To create a virtual environment, Python supplies a built in venv module which provides the … | |
i want to create table in ms acces database during run time......... Dim myConnection As ADODB.Connection Dim Conn As String Dim vtblNametxt As String Private Sub cratblebtn_Click() vtblNametxt = tblNametxt.Text myConnection.Execute ("create table " & vtblNametxt & " (id varchar2(3),pname varchar2(20), qtyp number(4));") End Sub Private Sub Form_Load() Set myConnection … Software Development database-design microsoft:access visual-basic | |
I want to use C# do to a necessary mass emailing of hundreds of receiving email addresses. I have a gmail account and I believe my message will be better received if it comes from my personal gmail account instead of from one of my website's email accounts. But if … Software Development asp.net:c# google-api | |
Hi, a pleasant day to all. I just wanna ask if it is possible to search any string or keyword inside my Access Database using the search in my VB.net application? Most of the tutorials only teach on how to search the table using an exact keyword or input. Example: … Software Development asp.net:vb.net visual-basic |
The End.