Skip to main content

Posts

Showing posts from March, 2017

Play youtube video in iOS app

Youtube video can be played in iOS app using webview. MPMoviePlayerController is not able to open youtube video automatically. Integrate the below script to show thumbnail, clicking on it the video will play in full screen.     NSString *url = @"https://www.youtube.com/embed/8aMHGC6A5zc" ;          NSString * embedHTML = @"\     <html><head>\     <style type=\"text/css\">\     body {\     background-color: transparent;\     color: white;\     }\     </style>\     </head><body style=\"margin:0\">\     <iframe id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \     width=\"%0.0f\" height=\"%0.0f\" frameborder=\"0\" feature=player_detailpage allowfullscreen></iframe>\     </body></html>" ;          NSString * html = [ NSString stringWithFormat :embedHTML, url, self . view . frame . siz

Working with MongoDB

Generate a new SSH key ( https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/ ). If you have already ssh key generated at mac, then copy the key using:- pbcopy < ~/.ssh/id_rsa.pub Pass the key to your server developer (DevOps). He will give access to a server, for eg: http://192.168.70.55:8080 When he add your key, then open the terminal and type command:- ssh root@192.168.70.55 You will see this in terminal:-   The authenticity of host '192.168.70.55 (192.168.70.55)' can't be established. RSA key fingerprint is SHA256:supbA7wsdvc3xXnVyHvj7fXGjlpCpt1kigJrljR4. Are you sure you want to continue connecting (yes/no)? Enter yes Enter your server addresss (http://192.168.70.55:8080/) in your browser and it connects and start working. Mongo official reference for queries:- https://docs.mongodb.com/v3.0/reference/method/db.collection.update/#update-parameter