Here you find a fast how to test of an API with cURL, HTTPie and RESTY. The API is simulated using JSON Server tool from typicode.
Install with npm npm install -g json-server
We use typicode sample json
{
| class_name PlatformUtils | |
| extends Object | |
| #OS Possible values are: "Android", "iOS", "HTML5", "OSX", "Server", "Windows", "UWP", "X11". | |
| const OS_ANDROID = "Android" | |
| const OS_IOS = "iOS" | |
| static func isAndroid() -> bool: | |
| return OS.get_name() == OS_ANDROID |
| import UIKit | |
| extension UIScrollView { | |
| func toImage() -> UIImage? { | |
| UIGraphicsBeginImageContext(contentSize) | |
| let savedContentOffset = contentOffset | |
| let savedFrame = frame | |
| let saveVerticalScroll = showsVerticalScrollIndicator |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| /// <summary> | |
| /// A camera switcher. It cicles camera transform through given positions starting from a specified position walking 1 by 1. | |
| /// It can either change or animate between positions with the specified speed. | |
| /// </summary> | |
| public class VNCameraSwitch : MonoBehaviour { |
| for familyName in UIFont.familyNames { | |
| print("------------------------------") | |
| print("Font Family Name = [\(familyName)]") | |
| let names = UIFont.fontNames(forFamilyName: familyName as! String) | |
| print("Font Names = [\(names)]") | |
| } |
| #!/bin/sh | |
| #From here http://askubuntu.com/questions/430853/how-do-i-find-my-internal-ip-address | |
| #Also good reference http://askubuntu.com/questions/430853/how-do-i-find-my-internal-ip-address | |
| #If using other mask than 8.8.8.8 change it here or pass it as param | |
| ip route get 8.8.8.8 | awk '{print $NF; exit}' |
Here you find a fast how to test of an API with cURL, HTTPie and RESTY. The API is simulated using JSON Server tool from typicode.
Install with npm npm install -g json-server
We use typicode sample json
{
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets | |
| xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>Notified Property C# - WinPhone</Title> | |
| <Author>Vitor Navarro</Author> | |
| <Description>Full Property shortcut with NotifyOfPropertyChange for WinPhone using C#</Description> | |
| <Shortcut>propfullnotify</Shortcut> | |
| </Header> |
| #Postgres | |
| ##Configuração | |
| [Check status no stackoverflow](http://stackoverflow.com/questions/7975414/check-status-of-postgresql-server-mac-os-x) | |
| export PGDATA='/usr/local/var/postgres' | |
| export PGHOST=localhost | |
| alias start-pg='pg_ctl -l $PGDATA/server.log start' | |
| alias stop-pg='pg_ctl stop -m fast' | |
| alias show-pg-status='pg_ctl status' | |
| alias restart-pg='pg_ctl reload' |