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 | |
namespace Illuminate\Foundation\Auth; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Auth; | |
use File; | |
use Validator; | |
trait AuthenticatesUsers |
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
/* | |
.. | |
*/ | |
/* | |
|-------------------------------------------------------------------------- | |
| Taksit Günlerini Bul | |
|-------------------------------------------------------------------------- | |
| | |
| Algoritmayı sadeleştirirsek. |
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 | |
/* | |
* howCode Web Crawler Tutorial Series Source Code | |
* Copyright (C) 2016 | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* |
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 Kancalama { | |
private $kanca; | |
public function fonksiyon_ekle($nereye, $fonksiyon, $oncelik = 1){ | |
if(!isset($this->kanca[$nereye])) | |
$this->kanca[$nereye] = array(); |
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
import smtplib as sm | |
from tkinter import * | |
class MailSender(): | |
def __init__(self): | |
self.pencere = Tk() | |
self.giris_pencere_olustur() | |
def giris_pencere_olustur(self): |
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 | |
public function boot(GateContract $gate) // Bu kısmı 5.5 de boş boot() şeklinde muhtemelen sadece 5.3 de bu şekilde. | |
{ | |
$this->registerPolicies(); | |
foreach ($this->getPermissions() as $permission) { | |
$gate->define($permission->name, function($user) use ($permission ) { |
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 | |
/** Mail Ayarları */ | |
public function getSmtp() { | |
$smtp=Config::get('mail'); | |
return view('backend.setting.smtp',compact('smtp')); |
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 | |
public function get_dir(Request $request) | |
{ | |
$root = base_path() . DIRECTORY_SEPARATOR; | |
// "C:\Users\fizikci\Desktop\dev\la1\" | |
$postDir = rawurldecode(base_path($request->get('dir'))); |
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
/** | |
* | |
* MOVED TO: https://github.com/iFind/html5MultidimensionalStorage | |
* | |
* This methods extends the default HTML5 Storage object and add support | |
* to set and get multidimensional data | |
* | |
* @example Storage.setObj('users.albums.sexPistols',"blah"); | |
* @example Storage.setObj('users.albums.sexPistols',{ sid : "My Way", nancy : "Bitch" }); | |
* @example Storage.setObj('users.albums.sexPistols.sid',"Other songs"); |
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
/* | |
Copyright (c) Microsoft Corporation | |
The following code example exercises the Windows Firewall profile; displays the current profile, turns off the firewall, | |
turns on the firewall, and adds an application. | |
*/ | |
#include <windows.h> | |
#include <crtdbg.h> | |
#include <netfw.h> |