| bio | website | codeweavers.net/author/… |
|---|---|---|
| location | Birmingham, United Kingdom | |
| age | 24 | |
| visits | member for | 4 years |
| seen | 7 hours ago | |
| stats | profile views | 654 |
Developer at codeweavers.net. Keen tools and game programmer.
|
1d |
awarded | Notable Question |
|
May 8 |
awarded | Popular Question |
|
May 7 |
comment |
What's a good metaphor for Dependency Injection? @DavidAndreoletti thanks for the heads up. I've found it again and uploaded a copy to SO rather than simply linking. |
|
May 7 |
revised |
What's a good metaphor for Dependency Injection? added 90 characters in body |
|
May 6 |
awarded | Yearling |
|
Apr 22 |
awarded | Nice Question |
|
Apr 19 |
comment |
Managing managers in a Singleton class @R.MartinhoFernandes it's a fair question. I've done stuff like this when I was starting out programming in managed languages. |
|
Apr 19 |
comment |
Managing managers in a Singleton class @Joetjah you're welcome. |
|
Apr 19 |
comment |
Managing managers in a Singleton class Again, without context it's hard to comment too much but I would try to avoid static managers (static code even) - you're fixing yourself in to too much of rigid solution otherwise. Even if you only need one instance now, you might need more in the future. And if you are only making them static so you can instantiate them easier, it sounds as if the configuration of your app (where you instantiate the objects) needs changing. Just push the creation of these objects higher up the dependency chain (closer to main) and the need for statics is gone. |
|
Apr 19 |
comment |
Managing managers in a Singleton class @Joetjah splitting your code up sounds just fine. A generic DataManager would be the route I would try to avoid. It might be worth checking out and reading up about the SOLID principles, primarily the Single Responsibility Principle at en.wikipedia.org/wiki/Single_responsibility_principle |
|
Apr 19 |
answered | Managing managers in a Singleton class |
|
Apr 8 |
revised |
Unit testing database interactors added 479 characters in body |
|
Apr 8 |
answered | Unit testing database interactors |
|
Apr 6 |
revised |
How to create Hexagon in android programmatically? edited tags |
|
Mar 30 |
awarded | Popular Question |
|
Mar 30 |
comment |
Extracting from a very complex JSON file in Python @user2226825 that should work. The example file is massive, and I'm unable to load it on my phone right now. I ran it through Json lint and it was valid on my desktop though. Does every record have a title? It might be worth checking or handling an exception if not all records have the fields you expect. Alternatively, try just loading one record in from your file. If that works the code is ok, it's just the data that is the problem. Try the loop as for record in obj["d"]["results"][:1]: to see if one record works. |
|
Mar 30 |
comment |
Extracting from a very complex JSON file in Python @user2226825 I've updated my answer. Try that. |
|
Mar 30 |
revised |
Extracting from a very complex JSON file in Python added 173 characters in body |
|
Mar 30 |
answered | Extracting from a very complex JSON file in Python |
|
Mar 28 |
awarded | Revival |