I hereby claim:
- I am oguzcan-yavuz on github.
- I am oguzcan_yavuz (https://keybase.io/oguzcan_yavuz) on keybase.
- I have a public key ASBSxnNkCgQMt6kZWhm-FHZjMDfym1N1Y5mqh-aq3UYLmgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # You need to copy the document to the clipboard before running this. The result will be copied to the clipboard. | |
| pbpaste | perl -ne "s/(.*)( \w+\()(.*)(\))(.*)/\1\3\5/g; print;" | pbcopy |
| package main | |
| import "fmt" | |
| func square(x int) int { | |
| return x * x | |
| } | |
| func calculateSum(numberCount int, sum int) int { | |
| if numberCount == 0 { |
| import { map, cond, gte, lte, flip, always } from 'ramda' | |
| import scores from './scores.json' | |
| const flippedGTE = flip(gte) | |
| const flippedLTE = flip(lte) | |
| const rater = cond([ | |
| [ flippedGTE(800), always(`excellent!`) ], | |
| [ flippedGTE(700), always(`good`) ], |
| // https://stackoverflow.com/questions/12740659/downloading-images-with-node-js | |
| const fs = require('fs'), | |
| request = require('request') | |
| function download(uri, filename, callback){ | |
| request(uri).pipe(fs.createWriteStream(filename)).on('close', callback) | |
| } | |
| download('https://www.google.com/images/srpr/logo3w.png', 'google.png', function(){ |
| info@akyaosgb.com, info@alo-tech.com, info@alp-design.com, info@ankatr.com, info@experto.com.tr, bilgi@arpies.com, info@astec.com.tr, info@atlasyazilim.com.tr, hello@axolotlbio.com, info@ayasis.com, info@ayvos.com, info@basistek.com, info@biatech.com.tr, info@bilgera.com.tr, bilisim@bilisim.com.tr, bilgi@birerp.com, aydinsecer@gmail.com, jobs@BookLogic.net, bilgi@btrisk.com, geomes@geomes.com, info@create-4.com, ccrsbilgi@cc-rs.com, info@cftelekom.com, info@cnrgroup.eu, info@codec.com.tr, career@codevo.com.tr, info@contactcircuit.com, info@cpm.com.tr, contact@klikgames.net, info@crmakademi.net, info@cronom.com, info@crssoft.com, support@qadturkiye.com, info@mobiz.com.tr, insankaynaklari@dogalzeka.com.tr, dna@done.com.tr, info@donetr.com, info@appwox.com, istanbul@e-tugra.com.tr, info@echo.com.tr, bilgi@netahsilat.com, info@edugineer.com, info@edupark.com.tr, info@exedra.com.tr, info@emigrup.com.tr, info@endoya.com, info@erkteknoloji.com, info@flyco.com.tr, info@evatro.com, trading@financebt.com, info@fgs.com. |
| FROM nvidia/cuda:7.5-runtime-ubuntu14.04 | |
| LABEL maintainer "NVIDIA CORPORATION <cudatools@nvidia.com>" | |
| RUN echo "deb https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64 /" > /etc/apt/sources.list.d/nvidia-ml.list | |
| ENV CUDNN_VERSION 4.0.8 | |
| LABEL com.nvidia.cudnn.version="${CUDNN_VERSION}" | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| libcudnn4=$CUDNN_VERSION && \ |
| const express = require('express'); | |
| const cors = require('cors'); | |
| let app = express(); | |
| const corsOptions = { | |
| credentials: true, | |
| origin: true, | |
| methods: ['GET', 'HEAD', 'PUT', 'PATCH', 'POST', 'DELETE'], | |
| exposedHeaders: ['x-auth-token'] | |
| }; |
| =begin | |
| antik cagda yasayan bir sultanin 1000 askeri vardir. askerler halka seklinde | |
| siralaniyor. her asker sagindaki askeri kilicla yaraliyor ve yaralanan asker oyundan cikiyor. | |
| oyun siradaki askere geciyor. yani halkanin ilk hali (1,2,3,4,5,6,7,8,9) iken sonraki hali | |
| (1,3,5,7,9) oluyor. | |
| yarismayi hangi asker kazanir? oyunu nesne tabanli programlama mantigi ile kodlayiniz. | |
| NOT: kac asker oyuna dahil olacak ve oyunun kacinci askerden baslayacagini kullanici | |
| belirleyecektir. | |
| =end |
| #!/usr/bin/python3 | |
| import pyautogui | |
| import time | |
| coordinates = pyautogui.position() | |
| while True: | |
| pyautogui.click(coordinates) | |
| time.sleep(0.01) |