This file contains 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 | |
use Ekrembk\Repositories\EloquentLinkRepository; | |
class EloquentLinkRepositoryTest extends TestCase { | |
public function __construct() | |
{ | |
$this->mockEloquent = Mockery::mock('alias:Ekrembk\Link'); | |
} |
This file contains 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
Show hidden characters
{ | |
"curly": true, | |
"eqeqeq": true, | |
"immed": true, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"sub": true, | |
"undef": true, | |
"unused": true, |
This file contains 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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Dayle Rees Color Schemes/Frontier.tmTheme", | |
"folder_exclude_patterns": | |
[ | |
".sass-cache", | |
".git" | |
], | |
"font_face": "Menlo", | |
"font_size": 15, |
This file contains 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
/* Yazacak zamanım olmadı */ | |
/* Fixed width+height .slider, çok geniş ve fixed height .slider-container, fixed width-height ve float left .slide'lar. */ |
This file contains 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 | |
// WP'e dışarıdan erişim için fonksiyon ve classları yükle, wp çıktısını engelle. | |
define( 'WP_USE_THEMES', FALSE ); | |
// wp-blog-header.php wordpressin ana dizininde yer alır. Dosya yolunu kendinize göre düzenleyin. | |
require 'wp-blog-header.php'; | |
?> |
This file contains 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
function otomatikBul() { | |
// Browser desteğini kontrol et | |
if( ! navigator.geolocation ) { | |
console.log( 'Broserınız desteklemiyor. Lütfen manual seçim yapınız.' ); | |
return; | |
} | |
// Uyarı | |
console.log( 'Koordinatlar alınıyor...' ); |