Y

Teğmen
19 Aralık 2005
Tarihinde Katıldı
Takip Ettikleri
4 üye
Görüntülenme (?)
221 (Bu ay: 3)
Gönderiler Hakkında
Y
5 yıl
Asus Rog Crosshair VIII Dark Hero
Merhabalar arkadaşlar
Asus Rog Crosshair VIII Dark Hero
1 ayı geçti sanırım işlemci hazır bu anakartı arıyorum. 1 hafta önce falan bir türk youtube kanalı bile bununla sistem videosu çekti ama hala satışta yok Türkiyede. Nezaman gelir veya geldimi yada gelicekmi bilgisi olan yada benim gibi arayan bekleyen varmı acaba?
Y
13 yıl
dslr? aynasız? Kompakt? 4000usd tavsiye
Merhabalar,

2 yıl boyunca 7d ve 24-105 , 15-85 ile birliktelik yaşadım. Mark 3 heyecanı ile elimden çıkardım hepsini. Mark3 de d800de çıktı fakat iş almaya gelince düşünmeye başladım.

Arkadaslarımla kafelere gittiğimde, gezideyken ve evde ailemin resimlerini çekiyorum genelde. Bazende geçeleri otomobil fotoğrafları. Ben prof değilim, şu ana kadar sadece okuyarak ve video izleyerek ögrenmeye çalıştım bu işi.

Bi fotoğraf makinası aldıktan sonra adanada 2 yer ver eğitim veren ikisinede yazılmayı duşunuyorum.

Derdime gelince :). Hep dslr istedim, lenslerim olsun falan istedim 2 senede bu fantaziyi yaşadım. Bu sabah dank etti diyim. Yanımda koca canta taşımak istemiyorum artık. Öyle dana gibide(bana oyle geliyo yanlıs anlamayın) masada otururken elimde dslr ile foto çekmek garip geliyor artık. Daha taşınabilir ama foto kalitesindende ödün vermeyeceğim bi makina istiyorum. yani aslında mont cebine falan sığsada süper olur.

şunuda önerebilirsiniz dslr ile devam et takma sen çantaya falan milletin bakışlarına. belkide tekrar dslr ye ısınırım.

Bütçemi söyleyeyim siz sormadan;4000 dolarım var nakit. Yurt dışındanda getirme şansım var. Olsun olsun max 4500 dolar olur.
.
Keske m9 a falan param yetse :) tavsiyelerinizi ve nedenlerini bekliyorum. Şimdiden sağolun.
Y
16 yıl
Java Submit Hakkında yardım
Ben bu forumu tamamlamaya çalışıyorum fakat submite bastığımda girdigim bilgiler dogrulandı ise ekrana gelmesi gerekiyor showme ile fakat dogruda girsem yanlışta girsem hiçbirşey gelmiyor acaba neden?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
"http://www.w3.org/TR/HTML4.01/strict.dtd">

<html>

<head>

<title>Password Validation</title>
<script language="JavaScript"
type="text/javascript">
<!--

function ProcessForm()
{
showMe();
}//end ProcessForm()
function showMe() {
var name;
name=window.document.frmMain.txtName.value;
var surname;
surname=window.document.frmMain.txtSurname.value:
var username;
username=window.document.frmMain.txtUsername.value;
var password;
password=window.document.frmMain.txtPassword.value;
var city;
index =window.document.frmMain.selectCity.selectedIndex;
cityName=window.document.frmMain.selectCity[index].text;
alert("Your name :" + name + "\nSurname :" + surname + "\nUsername :" + username + "\nCity Name :" + cityName + "\nPassword :" + password);
document.frmMain.selectCity.selectedIndex=0;
}

function ValidateForm(FormToCheck)
{
var fObjPassword = new Object();
var fObjConfirm = new Object();

fObjPassword = window.document.getElementById("txtPassword");
fObjConfirm = window.document.getElementById("txtConfirm");

if(ValidatePassword(fObjPassword,fObjConfirm) == true)
{
return true;
}else{
return false;
}//end if

}//end ValidateForm()

function ValidatePassword(Password,PasswordConfirm)
{
var bolIsError = new Boolean(false);
var strErrorMsg = new String("");
var objError = new Object();

if((CheckForEmpty(Password.value) == true))
{
bolIsError = true;
strErrorMsg = "ERROR: Password is blank. You must type a valid password.";
objError = Password;
}else if((CheckForEmpty(PasswordConfirm.value))){
bolIsError = true;
strErrorMsg = "ERROR: Confirm field is blank. You must confirm your password.";
objError = PasswordConfirm;
}else if((Password.value)!=(PasswordConfirm.value)){
bolIsError = true;
strErrorMsg = "ERROR: Password and confirm field do not match. They must match.";
objError = Password;
}else if(InvalidLength(Password.value,7,11)){
bolIsError = true;
strErrorMsg = "ERROR: Password must be between 7 and 11 characters long.";
objError = Password;
}else if(InvalidChars(Password.value)){
bolIsError = true;
strErrorMsg = "ERROR: Your password contains illegal characters. Please use ";
strErrorMsg += "ONLY UPPERCASE LETTERS, lowercase letters or digits (0-9).";
objError = Password;
}else if(MeetMinReqs(Password.value)){
bolIsError = true;
strErrorMsg = "ERROR: Your password MUST contain AT LEAST ONE UPPERCASE LETTER, ";
strErrorMsg += "AT LEAST ONE lowercase letter and AT LEAST ONE digit.";
objError = Password;
}//end if

if(bolIsError == true)
{
window.alert(strErrorMsg);
objError.select();
return false;
}else{
return true;
}//end if
}//end ValidatePassword

function CheckForEmpty(FieldToCheck)
{
var onlySpacesRE = /^\s+$/;

if((FieldToCheck.match(onlySpacesRE)) ||
(FieldToCheck == null) ||
(FieldToCheck == ""))
{
return true;
}else{
return false;
}//end if

}//end CheckForEmpty

function InvalidLength(FieldToCheck,MinLength,MaxLength)
{
if(typeof(FieldToCheck) != "string")
{
FieldToCheck = FieldToCheck.toString();
}//end if

if((FieldToCheck.length < 7) ||
(FieldToCheck.length > 11))
{
return true;
}else{
return false;
}//end if
}//end InvalidLength

function InvalidChars(FieldToCheck)
{
var invalidCharsRE = /[^a-zA-Z0-9]/;

if(FieldToCheck.match(invalidCharsRE))
{
return true;
}else{
return false;
}//end if
}//end InvalidChars

function MeetMinReqs(FieldToCheck)
{
var lowercaseRE = /[a-z]+/g;
var uppercaseRE = /[A-Z]+/g;
var digitsRE = /[0-9]+/g;

if((FieldToCheck.search(lowercaseRE) == -1) ||
(FieldToCheck.search(uppercaseRE) == -1) ||
(FieldToCheck.search(digitsRE) == -1))
{
return true;
}else{
return false;
}//end if
}//end MeetMinReqs
// -->
</script>
</head>


<body>
<form name = "frmMain"
id = "frmMain"
action = "JavaScript:ProcessForm();"
method = "post"
onSubmit = "JavaScript:return ValidateForm(this);">
<p>Name
<input name="txtName" type="text" id="txtName" value="" size="30" maxlength="50" />
<br>
<br />
Surname
<input name="txtSurname" type="text" id="txtSurname" value="" size="30" maxlength="50" />
<br>
<br>
<label>City
<select name="selectCity" id="selectCity">
<option value="34">Istanbul</option>
<option value="06">Ankara</option>
<option value="35">Izmir</option>
<option value="16">Bursa</option>
<option value="01">Adana</option>
<option value="33">Mersin</option>
<option value="10">Balıkesir</option>
</select>
</label>
<br>
<br />
Username:

<label>
<input name="txtUsername" type="text" id="txtUsername" value="" size="30" maxlength="50" />
</label>
</p>
<p>
<label></label>
Password:
<input type="password"
name="txtPassword"
id="txtPassword"
size="15" />
</p>
<p>Confirm your password:
<input type="password"
name="txtConfirm"
id="txtConfirm"
size="15" />
<br />
<br />
</p>
<p>
<label></label>
<br />
<br />
<br />
<input type = "submit" id = "btnSubmit" name = "btnSubmit" value = "Submit" />
  
<input type = "reset"
id = "btnReset"
name = "btnReset"
value = "Reset">
</p>
</form>
</center>

</body>

</html>
Y
16 yıl
yardım alpine spr-17s
Arkadaslar merhaba

Ben 2 takım Alpine Spr-17s almayi dusunuyorum
bu componentlari dinleyen varsa nasıl olduklarini bana soyleyebilecek goruslerni bildirebilecek arkadaslar yazarsa cok sevinirim.
Bilgisi olan yorum yapabilecek arkadaslarda yazarsa sevinirim

ozellikleri :
Power Handling
CEA-2031 Power Rating: 110 Watts
Power Handling Capacity (RMS): 110 Watts
Power Handling Capacity (Peak): 330 Watts
General
Frequency Response: 65Hz - 27kHz
Impedence: 4 Ohms
Sensitivity: 87dB / W(1m)
Crossover Network
Grade: Professional Grade Network
Case Design: Sleek Crossover Case
Attenuation Control: 7-Level Tweeter Attenuation
Mounting: Shallow Mounting Design
Tweeter
Tweeter Type: Bright, Crisp 1'' Ring Tweeter with Resonance Absorber
Mounting Design: Shallow Mounting Design
Application Type / Design Detail: External / Swivel Tweeter Mounting Kit
Magnet Material: Ultra Low Distortion Magnet Design
Woofer
Dustcap Detail: Kevlar Reinforced, Phase Integrated Dustcap
Cone Material: Varnish Multi-Layer Cap & Cone
Motor Technology: Linear Drive Technology
Voice Coil Type: Large Square-Wire Short Voice Coil
Cooling: Optimized Air-Flow Design
Magnet: High Grade Strontium Magnet
Mounting: Shallow Mounting Design
Frame: Rigid Custom Cast Aluminum Frame
Mounting Adapters: Mounting Adapter Kit Included

simdiden değerli görüsleriniz icin tesekkurler
Y
17 yıl
Googlemaps Yardım
Google map ile rota çizdirme konusunda bazı çalışmalarım var. Su anda iki belirli nokta arasında(amerikadaki şehirler,buyuk bilindik yerler) harita uzerinde yollarda rota çizebiliyorum. fakat benim yapmak istedigim A noktasına B ve C noktalarından ayrı ayrı rota çizdirmek. Umarım anlatabilmisimdir
mesela Los Angeles'e Anaheim ve Long Beach dan rotayı aynı anda çizdirmek istiyorum... Kodum assagıda inceleyebilirsiniz eger yardım edebilirseniz cok sevinirim.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>hsyn</title>
<script src="http://maps.google.com/?file=api&v=2.x&key=ABQIAAAAo7YKMCCRjMcdXgN-_5XO5xQ1A1fWz4alCCvd10yS0mOrn4_ChRRC3H3nZacpj5GPPLMaQ2nOdepGaA"
type="text/javascript"></script>

<style type="text/css">
body {
font-family: Verdana, Arial, sans serif;
font-size: 11px;
margin: 2px;
}
table.directions th {
background-color:#EEEEEE;
}

img {
color: #000000;
}
</style>
<script type="text/javascript">

var map;
var gdir;
var geocoder = null;
var addressMarker;

//Mouse in out (Shows controls when mouse is on map, Hides when out of map.)
GMap2.prototype.hoverControls = function(opt_noCloseIw){
var theMap = this;
theMap.hideControls();
GEvent.addListener(theMap, "mouseover", function(){
theMap.showControls();
});
GEvent.addListener(theMap, "mouseout", function(){
theMap.hideControls();
});

}
GMap.prototype.hoverControls = GMap2.prototype.hoverControls;

function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
gdir = new GDirections(map, document.getElementById("directions"));
GEvent.addListener(gdir, "load", onGDirectionsLoad);
GEvent.addListener(gdir, "error", handleErrors);
//map controls Zoom
map.addControl(new GLargeMapControl());
//sets center to given location
map.setCenter(new GLatLng(33.9068,-118.1909), 10);
//Adds controls to select Map Type
map.addControl(new GMapTypeControl());
map.hoverControls();
//Coordinates
GEvent.addListener(map, "mousemove", function(point){document.getElementById("mouse").value=point.toUrlValue();});
}
}
//route
function setDirections(fromAddress, toAddress, locale) {
gdir.load("from: " + fromAddress + " to: " + toAddress,
{ "locale": locale });
}

function handleErrors(){
if (gdir.getStatus().code == G_GEO_UNKNOWN_ADDRESS)
alert("No corresponding geographic location could be found for one of the specified addresses. This may be due to the fact that the address is relatively new, or it may be incorrect.\nError code: " + gdir.getStatus().code);
else if (gdir.getStatus().code == G_GEO_SERVER_ERROR)
alert("A geocoding or directions request could not be successfully processed, yet the exact reason for the failure is not known.\n Error code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_MISSING_QUERY)
alert("The HTTP q parameter was either missing or had no value. For geocoder requests, this means that an empty address was specified as input. For directions requests, this means that no query was specified in the input.\n Error code: " + gdir.getStatus().code);



else if (gdir.getStatus().code == G_GEO_BAD_KEY)
alert("The given key is either invalid or does not match the domain for which it was given. \n Error code: " + gdir.getStatus().code);

else if (gdir.getStatus().code == G_GEO_BAD_REQUEST)
alert("A directions request could not be successfully parsed.\n Error code: " + gdir.getStatus().code);

else alert("An unknown error occurred.");

}

function onGDirectionsLoad(){
}



</script>


</head>
<body onload="initialize()" onunload="GUnload()">

<h2>DESIGN PROJECT I </h2>
<form action="#" onsubmit="setDirections(this.from.value, this.to.value, this.locale.value); return false">

<table>

<tr><th width="71" align="right">From: </th>

<td width="150"><input type="text" size="25" id="fromAddress" name="from"
value=" "/></td>
<th width="32" align="right">  To: </th>
<td width="150" align="right"><input type="text" size="25" id="toAddress" name="to"
value=" " /></td></tr>

<tr><th>Language: </th>
<td colspan="3"><select id="locale" name="locale">

<option value="en" selected>English</option>

<option value="tr">Turkish</option>
</select>

<input name="submit" type="submit" value="Route" />
<input name="text" type="text" id="mouse" style="width:10;" /></td>
</tr>
</table>


</form>

<br/>
<table class="directions">
<tr>
<th>Directions</th>
<th>Map</th></tr>

<tr>
<td valign="top"><div id="directions" style="width: 275px"></div></td>
<td valign="top"><div id="map_canvas" style="width: 600px; height: 400px"></div></td>

</tr>
</table>
</body>
</html>
Y
17 yıl
Yardım cpu sıcaklık
hic overclock yapmadan dereceleri 2 farklı program farklı gösteriyor benim göz önüne almam gereken core degerlerimi yoksa cpu ısısımı ve merak ettigim bu degerler kaca kadar güvenli?

< Resime gitmek için tıklayın >

< Resime gitmek için tıklayın >
DH Mobil uygulaması ile devam edin. Mobil tarayıcınız ile mümkün olanların yanı sıra, birçok yeni ve faydalı özelliğe erişin. Gizle ve güncelleme çıkana kadar tekrar gösterme.