Skip to main content

Posts

Soothing songs that will relax mind..

Do give it a try.. https://www.youtube.com/watch?v=UNN-r70cip8 https://www.youtube.com/watch?v=rLCMBlST8yk https://www.youtube.com/watch?v=4ZHwu0uut3k   https://www.youtube.com/watch?v=s_Vg5NN7LBo   https://www.youtube.com/watch?v=RCMXO9sBIcU   https://www.youtube.com/watch?v=8DSeZji2x-Y https://www.youtube.com/watch?v=KFppTBdCse8 https://www.youtube.com/watch?v=ocH-aauM_wU https://www.youtube.com/watch?v=qigaJOTqpWE https://www.youtube.com/watch?v=AbWBviQCMEE https://www.youtube.com/watch?v=5Y5xjtNltJA https://www.youtube.com/watch?v=NgBQJDQbeFA https://www.youtube.com/watch?v=fauGWTbto4k   https://www.youtube.com/watch?v=iNxvE-NvX-A https://www.youtube.com/watch?v=E1foE6xq66k https://www.youtube.com/watch?v=Gdg5HqX_vZE   There is more to this list.

Reading Property Files in a Spring Framework in Java

Reading Property Files in a Spring Framework in Java Of the many ways possible to achieve this in  a Java based Project, they can be classified into 2 categories based on the nature of configuration, namely Annotation Based and Xml based. Annotation Based: Use @PropertySource("classpath:fileName.properties") @Configuration @ComponentScan(basePackages = { "com.myproject.*" }) @PropertySource("classpath:dbConfig.properties") public class GetDBConnection { ... } Read Property File Data using either Environment or @Value METHOD 1 - Using Environment: @Autowired private Environment env; String dbUrl = env.getProperty("db.url"); Using @Value @Value("${db.url}") // To be bound with an attribute private String dbUrl; //To resolve ${} in @Value, use PropertySourcesPlaceholderConfigurer. @Bean public static PropertySourcesPlaceholderConfigurer propertyConfigInDev() {         return new PropertySourcesPlaceholderC...

Extracting Data from Twitter using Twitter API (in Python/Pycharm)

Pre-Requisites for this task: User should have a Twitter Account. Phone number should be linked with Twitter Account. ( Ways to Add Phone number in twitter ) Pycharm should be installed. Add Plugin named Tweepy in Pycharm. Obtain Twitter API Key from Twitter. How To Obtain Twitter API key: Go to apps.twitter.com and log in with your Twitter account. Click 'Create a new app' and fill the details. Callback URL is not mandatory. The system will generate an API key and an API secret. Generate an access token on 'Keys and Access Tokens' tab. Four keys will be generated. What exactly to write in Pycharm: import tweepy consumer_key = 'CONSUMER-KEY-FROM-TWITTER' consumer_secret = 'CONSUMER-SECRET-FROM-TWITTER' access_token = 'ACCESS-TOKEN-FROM-TWITTER' access_secret = 'ACCESS-SECRET-FROM-TWITTER' authentication = tweepy.OAuthHandler(consumer_key,consumer_secret) authentication.set_access_token(access_token, access_sec...