Data-Hawk
I have no strings on me.
somebody help me root my phone SM-G530T
For rooting, this site is probably the best - Android Forum for Mobile Phones, Tablets, Watches & Android App Development - XDA Forums
somebody help me root my phone SM-G530T
Started using javafx the other day, the ability to use css instead that crappy L&F, now I need improve css skillsAny Java developers in here that have used JavaFX for their GUIs? I'm just learning it now and I gotta say it's huge a improvement visually over Swing, which was looking like it was stuck in the Windows XP days.
public String repeatEnd(String str, int n) {
String word = "";
for(int i = n; i > 0; i--){
for(int j = str.length() - n ; j < str.length(); j++){
word = word + (str.charAt(j));
}
}
return word;
}
It's hard to find Black programmers where I am, the only people I know/are friends with who program with any kind of ambition are Asian
I need to expand this somehow
Man this job can be rough as fukk.
I spend a lot of time trying to get different apps, languages, libraries to work together.
Today I had to set up our xml feed, I had to use some ruby scripts to get dynamic data for the xml feed, I had to learn a new templating language for campaign monitor, and had to edit some rss tags in the HTML template to get it all to look nice.
shyt like that can be a headache I would rather just stick to building out apps with Rails. Working in a small company you have to work on a little bit of everything. I have spent alot of time learning about analytics and content marketing in the past few weeks as well.
There is so much to learn in this field that you can get overwhelmed really easily.
public boolean catDog(String str) {
int cat = 0;
int dog = 0;
for(int i = 0; i < str.length() - 2; i++){
if(str.substring(i, i + 3).equals("cat"))
cat++;
if(str.substring(i, i + 3).equals("dog"))
dog++;
}
return(cat == dog);
}