Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
store
- Page 1
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
6 Days Ago
by Liam91
A VPN is a tool that keeps your internet connection safe and private. It stops others from seeing what you do online. But a VPN doesn’t make you completely anonymous. To pick a good VPN, check: -How you pay (Bitcoin is more private than a credit card) -If they keep records of your activity (best if they don’t) -If they share IP addresses …
Re: How secure is Github?
Programming
Software Development
6 Days Ago
by kearawill
GitHub is generally very secure for hosting code, especially with features like 2FA, security alerts, and private repositories. However, like any platform, it's only as secure as how you use it. I’d never recommend storing sensitive information like passwords, private keys, or database credentials—even with .gitignore. Instead, use environment …
Re: How secure is Github?
Programming
Software Development
5 Days Ago
by Dani
> I’d never recommend storing sensitive information like passwords, private keys, or database credentials—even with .gitignore. Instead Why not, though? Doesn't .gitignore just completely *ignore* the files to where they never touch Github's servers? To me, that sounds much more secure than Github secrets, where sensitive information *is* …
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
… StateGraph, START from langgraph.checkpoint.memory import InMemorySaver from langgraph.
store
.memory import InMemoryStore from langchain_core.messages import AIMessage, HumanMessage from…
Re: 💻 What’s the First App You Install on a Fresh Windows Machine?
Hardware and Software
Microsoft Windows
3 Weeks Ago
by Dani
Jim, I have not used Windows in a very, very long time, but can you not configure Windows to
store
My Documents on D? I'm quite sure that you can, if I remember correctly? https://superuser.com/questions/1725456/wha-cant-i-move-my-documents-folder
Re: Is the Vision Pro worth it?
Hardware and Software
macOS
3 Weeks Ago
by Dani
Oddly, you are required to go through an hour long tutorial/demo at the Apple
Store
before they will sell you a Vision Pro. I haven’t had the patience as of yet.
Re: How to make an Iphone App?
Programming
Mobile Development
3 Weeks Ago
by jonathannweyer
… Apple’s ecosystem, like limited background tasking or stricter App
Store
guidelines. Picking the right programming language, whether it's Swift…
Re: Delete unused MySQL indexes
Programming
Databases
2 Weeks Ago
by toneewa
… schemas were off. event_waits_current was off, so MySQL didn't
store
the data (e.g., collect wait event data in detail…
Re: Error when sign in with Google
Community Center
Meta DaniWeb
2 Weeks Ago
by Dani
A little more information: I had a variable called `$uri` that I assumed was a URI, and so decided to be smart and add a sanitization wrapper around it to ensure it was a valid URI. It turned out that the variable was *not* meant to
store
a fully-formed URI but actually only part of one, and therefore always failed the check.
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
1 Week Ago
by TurisVPN
A VPN helps hide your IP and encrypt your internet, so others (like your ISP) can’t see what you do online. But it doesn’t make you totally anonymous. The VPN company can still see your traffic (if they keep logs). Websites can track you with cookies, and if you log in with your real info, they know who you are. So, a VPN is good for privacy …
Re: Are Cross-Platform Apps Slower Than Native? Or Is That Just a Myth in 2025?
Hardware and Software
Cloud-based Apps
3 Weeks Ago
by asadalig
In 2025, cross-platform apps aren't inherently slower than native ones—it really depends on how they're built. Modern frameworks like Flutter, React Native, and Kotlin Multiplatform have closed the performance gap significantly. If developers optimize properly, most users won’t notice a difference. However, for extremely high-performance needs like…
Re: App development - Lobby functionality optimisation
Programming
Mobile Development
2 Weeks Ago
by jonathannweyer
Since you’ve already tried caching and reducing network calls, you might want to look into pagination or lazy loading to avoid loading all rooms at once. WebSockets can also help by pushing updates instead of polling. Make sure your backend queries are indexed efficiently, especially for filters like player count. If the lag happens mostly during …
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by pritaeas
No sensitive info in any CVS. If I had a codebase such as DW, I'd
store
it in a local git
store
, synced to another machine of mine. No cloud.
McCharts - ArkTS
Programming
Software Development
2 Months Ago
by 杨_659
… font size. 5. Chart data (data). An array used to
store
the content of the chart, where name and value are…
How secure is Github?
Programming
Software Development
2 Months Ago
by Dani
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?
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by Reverend Jim
I don't trust any online service to
store
my information, sensitive or otherwise, other than whatever password I …
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by Salem
…, then that would seem to be a good place to
store
the archives.
Re: Upgrade to Fiber internet
Hardware and Software
Networking
2 Months Ago
by rproffitt
… me to the right office. OK, find the local ATT
store
and go in. Much confusion at their counter because their…
store
system was indication my phone number was in MA. (Duh) …
Re: Best way to find a segment of code that matches a given input segment?
Programming
Software Development
2 Months Ago
by Dani
… article to compare against 3. Initialize an empty list to
store
similarity scores similarity_scores = [] 4. For each article in the articles…
Re: Selling the house that I grew up
Community Center
Geeks' Lounge
2 Months Ago
by Reverend Jim
… and wiped on a pant leg doesn't compare to
store
bought. Also a great place to play hide and seek…
Re: Hello Everyone, I'm Ray Brad
Programming
Software Development
2 Months Ago
by Dani
… error is ? i am getting this on my e-commerce
store
which is on shopify. I got to know this error…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
… for your use case. If you have an e-commerce
store
where you frequently hold sales where the price changes frequently…
Re: What are some top-rated Bootstrap admin templates that not rely on Tailwind
Programming
Web Development
1 Month Ago
by Dani
… piece together something unique? Bootstrap also has its own template
store
, if I recall correctly. Also, Tailwind is a competitor to…
Re: Data storage and retrieval - cache or database
Programming
Mobile Development
1 Month Ago
by jonathannweyer
If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then
store
it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads.
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
2 Months Ago
by Deborah_5
How Can I Hookup My Mobile Phones To My PC Monitor ?
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
2 Months Ago
by Fitmovers
If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA input, you might also need an HDMI to VGA converter.
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by rproffitt
Given the state of affairs in the USA, any security we thought we had is gone. DOGE is gaining access by force now. Do we really need this conversation?
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by Salem
Given who owns github (M$), and their location (U$A), I wouldn't trust anything commercially sensitive with them. Why do you even need it, apart from the simple convenience of it all (that's the trap, make the honeypot sweet enough, plenty will arrive). There's not much there that can't be replicated on a server machine you physically control.…
Re: How secure is Github?
Programming
Software Development
2 Months Ago
by Dani
> There's not much there that can't be replicated on a server machine you physically control. Redundancy in the cloud. > How many people have commit rights on your codebase? Every contributor has a complete copy of the entire git repo. So even if you lost everything, you can sync with any of your peers and be back up and running to the…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC