A blog related to programming, technology, with tons of how-to tutorials.
Happy New Year 2013
Get link
Facebook
X
Pinterest
Email
Other Apps
Well the new year has arrived with new air, new energy, new thoughts, new enthusiasm, and some new tutorials for you all. Wishing you all. Happy New Year.
After the update in the Google Play Store, the opt-in option for Android TV has moved into the deeper pages. For this reason when you publish your app, even if it shows the Android TV devices are compatible in the Device catalog, the app actually is not available in the Android TV's play store. To fix this issue follow the following steps: First, optimize your app for Android TV. * Declare TV activity * Declare Leanback support * Declare touch screen not required * Provide home screen banner * Update the app to support remote navigation * Make sure your app's UI is compatible with the TV screen * Take screenshots of the TV app Now to opt-in for Android TV * Access the Play Console and select the app. * Go to “Release” > "Setup" > "Advanced settings" * Go to the "Release types" tab. * Once the app has been optimized for Android TV you may select the "Opt-in to Android TV." Once the app has been approved the status will appear as ...
Hydra can be used for bruteforce attack on a router to retrieve admin's password. For this, a password list needs to be created for my case it is password.lst. The username I am using in the bruteforce attack is admin and the router's password is 192.168.1.19 which might differ for your case. The command is as follows that I used: hydra -l admin -P password.lst 192.168.1.19 http-get -m / The above image shows a screenshot of my attack used on my TP-LINK router. The found password is underlined by red underline.
Linux is well known for its powerful terminal. Today I am going to write about a few programs that run in command-line ( terminal ) and are for listening to multimedia files. These terminal programs don't need a beautiful GUI to run. So if you are working in your terminal then you can also listen to your favourite play-list. The following is a screen-shot of my terminal, where I have my vim running in one pane, moc playing my play-list and top showing my running process (I am using tmux to split the terminal). The steps below will help you install a command line player and run them in your terminal. moc player running alongside with vim,top using tmux 1. mpg123 To install : $ sudo apt-get install mpg123 To play: $ mpg123 file.mp3 Use 'Ctrl+C' to stop and close the app. 2. mpg321 To install : $ sudo apt-get install mpg321 To play: $ mpg321 file.mp3 Use 'Ctrl+C' to stop and close the app. 3. moc To install: $ sudo apt-get install moc To ...
Comments
Post a Comment