As a huge DC fan, i was very happy when my favorite actor Minion was chosen to preform the role of Batman. This is a first look at his costume
A Pen by aladin ben sassi on CodePen.
import android.app.Service; | |
import android.location.Location; | |
import android.location.LocationListener; | |
import android.location.LocationManager; | |
public class GpsManager extends Service implements LocationListener | |
{ | |
private final Context context; | |
// Cihazda gps acik mi? |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.aero.gpstracker"> | |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" |
As a huge DC fan, i was very happy when my favorite actor Minion was chosen to preform the role of Batman. This is a first look at his costume
A Pen by aladin ben sassi on CodePen.
try | |
{ | |
double turkceDogru, turkceYanlis, turkcenet; | |
if(!Double.TryParse(turkceDogruTextbox.Text, out turkceDogru)) | |
turkceDogru = 0; | |
if(!Double.TryParse(turkceYanlisTextbox.Text, out turkceYanlis)) | |
turkceYanlis = 0; | |
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="login.aspx.cs" Inherits="TurcaSoftRehber.login" %> | |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<title>Turcasoft Rehber</title> | |
<meta charset="utf-8"/> | |
<!--jQuery--> |
<div class="container"> | |
<div class="jumbotron"> | |
<h1>My First Bootstrap Page</h1> | |
<p>Resize this responsive page to see the effect!</p> | |
</div> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<h3>Column 1</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p> | |
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...</p> |
<!-- REGISTRATION FORM --> | |
<div class="text-center" style="padding:50px 0"> | |
<div class="logo">Kayıt ol</div> | |
<!-- Main Form --> | |
<div class="login-form-1"> | |
<form id="register-form" class="text-left"> | |
<div class="login-form-main-message"></div> | |
<div class="main-login-form"> | |
<div class="login-group"> | |
<div class="form-group"> |
private string username; | |
/// <summary> | |
/// Kullanıcı adı | |
/// </summary> | |
public string Username | |
{ | |
get { return username; } | |
set { username = value; } | |
} |
<%@ Page Language="C#" EnableEventValidation="false" AutoEventWireup="true" CodeBehind="register.aspx.cs" Inherits="TurcaSoftRehber.register" %> | |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<title>Kayıt</title> | |
<!--jQuery--> | |
<script src="js/jquery-2.1.4.min.js"></script> |