Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
thing
- Page 1
Dynamic Properties in PHP 8.2
Programming
Web Development
3 Weeks Ago
by Dani
… shrug and let it slide. Not anymore. Obviously the best
thing
to do if you encounter this is declare properties ahead…
Re: What are "Other agent type" Googlebot types in GSC crawl stats?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by bijutoha
… going on in your space. They're just doing their
thing
to help people discover your corner of the internet!
Re: What are "Other agent type" Googlebot types in GSC crawl stats?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by Dani
… and encountered someone else who posted that the exact same
thing
happened to them on the same exact day.
Re: How Can Small Businesses Effectively Compete in Digital Marketing?
Digital Media
Digital Marketing
3 Weeks Ago
by WilliamOG
One
thing
that’s worked well for small businesses I’ve helped: …
Re: What are "Other agent type" Googlebot types in GSC crawl stats?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by bijutoha
… and encountered someone else who posted that the exact same
thing
happened to them on the same exact day. IMO, If…
Re: Error LNK1104 when debugging
Programming
Software Development
2 Weeks Ago
by Mr.M
… run the project successfully that time. This is the only
thing
I suspect might be a result of this problem. How…
Re: How to show visa info based on country selection in a travel form?
Programming
Web Development
2 Weeks Ago
by Biiim
… request for each one, I usually do this kind of
thing
with javascript objects/arrays (eg `settings['GB']['visa_req'] = false;settings…
Re: Best Social networking sites for SEO
Digital Media
Digital Marketing
1 Week Ago
by bijutoha
… were the leading players, and even Google+ was still a
thing
(RIP). Fast forward to now, Twitter has undergone a complete…
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
3 Weeks Ago
by Temporal
Great topic! When I studied Game Design and Art at UNIAT, we also touched on Flutter and state management, which is key for solid apps. Flutter manages state through its widget tree, with setState() rebuilding parts as needed. For bigger apps, tools like Provider, Riverpod, and BLoC help manage complexity. Provider is simple and good for …
Re: Dynamic Properties in PHP 8.2
Programming
Web Development
3 Weeks Ago
by Dani
Oh, and an important bit I forgot to mention: PHP's built-in stdClass has the `#[AllowDynamicProperties]` attribute already added. In fact, you can see in the [PHP docs](https://www.php.net/manual/en/class.stdclass.php) that the definition of the stdClass is "a generic empty class with dynamic properties." That means that you can always …
Re: Dynamic Properties in PHP 8.2
Programming
Web Development
2 Weeks Ago
by jkon
I can't get it , why anyone would want to `$user = new User(); $user->nickname = 'Dani';` if nickname is not a public property of User , or even worse `$user = new stdClass(); $user->nickname = 'Dani';` ? Why ?
Re: Dynamic Properties in PHP 8.2
Programming
Web Development
2 Weeks Ago
by Dani
The first I agree would not make much sense to do because one would presume that the User class has its own set of getters and setters for a reason, and just creating random properties on a whim defeats the purpose of organizing and structuring your code by having the class in the first place. Nevertheless, I ran into this exact issue while trying …
Re: Dynamic Properties in PHP 8.2
Programming
Web Development
2 Weeks Ago
by Dani
> This obviously does not make sense to do if you want to create or work with a User object or something of that sort. I realize that in my previous post I incorrectly gave the example of `$user = new stdClass(); $user->nickname = 'Dani';`. My intention was not to say that it was good coding practice to represent a user of the app with an …
How Does Flutter Handle State Management Internally?
Programming
Software Development
2 Months Ago
by James_228
…’m starting to get into more advanced stuff — but one
thing
that still feels a bit unclear is state management. I…
Re: Buggy career talk :-P
Programming
2 Months Ago
by Salem
…-write on the bus. Fine if it was the only
thing
on the bus as the memory logic in the processor… have sorted it out. But it wasn't the only
thing
on the bus, and the other processor was in that…
Re: Riddles
Community Center
Geeks' Lounge
2 Months Ago
by Reverend Jim
… father died and the sons inherited the business. The first
thing
they did was to bring in some cattle. The second…
thing
was to erect a sign with the new name of …
Re: Metaverse Marketing Services
Digital Media
Digital Marketing
2 Months Ago
by rproffitt
I thought that idea was dead. The new
thing
appears to be the Zuck's AI In Everything which I don't need in my toaster.
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
2 Months Ago
by jonathannweyer
… slow to build, especially if the niche is competitive. One
thing
you might look into is diversifying your traffic sources beyond…
Re: How to speed up my (WordPress) website?
Digital Media
Digital Marketing
1 Month Ago
by graceweb
One
thing
I’ve noticed that helps maintain speed without breaking things is being careful with how many plugins you install. Sometimes even just one poorly optimized plugin can slow things down. Also, consider lazy loading videos and iframes if you haven’t already.
Re: How to make an Iphone App?
Programming
Mobile Development
1 Month Ago
by jonathannweyer
One
thing
to keep in mind when planning an iOS app is …
Re: Wifi Connectivity Issue
Hardware and Software
Networking
1 Month Ago
by gowtham_6
Hey! Just try giving your router and PC a quick restart, update your WiFi driver, turn off that power-saving
thing
on the WiFi adapter, forget the network and join back in, then run the troubleshooter. If it’s still acting up, just drop the error and your device info here!
Re: Web3 Digital Marketing Agency
Digital Media
Digital Marketing
1 Month Ago
by rproffitt
It appears Web 3.0 is enabling far too many scams. Nearly DAILY reports of multi-million dollar exploits and scams are revealed at https://www.web3isgoinggreat.com As such, why would you go near such a
thing
?
Re: Need Coding Help With A Project
Programming
Software Development
1 Month Ago
by Dani
… doing something that their teacher taught them. My most important
thing
here is that your response is never for the one…
Re: Theory on the VPN
Programming
Mobile Development
1 Month Ago
by Liam91
Sounds like you're diving deep into how tunneling apps work! These apps often use VPN-like methods to route traffic through servers, sometimes exploiting free access points. Configs like .hat may include encryption keys or payload setups. Keep exploring... lots to learn!
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by asadalig
Flutter manages state using a widget tree and immutable widgets. When an app’s state needs to be updated, Flutter takes care of rebuilding only the UI components that require change when setState() is called on stateful widgets. This allows the framework to re-render the important widgets and not all the widgets on the screen. For more …
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by kearawill
How Flutter Handles State Internally Flutter uses a reactive UI model. When the setState() method is called within a StatefulWidget, it marks that widget as "dirty" and schedules it to be rebuilt in the next frame. This allows Flutter to efficiently update only the parts of the widget tree affected by the change, thanks to its …
Re: How secure is Github?
Programming
Software Development
1 Month 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
1 Month 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* …
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by kearawill
No, It is not AI generated.
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by sophiabrooks
Flutter internally handles state management through a combination of mechanisms: Stateful Widgets, declarative UI updates, and various libraries for managing app-wide state.
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC