Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
#import <Foundation/Foundation.h> | |
@interface Communicator : NSObject <NSStreamDelegate> { | |
@public | |
NSString *host; | |
int port; | |
} | |
- (void)setup; |
{ | |
"type": "object", | |
"properties": { | |
"log": { | |
"description": "HTTP Archive structure.", | |
"type": "object", | |
"properties": { | |
"version": { | |
"description": "HAR format version", | |
"type": "string", |
(gdb) po [this.webView recursiveDescription] | |
<UIWebView: 0x5b9b70; frame = (10 10; 300 440); layer = <CALayer: 0x5b9be0>> | |
| <_UIWebViewScrollView: 0x19a5400; frame = (0 0; 300 440); clipsToBounds = YES; autoresize = H; layer = <CALayer: 0x19a4e20>; contentOffset: {0, 0}> | |
| | <UIImageView: 0x19a7bb0; frame = (0 0; 10 10); transform = [-1, 0, -0, -1, 0, 0]; alpha = 0; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x19a7bf0>> | |
| | <UIImageView: 0x19a7b40; frame = (0 0; 10 10); transform = [0, 1, -1, 0, 0, 0]; alpha = 0; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x19a7b80>> | |
| | <UIImageView: 0x19a7ad0; frame = (0 0; 10 10); transform = [0, -1, 1, 0, 0, 0]; alpha = 0; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x19a7b10>> | |
| | <UIImageView: 0x19a7940; frame = (0 0; 10 10); alpha = 0; opaque = NO; userInteractionEnabled = NO; layer = <CALayer: 0x19a7aa0>> | |
| | <UIImageView: 0x19a78d0; frame = (-4.5 4.5; 10 1); transform = [0, 1, -1, 0, 0 |
import javafx.application.Application; | |
import javafx.beans.value.*; | |
import javafx.geometry.Bounds; | |
import javafx.geometry.Pos; | |
import javafx.scene.*; | |
import javafx.scene.chart.*; | |
import javafx.scene.control.Label; | |
import javafx.scene.layout.*; | |
import javafx.scene.paint.Color; | |
import javafx.scene.shape.*; |
private function addDistortionTo(target:DisplayObject):void | |
{ | |
var offset:Number = 0; | |
var scale:Number = Starling.contentScaleFactor; | |
var width:int = target.width; | |
var height:int = target.height; | |
var perlinData:BitmapData = new BitmapData(width * scale, height * scale, false); | |
perlinData.perlinNoise(200*scale, 20*scale, 2, 5, true, true, 0, true); | |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
Located in alphabetical order (not prefer)
C
ab
), also designed as a more modern replacement, written in C
golang
)dial *#*#2846579#*#* | |
select 'ProjectMenu' | |
select 'Background Setting' | |
select 'Log Setting' | |
select 'Log Switch' | |
enable 'LOG on' | |
Select 'Log level setting' | |
enable 'DEBUG' | |
Press the 'Back' key | |
select 'Dump and Log' |
The easiest way to load the Mysql Time Zone tables from your Mac OS time zone fields is via this command:
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
However, on many systems like mine that will fail because some of the time zone information is incompatible with the database schema for the time zone tables.
Therefore, you'll want to load the time zone information into a text file and edit it to only include the time zones you need. (Or, attempt to find the data breaking the import.)
mysql_tzinfo_to_sql /usr/share/zoneinfo > zone_import.sql