Pages

Tuesday 26 December 2017

Top 5 Reasons Why you should be using Seedr.cc

Most of us now know what torrent is. Torrent helps us in downloading different contents in a stable mode without a premium torrent client, we doesn’t get full speed of downloading.

But in this world, there is always a solution for a problem and I am going to tell you the way to download torrent files with-

Maximum speed (not affected by no. of seeders and leechers), and


Maximum no. of simultaneous parallel connections.


Surfing through the net, you may find plenty of torrent leeching sites which will offer you the same space as mentioned, but they aren’t so convincing.

Seedr.cc is one of the place where you can download stuffs from torrent without having to go through actual complicated torrent settings.

Few are the few benefits of this site which will drive you crazy for this-

All of you who hasn’t been here, I would recommend you to check out this amazing torrent leeching platform

Thursday 28 September 2017

SoundPool, SoundPool.Builder(), Supporting All API in Android


protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

        soundPool = new SoundPool.Builder()
                .setMaxStreams(10)
                .build();

        soundId = soundPool.load(this, R.raw.gun_shot, 1);

    } else {
        soundPool = new SoundPool(10, AudioManager.STREAM_MUSIC, 1);
        soundId = soundPool.load(this, R.raw.gun_shot, 1);
    }

}

public void gunShot(View view) {
    soundPool.play(soundId, 1, 1, 1, 0, 1);
}

Tuesday 25 April 2017

Trick, Mnemonic to remember OSI model layers

Here is the mnemonic or trick that i used to remember OSI model layers.

All people seem to need data processing.



  • All = Application Layer
  • People = Presentation Layer
  • Seem = Session Layer
  • To Transport Layer
  • Need = Network Layer
  • Data = Data link Layer
  • Processing = Physical Layer

Sunday 26 March 2017

PHP Pandas 🐼🐼🐼

                                              I wanted to revise PHP ... It's been a long time. This book https://daylerees.com/php-pandas/ looks awesome. Also it's author has provided free version to read this book online.

Monday 20 March 2017

Installing redis in macOS sierra

             Installing redis in macOS Sierra is easy if you've HomeBrew installed. Just watch this video to install redis in your macOS Sierra.

Wednesday 15 March 2017

Multer, Nodejs, File uploading without extension. Solved.

                So i faced this problem that files that i was uploading were uploading without extensions in nodejs express server to which i was uploading files using multer. πŸ˜•

Quick workaround i found was on this Github Multer Issue Page πŸ˜„

First of all run this command to install this package mime

npm install --save mime


And this is how i was able to make it work.😎

Monday 13 March 2017

Image uploading in Nodejs Express app using Multer

                             Follow the instructions shown in the video below to upload image in nodejs express server using multer.