Merhabalar 🙂
Bitirme tezimdeki “Genişleyebilir Hesaplama Ortamları ve Apache Spark” isimli bölümü paylaşıyorum.
Continue reading Genişleyebilir Hesaplama Ortamları ve Apache Spark
Merhabalar 🙂
Bitirme tezimdeki “Genişleyebilir Hesaplama Ortamları ve Apache Spark” isimli bölümü paylaşıyorum.
Continue reading Genişleyebilir Hesaplama Ortamları ve Apache Spark
Merhaba,
Bitirme tezimdeki “Yapay Öğrenme Nedir?” başlıklı bölümü sizlerle paylaşıyorum. Bu yazıda bilgisayar bilimlerine dair bir teknik bir içerik mevcut değildir. Normal öğrenme ile bilgisayar bilimlerindeki öğrenme (makine öğrenmesi) arasındaki bağ kurulmaya çalışılmıştır.
Hello,
I’m developing a complex software. The core part of the software is web service. When the software goes production and if there is a bug in the web service, it is hard to debug. Because Visual Studio executes IISExpress and it prohibits service to remote clients.
I tried to solve this problem using Apache reverse proxy.
I installed WampServer for Apache.
Continue reading Reverse Proxy Approach To IISExpress Remote Access
Selamlar,
Derleyici tasarımı dersinde dönem projesi olarak yazdığım 1200 satırlık LR0 Parser kodunu ve raporunu paylaşıyorum.
In our system, we use linux quota to limit users file usage. However, quota database has inconsistencies with file usage of users. Sometimes user has no data, however quota database shows 4KB of usage.
On this problem, quotacheck is recommended. However, quotacheck fully checks the disk. If there are too many files and users, also user files frequently changing; online mode of quotacheck can’t fix inconsistencies.
In Computer Communications course, we have been wanted to present a SIGCOMM paper and write a report about it. We choose this paper, Named Data Networking. The paper was a summary of all works done related to Named Data Networking.
This is our report. We had limited time to write this paper, I can consider it incomplete. It may have better. It can give more information and give sophisticated point of views about NDN. Regardless, it was a good work about NDN.
Selamlar,
Bu dönem Metin Hüner hocamız EDT dersinde memristör üzerine bir araştırma ödevi vermişti. Ödevi zevk alarak araştırdım. Ödevde 250-300 kelime istenmesine rağmen, 4 sayfa kağıt doldurdum 🙂 Ödev yerine koymadan yazdım. Hoşuma gittiği için sizlerle paylaşmak istedim 🙂
İnternet üzerinde memristör üzerine Türkçe bir kaç yazı mevcut. Ama sanırım bunu bir bilgisayarcının gözünden ilk defa okuyor olacaksınız.
Continue reading Bilişim Dünyasına Yön Verebilecek Bir Parça: Memristör
When I using vim, I save the document by absance of mind. But if you are working on production environment, you don’t have any chance to make mistake. I just need to read code. Then I decided to open the file read-only mode.
You can use:
vim -R file.pl
Hello again.
I discovered a program that shows process activities: ProcessActivityView! You can find which files are accessed by a specific process. I will show this program on finding shared photos.
I wrote a program for deleting Foldername.exe virus.
:: Written by Mustafa CANTURK
:: https://www.mustafacanturk.com
:: Licensed under GPL
@echo off
for /f "tokens=*" %%a in ('dir /a /b') do (
attrib -S -H "%%a"
)
del *.exe
del autorun.inf
pause