Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for JamesCherrill

I've opened this thread following rotten69's suggestion for "Java projects for beginners". To get things started I've posted a project in a format that makes sense to me; please feel free to follow that format, or to do it in some completely different style if that seems better. Let's see …

Member Avatar for Alok_5
20
3K
Member Avatar for mvd3

I have a big dilemma, so I need some additional info. I need to choose a specialization, so I have two main candidates : Artificial Intelligence and Data Science. I like both of the degrees, but If you could help me by writting from your experience what are the positive, …

Member Avatar for kemal.eksi.7393
0
226
Member Avatar for mvd3

I use Default Shared Preferences to save some data in them. I have created a class to handle all this : public class PreferencesHandler { private Context mContext; public PreferencesHandler (Context context) { this.mContext = context; } public void setBoolean(String name, boolean value) { PreferenceManager.getDefaultSharedPreferences(mContext).edit() .putBoolean(name, value).commit(); } public void …

0
129