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 "fmt" | |
func main() { | |
graph := map[int][]int{ | |
5: {3, 7}, | |
3: {2, 4}, | |
7: {8}, | |
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
package main | |
import ( | |
"fmt" | |
"math" | |
"math/rand" | |
"time" | |
) | |
// Neuron represents a single neuron in a neural network. |
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 Account | |
{ | |
//Properties | |
private int $id; | |
private string $name; | |
private float $balance; |
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 <iostream> | |
using namespace std; | |
int main() { | |
int sayi1 = 0; | |
int sayi2 = 0; | |
int secim = 0; | |
cout << "Lütfen Seçim Yapınız: " << endl << "1 = Bölme" << endl << "2 = Toplama" << endl << "3 = Çıkartma" << endl << "4 = Çarpma" << endl; | |
cout << "Seçiminiz : "; |
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
/** | |
Merhaba, | |
datatable.js de escapeRegex fonksiyonunu arayın ve düzenlemenizi yapın | |
DataTable güncellemesi ile birlikte bir çok arkadaşımızdan geri dönüş oldu. | |
1.10.20 versiyonu ile birlikte jquery.DataTable.js kodlarımızda aşağıdaki değişikliği yapmanız gerekmektedir. | |
**/ | |
/** | |
* Escape a string such that it can be used in a regular expression |
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
# Local System Information v3 | |
# Shows details of currently running PC | |
# Thom McKiernan 11/09/2014 | |
$computerSystem = Get-CimInstance CIM_ComputerSystem | |
$computerBIOS = Get-CimInstance CIM_BIOSElement | |
$computerOS = Get-CimInstance CIM_OperatingSystem | |
$computerCPU = Get-CimInstance CIM_Processor | |
$computerHDD = Get-CimInstance Win32_LogicalDisk -Filter "DeviceID = 'C:'" | |
Clear-Host |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; |
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 'package:flutter/material.dart'; | |
main()=>runApp(new MaterialApp( | |
home: new AppHome(), | |
)); | |
class AppHome extends StatefulWidget{ | |
@override | |
State<AppHome> createState() { | |
return new AppState(); | |
} |
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
//abstract - Soyut | |
//extends | |
//implements | |
//inheritence--kalıtım | |
//Sınıflar | |
abstract class Cinsiyet{ | |
//abstract method - soyut metot gövdesi olmayan |
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 <iostream> | |
using namespace std; | |
int main() | |
{ | |
bool dogru = 1; | |
while (dogru) | |
{ | |
NewerOlder