Pages

Showing posts with label Mac App development. Show all posts
Showing posts with label Mac App development. Show all posts

Monday, 13 April 2020

To upload or deploy apps on the App Store / Mac Store

Following are website to upload / deploy apps on App store / Mac Store ..and also you can upload books on Apple books

Following are link

https://itunesconnect.apple.com



and app Profile or app ID  or device ID can create/ add here ( below lin )



https://developer.apple.com/.

https://idmsa.apple.com/IDMSWebAuth/signin?appIdKey=891bd3417a7776362562d2197f89480a8547b108fd934911bcbea0110d07f757&path=%2Faccount%2Fresources%2F&rv=1


Sunday, 12 April 2020

NTFS support for Mac OS

If you need NTFS support for Mac OS then following are the best tool to download that

Mounty for NTFS - a tiny tool for macOS to re-mount NTFS volumes in read-write mode.( download link)


other so many tools are available but Mounty is best tool

But still i will show other name as well.

https://www.paragon-software.com/home/ntfs-mac/

https://www.tuxera.com/products/tuxera-ntfs-for-mac/

https://github.com/osxfuse/osxfuse/wiki/NTFS-3G


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)

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


Friday, 26 December 2014

REST client ( development tool)





Following are two rest client, its development tool to test the rest API and lot more.


1]
https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo

Features:
- Integrated with Google Drive
- It's own backend service to store and share data between coworkers
- convenient HTTP headers and payload editor thanks CodeMirror
- Make a HTTP request (via XmlHttpRequest level 2)
- Debug socket (via web socket API).
- JSON response viewer
- XML response viewer
- set custom headers - even does not supported by XmlHttpRequest object
- help with filling HTTP headers (hint + code completion)
- add headers list as raw data or via form
- construct POST or PUT body via raw input, form or send file(s) with request
- set custom form encoding
- remember latest request (save current form state and restore on load)
- save (Ctrl+S) and open (Ctrl+O) saved request forms
- history support
- data import/export 
 
 


2]
https://chrome.google.com/webstore/detail/postman-rest-client/fdmmgilgnpjigdojojpjoooidkmcomcm


use the crome to use this development too (its web app tool for crome)

**Features**

*Create requests quickly*
- Compact layout
- HTTP requests with file upload support
- Formatted API responses for JSON and XML
- Open responses as an HTML file in a new window
- HATEOAS support
- Image previews
- Request history
- Basic and OAuth 1.0 helpers
- Autocomplete for URL and header values
- Key/value editors for adding parameters or header values. Works for URL parameters too.
- Use environment variables to easily shift between settings. Great for testing production, staging or local setups.
- Use Global variables for values which are common throughout APIs
- Use the quick look feature to preview variables and their values before you use them
- Keyboard shortcuts to maximize your productivity 
 
 



Thursday, 25 December 2014

For json view and validate




This two site is very useful to view the json kind of data ,and check whether is valid or not.


Following are two site

1] http://jsonviewer.stack.hu/


2] http://jsonlint.com/


You can chose which you like or feels very good to json view or validate it.

Thursday, 18 December 2014

Capture Screenshot and save in Mac app ( cocoa )





Following code can explain you to capture screen and save it to specified format


// Follows code can capture the screenshot (in .png) and save it on specified folder

- (IBAction)SavePNG_BtnClicked:(id)sender
{

    CGDirectDisplayID displayID = CGMainDisplayID();
    CGImageRef imageRef = CGDisplayCreateImage(displayID); //screenshot
    
    NSString *path = [@"~/Desktop/public.png" stringByExpandingTildeInPath];
    [self savePNGImage:imageRef path:path];
    
    CFRelease(imageRef);
    
}



// Follows code can capture the screenshot (in .jpeg) and save it on specified folder

- (IBAction)SaveJPEG_BtnClicked:(id)sender
{
    CGDirectDisplayID displayID = CGMainDisplayID();
    CGImageRef imageRef = CGDisplayCreateImage(displayID); //screenshot
    
    NSString *path = [@"~/Desktop/public.jpeg" stringByExpandingTildeInPath];
    [self saveJPEGImage:imageRef path:path];
    
    CFRelease(imageRef);
}



// Follows code can capture the screenshot (in .tiff) and save it on specified folder

- (IBAction)SaveTIFF_BtnClicked:(id)sender
{
    CGDirectDisplayID displayID = CGMainDisplayID();
    CGImageRef imageRef = CGDisplayCreateImage(displayID); //screenshot 
   
    
    NSString *path = [@"~/Desktop/public.tiff" stringByExpandingTildeInPath];
    [self saveTIFFImage:imageRef path:path];
    
    CFRelease(imageRef);
    

}