This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/aws/aws-lambda-go/lambda" | |
) | |
type MyEvent struct { | |
Name string `json:"name"` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
deploy: | |
docker: | |
- image: circleci/php:7.1.8-browsers | |
steps: | |
- checkout | |
- run: | |
name: heroku deploy | |
command: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
deploy: | |
docker: | |
- image: circleci/php:7.1.8-browsers | |
steps: | |
- checkout | |
- run: | |
name: heroku deploy | |
command: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Test { | |
private $test1 = 1; | |
public function index() | |
{ | |
echo $this->test1; | |
$test2 = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Test { | |
private $t = 1; | |
public function test() | |
{ | |
echo $this->t; | |
$test = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$test = 1; | |
if ($test == 1) { | |
echo $test; | |
} elseif ($test == 2) { | |
echo $test; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$test = 1; | |
if ($test == 1) { | |
echo $test; | |
} else if ($test == 2) { | |
echo $test; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var self = require('sdk/self'); | |
var tabs = require("sdk/tabs"); | |
var {Cc, Ci} = require("chrome"); | |
var data = self.data; | |
var sss = Cc[ '@mozilla.org/content/style-sheet-service;1' ].getService( Ci.nsIStyleSheetService ); | |
var ios = Cc[ '@mozilla.org/network/io-service;1' ].getService( Ci.nsIIOService ); | |
var uri = ios.newURI(data.url('style.css'), null, null); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
sleep(5); | |
echo $_GET['no']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'vendor/autoload.php'; | |
use GuzzleHttp\Client; | |
use GuzzleHttp\Event\CompleteEvent; | |
$client = new Client([ | |
'base_url' => 'http://192.168.33.10', | |
]); |
NewerOlder