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
| CultureInfo ci = new CultureInfo("tr-TR"); | |
| string date = DateTime.Now.ToString("D", ci); |
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
| ----------------------------------------------- | |
| [ScsService(Version = "1.0.0.0")] | |
| public interface IMessageService | |
| { | |
| void AddMessage(MessageRecord record); | |
| bool DeleteMessage(MessageRecord record); | |
| MessageRecord FindMessage(string index); | |
| void SendMessages(); | |
| } |
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
| this.Dispatcher.Invoke((Action)(() => | |
| { | |
| ...// your code here. | |
| })); |
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 <stdio.h> | |
| #include <conio.h> | |
| void main() | |
| { | |
| /*printf("Sayi giriniz..:"); | |
| int sayi; | |
| int control = 0; | |
| scanf_s("%d", &sayi); | |
| if (sayi > 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
| <!DOCTYPE hmtl> | |
| <html> | |
| <head> | |
| <title>Task Manager</title> | |
| <style> | |
| table, th, td { | |
| border: 1px solid black; | |
| border-collapse: collapse; | |
| } |
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
| #!/bin/bash | |
| # install dependencies | |
| apt-get update && apt-get upgrade | |
| apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev | |
| # install RVM | |
| bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) | |
| ### as per RVM instructions (both files) |
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
| <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
| <s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002Emin_002Ejs/@EntryIndexedValue">True</s:Boolean> | |
| <s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestVarOrType_005FBuiltInTypes/@EntryIndexedValue">DO_NOT_SHOW</s:String> | |
| <s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestVarOrType_005FElsewhere/@EntryIndexedValue">DO_NOT_SHOW</s:String> | |
| <s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestVarOrType_005FSimpleTypes/@EntryIndexedValue">DO_NOT_SHOW</s:String> | |
| <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/ThisQualifier/INSTANCE_MEMBERS_QUALIFY_MEMBERS/@EntryValue">Field, Property</s:S |
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
| İnternet/Extranet/İntranet: | |
| İnternet iletişim ağı olarak tanımlanır ve bu iletişim ağı üzerinden her kullanıcının (Tabiki izin verilmesi halinde) kolaylıkla ulaşabileceği bilgiler sunar. | |
| Extranet; İş ortaklarını internet üzerinden birbirine bağlayan ağ olarak tanımlanır. Özellikle iş ortaklarının kullandığı bu ağda, şirketler arasında kendi intranet alanlarına girişe izin verilir. | |
| Intranet, firmanın bütün haberleşme cihazlarının çeşitli bilgileri paylaşabildiği, internet uyumlu uygulamaları çalıştıran bilgi sistemleri ağıdır. Arkasında kendi firewall’u çalışır. Intranet; şirket içinde gündelik bilgilere daha hızlı ulaşmak ve düşük maliyetle bu paylaşımı gerçekleştirmeyi amaçlar. | |
| Throughput&Bandwidth: | |
| Throughput: Bir noktadan diğer bir noktaya ortam üzerinde sorunsuz iletilen verilerin ortalama oranını verir. |
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
| (tempo! 240) | |
| piano: | |
| o6 e+8 d8 < f+4/d2/<b2> g4 | |
| o6 c+8 <b d4/<g2/b2 >e+ | |
| o5 b8 a c+4/<a2/e+2 >e+4 | |
| o5 c+2./e+2/a2. |
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 "stdafx.h" | |
| #include <Windows.h> | |
| #include <stdio.h> | |
| #include <iostream> | |
| #include <stdlib.h> | |
| #include <fstream> | |
| #include <strsafe.h> | |
| using namespace std; |