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
MIME-Version: 1.0 | |
Date: Mon, 2 Jan 2023 02:45:22 +0300 | |
Bcc: Secil Kasmer <secil.kasmer@gmail.com> | |
Message-ID: <CAKnnWdAN3NNEACX7n9QWc3T3m8ap1xGvm=zZ66Yt4uA8SD1pcQ@mail.gmail.com> | |
Subject: =?UTF-8?B?VEVNQSBWYWtmxLEgRmlkYW4gQmHEn8SxxZ/EsSBFLVNlcnRpZmlrYW7EsXo=?= | |
From: =?UTF-8?B?Ym9yYSBrYcWfbWVy?= <bora.kasmer78@gmail.com> | |
To: =?UTF-8?B?Ym9yYSBrYcWfbWVy?= <bora.kasmer78@gmail.com> | |
Cc: Engin Polat <polatengin@gmail.com> | |
Content-Type: multipart/mixed; boundary="0000000000009387a305f13c6d87" |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Net.Mail; | |
using System.Reflection.Metadata; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Xml; |
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 React, {useCallback, useEffect, useState} from "react"; | |
let MY_LIST = []; | |
let RealData = []; | |
function App() { | |
const [search, setSearch] = useState(""); | |
const [filterlist, setFilterlist] = useState(MY_LIST); | |
//Debounce Time |
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
using Microsoft.Extensions.Options; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
namespace ValidationFactory.Security | |
{ |
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
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
public class Program | |
{ | |
public static async Task Main(string[] args) | |
{ | |
var summary = BenchmarkRunner.Run<ArrayVsList>(); | |
} | |
} |
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
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
var summary= BenchmarkRunner.Run<ListCapacityPerformance>(); | |
} | |
} |
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 concurrency | |
import "testing" | |
func TestConcurrency(t *testing.T){ | |
testGroup := []struct{ | |
max int | |
duration int | |
}{ | |
{10,5}, |
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 concurrency | |
import ( | |
"container/list" | |
"fmt" | |
"strings" | |
"sync" | |
"time" | |
) | |
func makeRangeList(min,max int) *list.List{ |
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 main | |
import ( | |
"container/list" | |
"fmt" | |
"math/rand" | |
"sync" | |
"time" | |
) |
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 main | |
import "fmt" | |
var dataHistoryList map[int]Fighter | |
type Fighter interface{ | |
GetId() FighterType | |
Fight() | |
Clone() Fighter | |
} |
NewerOlder