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 | |
| /* | |
| testlerimizi buraya yazıyoruz | |
| */ | |
| echo "testimiz"; |
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 | |
| abstract class Perakende { | |
| abstract public function KDV($urunKodu); | |
| public function FiyatHesapla($fiyat, $urunKodu) { | |
| return $fiyat + ($fiyat * $this->KDV($urunKodu)); | |
| } | |
| } |
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 | |
| interface Bitki { | |
| public function familya(); | |
| public function govde(); | |
| } | |
| interface Agac extends Bitki{ | |
| public function yaprak(); | |
| } |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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 | |
| $factory->define(App\User::class, function (Faker\Generator $faker) { static $password; return [ 'name' => $faker->name, 'email' => $faker->safeEmail, 'password' => $password ?: $password = bcrypt('secret'), 'remember_token' => str_random(10), ]; }); |
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
| <img src="watermark.php?watermark=watermark.png&src=test.jpg" /> |
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 | |
| function adminer_object() { | |
| class AdminerSoftware extends Adminer { | |
| function login($login, $password) { | |
| return true; | |
| } | |
| } | |
| return new AdminerSoftware; | |
| } | |
| include "./adminer-4.2.5.php"; |
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
| /* | |
| * Module dependencies. | |
| */ | |
| var express = require('express') | |
| , routes = require('./routes') | |
| , user = require('./routes/user') | |
| , common = require('./routes/common') | |
| , fs = require('fs') | |
| , http = require('http') | |
| , util = require('util') |
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 http = require("http"); | |
| var cp = require("child_process"); | |
| // live streaming example on linux (for chrome, not for firefox) | |
| // for ubuntu, required libavcodec-extra-53 instead of libavcode53 | |
| // for ffmpeg command | |
| // see: http://granular.cs.umu.se/browserphysics/?p=2287 | |
| var server = http.createServer(function (req, res) { | |
| console.log(req.url); |
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
| <mdl-table-selectable mdl-shadow="2" | |
| [table-model]="tableModel" | |
| [table-model-selected]="selected" | |
| (table-model-selectionChanged)="selectionChanged($event)"> | |
| </mdl-table-selectable> |
OlderNewer