{% for post in site.posts limit:5 %} {% include JB/latest_posts.html %} {% endfor %}
This file contains 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
######################## | |
# CentOS linux.org.tr Repo Configuration | |
# | |
# Installation : Put the *.repo file | |
# in /etc/yum.repos.d/ and disable other | |
# mirror repo entries that points to the same repo | |
# | |
# Dogukan Cagatay <[email protected]> | |
######################## |
This file contains 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 | |
# Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/> | |
# This script is licensed under GNU GPL version 2.0 or above | |
# Author Vivek Gite <[email protected]> | |
# ------------------------------------------------------------ | |
# SETME First - local mysql user/pass | |
_lusr="root" | |
_lpass="MySQLPassword" | |
_lhost="localhost" | |
This file contains 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
sed -e 's/ğ/\\u{g}/g' -e 's/Ğ/\\u{G}/g' -e 's/ç/\\c{c}/g' -e 's/Ç/\\c{C}/g' -e 's/ş/\\c{s}/g' -e 's/Ş/\\c{S}/g' -e 's/ü/\\"{u}/g' -e 's/Ü/\\"{U}/g' -e 's/ö/\\"{o}/g' -e 's/Ö/\\"{O}/g' -e 's/ı/{\\i}/g' -e 's/İ/\\.{I}/g' input.txt > output.txt |
This file contains 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
UNAME_S := $(shell uname -s) | |
# -std=c++11 -Wall -march=native | |
ifeq ($(UNAME_S),Linux) | |
CXX=clang++ | |
CPPFLAGS=-O3 | |
LDFLAGS=-O3 | |
LDLIBS=-lOpenCL | |
endif | |
ifeq ($(UNAME_S),Darwin) |
This file contains 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
# Latex Makefile using latexmk | |
# Modified by Dogukan Cagatay <[email protected]> | |
# Originally from : http://tex.stackexchange.com/a/40759 | |
# | |
# Change only the variable below to the name of the main tex file. | |
PROJNAME=main | |
# You want latexmk to *always* run, because make does not have all the info. | |
# Also, include non-file targets in .PHONY so they are run regardless of any | |
# file of the given name existing. |
This file contains 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
#!/usr/bin/env bash | |
##################### | |
## Set build prefix and source code dir | |
##################### | |
BUILD_PREFIX="/home/dogukan/local" | |
SRC_DIR="/home/dogukan/src" | |
BUILD_DIR="/home/dogukan/src/build" |
This file contains 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
#!/usr/bin/env bash | |
JAVA_VERSION="8" | |
sudo apt-get install --yes python-software-properties | |
sudo add-apt-repository --yes ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install --yes "oracle-java$JAVA_VERSION-installer" | |
sudo apt-get install --yes "oracle-java$JAVA_VERSION-set-default" |
This file contains 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
LC_ALL=C tr -dc 'A-Za-z0-9_!@#$%^&*()\-+=' < /dev/urandom | fold -w30 | head -n1 |
This file contains 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
apply plugin: 'groovy' | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7' | |
compile 'org.apache.commons:commons-io:1.3.2' | |
} |
OlderNewer