If you are trying to speed up your Android phone, you should consider uninstalling Facebook! You can read more about that phenomenon for instance here : https://www.reddit.com/r/Android/comments/42kyph/uninstalling_facebook_speeds_up_your_android/. To be honest my phone is much faster after removing Facebook.
Have you ever wondered how to map enums from one to another ? Did you use switch statement to make it work ? Now you can use method immutableEnumMap from class Maps which is part of Guava. Below you can find an example.
public class EnumSourceMapper { static ImmutableMap<EnumSource, EnumDestination> mapper; static { mapper = Maps.immutableEnumMap(ImmutableMap.<EnumSource, EnumDestination>builder() .put(EnumSource.SUCCESS, EnumDestination.SUCCESS) .put(EnumSource.INCOMPLETE, EnumDestination.ERROR) .put(EnumSource.FAIL, EnumDestination.ERROR) .build()); } public EnumDestination getEnumDestination(EnumSource enumSource) { return mapper.get(enumSource); } }
Recently I was trying to convert some cash in EUR currency, but I did not have time to watch currency graph all the time. So, I have created small tool which will let me know via email when currency will get more expensive above some concrete level. You can put below script in cron to execute it with some time interval. I used Sparkpost as a email provider.
import urllib2
import json
from sparkpost import SparkPost
sp = SparkPost('YOUR_API_KEY')
def currencyConverter(currency_from,currency_to):
yql_base_url = "https://query.yahooapis.com/v1/public/yql"
yql_query = 'select%20*%20from%20yahoo.finance.xchange%20where%20pair%20in%20("'+currency_from+currency_to+'")'
yql_query_url = yql_base_url + "?q=" + yql_query + "&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys"
try:
yql_response = urllib2.urlopen(yql_query_url)
try:
yql_json = json.loads(yql_response.read())
currency_output = 1 * float(yql_json['query']['results']['rate']['Rate'])
return currency_output
except (ValueError, KeyError, TypeError):
return "JSON format error"
except IOError, e:
if hasattr(e, 'code'):
return e.code
elif hasattr(e, 'reason'):
return e.reason
currency_from = "EUR" # currency codes : http://en.wikipedia.org/wiki/ISO_4217
currency_to = "PLN"
direction_rate = 4.44
rate = currencyConverter(currency_from,currency_to)
print rate
if rate > direction_rate:
response = sp.transmissions.send(
recipients=['YOUR_EMAIL@gmail.com'],
html='Rate of ' + currency_from + currency_to + ' equals ' + str(round(rate, 2)) + '
',
from_email='test@sparkpostbox.com',
subject='EuroMonitor'
)
print(response)
else:
print "Rate too low"
Reference :
[1] EuroMonitor Source Code
I had a chance to work with Spring Test DBUnit [1] (integration between Spring testing framework and DBUnit) with few tests related with Spring Integration. Most of them use the same common text context which contains embedded database H2. Funny thing was that some tests failed, because of some tables already exist. The issue is that embedded database is not cleared between tests and it is reused within the same context. That's why you should use @DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS) with @TestExecutionListeners({DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class}) like below :
@ContextConfiguration @RunWith(SpringJUnit4ClassRunner.class) @TestExecutionListeners({DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class}) @DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS) public class YourTest { }
Reference :
[1] Spring Test DBUnit
[2] Spring Framework - DirtiesContext
I would like to announce that new Android app has been released recently times by me. This time application is called PerlJobs. This application helps you as a Perl developer to find new job opportunities across the globe. Job offers are divided into sections : Standard, Mod, Catalyst, Mason, Telecommute and By Country. The main source of all jobs is website : https://jobs.perl.org
Yes! I finally managed to create it. Obviously it is not so pretty as it might be, but.. never mind :) If you would like to create your own Google Play Developer Page where you can add some promotion text and graphics (icon and background), just go to your Developer Console and then click Settings and then Developer Page. If you are looking for let's say 'inspiration', you can have a look on my Developer Page which link you can find below :