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 java.sql.*; | |
public class baglanti { | |
/** | |
* @param args | |
*/ | |
public static void main(String[] args) { | |
// TODO Auto-generated method stub | |
try |
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 model; | |
import java.io.Serializable; | |
import javax.persistence.*; | |
/** | |
* The persistent class for the cehars database table. | |
* | |
*/ | |
@Entity |
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
%% documentation | |
% | |
% | |
function data = extract_features(bw,dbg) | |
[boy, en] = size(bw); | |
say = 0; | |
en_sag = 0; | |
en_sol = 64; | |
en_ust = 64; |
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 java.security.SecureRandom; | |
import java.util.Random; | |
class Test { | |
public static String generatePassword() { | |
String chars = "abcdefghijklmnopqrstuvwxyz" | |
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
+ "0123456789"; | |
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 java.security.SecureRandom; | |
import java.util.Random; | |
class Test { | |
public static String generatePassword() { | |
String chars = "abcdefghijklmnopqrstuvwxyz" | |
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
+ "0123456789!@%$%&^?|~'\"#+=" | |
+ "\\*/.,:;[]()-_<>"; |
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 com.yeni; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.view.Menu; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.TextView; |
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 | |
@mysql_connect("localhost", "root", "") or die ("Veritabanina baglanırken bir hata oluştu!"); | |
@mysql_select_db ("dog10000_veritabani") or die ("Üye Veritabanina Baglanilamadi"); | |
$username = $_POST["username"]; | |
$parola = $_POST["parola"]; | |
if ($username && $parola) { | |
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 | |
@mysql_connect("localhost", "dog10000_user", "samsun19") or die ("Veritabanina baglanırken bir hata oluştu!"); | |
@mysql_select_db ("dog10000_veritabani") or die ("Üye Veritabanina Baglanilamadi"); | |
$ad = $_POST["ad"]; | |
$email = $_POST["email"]; | |
$konu = $_POST["konu"]; | |
$mesaj = $_POST["mesaj"]; | |
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
function en_buyuk_nesne_yeri(resim) | |
I = imread(resim); | |
I = im2bw(I); | |
I = imfill(I, 'holes'); | |
boyut = size(I); | |
[x y] = bwlabel(I); |
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
function en_buyuk_alan(resim) | |
I = imread(resim); | |
I = im2bw(I); | |
I = imfill(I, 'holes'); | |
[x y] = bwlabel(I); | |
R = regionprops(x, 'Area'); | |
liste = [R.Area]; |
NewerOlder