Log in to your Managed Hosting Server via SSH.
Create your .bashrc:
touch .bashrc
| { | |
| "use_https": "", | |
| "purge_amazonS3_info": "" | |
| } |
| /* | |
| Template literals if-statement example | |
| Using a single-line conditional, we can create an if-statements within template literals. | |
| */ | |
| function makeHTML(title) { | |
| return ` | |
| ${title ? ` | |
| This element has a title, and it is "${title}" | |
| ` : ` |
| #import <UIKit/UIKit.h> | |
| #import <SceneKit/SceneKit.h> | |
| #import <OpenGLES/ES2/gl.h> | |
| #import <OpenGLES/ES2/glext.h> | |
| @interface View : UIView | |
| @property (strong, nonatomic) SCNScene *scene; | |
| - (void)renderFrame; |