Skip to content

Instantly share code, notes, and snippets.

View ertugrulozcan's full-sized avatar

Ahmet Ertuğrul Özcan ertugrulozcan

View GitHub Profile
using DevExpress.Xpf.Docking;
using Eigen.Infrastructure.Docking;
using Eigen.Infrastructure.Events;
using Eigen.Infrastructure.Events.Otc;
using Eigen.Infrastructure.Helpers;
using Eigen.Infrastructure.Services;
using Eigen.Infrastructure.Services.Docking;
using Eigen.Infrastructure.ViewModels;
using Microsoft.Practices.Prism.Events;
using Microsoft.Practices.Prism.Regions;
"CompanyList" : [
{
"Name": "Optiim",
"Address": "Blablala",
"PhoneNumber": "0123456789",
},
{
"Name": "Matriks",
"Address": "Blablala",
"PhoneNumber": "0123456789",
@ertugrulozcan
ertugrulozcan / SwingRadioButton.java
Last active July 14, 2016 13:51
Swing RadioButton
import com.navin.csv.CSVReader;
import java.io.IOException;
import java.util.Arrays;
public class GUI // extends JFrame
{
//...
private double distance;
using Snake.Components;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI;
using Windows.UI.Xaml;
<UserControl
x:Class="Snake.Components.Pixel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Snake.Components"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="100"
d:DesignWidth="100">
<Page
x:Class="Snake.GamePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Snake"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
int getNumbers(nodePtr *ptr)
{
nodePtr newPtr,beforePtr,currentPtr;
newPtr=malloc(sizeof(Node));
int num1,num2,temp,temp1;
printf("Enter First Number :");
scanf("%d",&num1);
printf("Enter Second Number :");
@ertugrulozcan
ertugrulozcan / npc.cs
Created October 3, 2015 21:54
INotifyPropertyChanged
#region NotifyPropertyChanged Metodu
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged(String propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (null != handler)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="contacts2.aspx.cs" Inherits="TurcaSoftRehber.contacts2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>www.aspnetornekleri.com Gridview XML işlemleri</title>
<!--jQuery-->
<script src="js/jquery-2.1.4.min.js"></script>