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
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC721.sol"; | |
import "./IERC721Receiver.sol"; | |
import "./extensions/IERC721Metadata.sol"; | |
import "../../utils/Address.sol"; | |
import "../../utils/Context.sol"; |
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
ssh-keygen -t ed25519 -C "ANAHTARISMINIZ" |
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 Foundation | |
import Crypto // https://github.com/apple/swift-crypto | |
extension Data { | |
struct HexEncodingOptions: OptionSet { | |
let rawValue: Int | |
static let upperCase = HexEncodingOptions(rawValue: 1 << 0) | |
} | |
func hexEncodedString(options: HexEncodingOptions = []) -> String { |
I hereby claim:
- I am mehmeteminkartal on github.
- I am kartal (https://keybase.io/kartal) on keybase.
- I have a public key ASAKRKk0ogRvHQ7HLyzHCn4EutKzburI7OM6bGsn9nw_3wo
To claim this, I am signing this object:
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 <xmotion.h> | |
typedef char mazeBlock; | |
#define DIRECTION_UP 1 | |
#define DIRECTION_DOWN 2 | |
#define DIRECTION_RIGHT 4 | |
#define DIRECTION_LEFT 8 | |
#define MAZE_DISCOVERED 16 |
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
// | |
// main.c | |
// timeChallange | |
// | |
// Created by Muhammet Mehmet Emin Kartal on 11/17/17. | |
// Copyright © 2017 Muhammet Mehmet Emin Kartal. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <time.h> |
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 "findroots.h" | |
void calcroots(int a, int b, int c) { | |
printf("%dx^2 + %dx + %d = 0\n", a, b, c); | |
int delta = pow(b, 2) - (4 * a * c); | |
printf("Δ = %d\n", delta); | |
double sqrtdelta = sqrt((double)(delta)); | |
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> | |
int main() { | |
int ilkTerim, sonTerim; | |
printf("İlk Terim: "); | |
scanf("%d", &ilkTerim); | |
printf("Son Terim: "); | |
scanf("%d", &sonTerim); | |
int toplam = 0; |
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
// | |
// main.c | |
// Ödev 2 | |
// | |
// Created by Muhammet Mehmet Emin Kartal on 10/3/17. | |
// Copyright © 2017 Muhammet Mehmet Emin Kartal. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <math.h> |
NewerOlder