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
[ | |
{ | |
"id": "546cd2a611a93d7e", | |
"type": "tab", | |
"label": "Canlı Yayın Subscription", | |
"disabled": false, | |
"info": "", | |
"env": [] | |
}, | |
{ |
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
[ | |
{ | |
"id": "e3a35ffd88d77596", | |
"type": "tab", | |
"label": "Arbitraj", | |
"disabled": false, | |
"info": "", | |
"env": [] | |
}, | |
{ |
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
[ | |
{ | |
"id": "940b1013a1853d68", | |
"type": "tab", | |
"label": "api ve http requests", | |
"disabled": false, | |
"info": "", | |
"env": [] | |
}, | |
{ |
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
# client | |
¨¨¨ | |
var accesskey = "ApiKey"; | |
var secretkey =cryptoJs.enc.Base64.parse("secret"); | |
var timestamp = moment(new Date()).valueOf().toString(); | |
//postman.setGlobalVariable("X-PCK",accesskey); | |
//postman.setGlobalVariable("X-Stamp",timestamp); |
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
#include <ESP8266WiFi.h> | |
const char* ssid = "wifi adınız"; | |
const char* password = "şifreniz"; | |
const int stepPin = 13 ; | |
const int dirPin = 12; | |
WiFiServer server(80); |
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
int dirPin= 8; | |
int stepPin = 9 ; | |
void setup() { | |
pinMode(dirPin, OUTPUT); | |
pinMode(stepPin, OUTPUT); | |
attachInterrupt(0,kesme,RISING); | |
Serial.begin(9600); | |
digitalWrite(dirPin,HIGH); | |
} |
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
const int stepPin = 9; | |
const int dirPin = 8; | |
void setup() { | |
pinMode(stepPin,OUTPUT); | |
pinMode(dirPin,OUTPUT); | |
digitalWrite(dirPin,HIGH); | |
} | |
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 | |
Event::listen('user.login', function($user) | |
{ | |
var_dump($user->toArray()); | |
}); | |
Route::get('/', function() | |
{ |
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
CKEditor Height -------------- | |
.ck-editor__editable_inline { | |
min-height: 200px; | |
} | |
----------------------------------- | |
Set image inside a card |