Pages

Sunday, 12 April 2020

Best Website for hackintosh / Mac os / driver / Mac software / Mac Tricks

Here is best website for Hackintosh / Mac / Mac driver / Mac software / Mac Tricks

https://www.tonymacx86.com/

Code compare tools or File compare tools

Follows are the best tools to compare code or file

1) WinMerge  (download link)
2) DiffMerge ( download link)
3) FileMerge (download link )
4) TextWrangler (download link )
5) Edit ++ (download link )
6) NotePad ++ (download link)

Best website for Buy or Sell source code of application / games / Reskin of iOS / Android / Unity


Best website for Buy or Sell source code or reskin or graphics and app template of iOS / Android / Unity

https://www.chupamobile.com/


https://www.sellmyapp.com/


http://www.apkacode.com/


IP Messenger - Instant messaging utility for LAN

Overview


IP Messenger is a free and open source very simple to use pop-up-style instant messaging utility which can be used over a LAN (short for Local Area Network) connection.
The IP Messenger utility provides you with secure communication as it uses RSA 2048-bit encryption with the AES (Advanced Encryption Standard) 256-bit encryption algorithm.
Moreover, IP Messenger provides you with fast and high speed file and folder transfers for easy data sharing with your friends and colleagues over a LAN network connection.
Once IP Messenger is installed on your Mac, you can send messages to any of your contacts from the Message menu, selecting the users you want to send it to and clicking the Send button.
When you receive a new message, the message will pop-up and will also display the built-in attachment drawer if you have also been sent a file.
IP Messenger also enables you to enable the Absence mode which allows you to setup an away message that will be automatically sent to anyone trying to contact you. ( its available for windows /  mac / linux )
download from below link

download from below official link
Download from below official link -


download from


Thursday, 2 April 2015

How to launch safari and open URL in iOS

Heres is steps: 
  1. I created an IBAction in the header .h files as follows:
    - (IBAction)Link_btnCliecked:(id)sender
    I added a UIButton on the Settings page containing the text that I want to link to.
  2. I connected the button to IBaction in File Owner appropriately.
  3. Then implement the following:
    - (IBAction)Link_btnCliecked:(id)sender
    {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://yogapoint.com"]];
    }