Join for FREE | Take the Tour Lost Password?
[x]

deviantART

 

Tenka Text Development Blog

Sun Jan 28, 2007, 12:20 PM
Tenka Text: Development Blog | Homepage | Ohloh Metrics

Açık kaynak kodlu derlem inceleme programım hakkında bir blog tutmaya başladım. Mike Scott'un WordSmith Tools'u benim Tenka Text'im karşısında tutunmaya çalışırken zorlanacak!

I have started keeping a development blog on my open-source corpus analysis software project. Mike Scott's WordSmith Tools is going to have a hard time keeping up against my Tenka Text.

  • Listening to: Kokoro-nokori (Watashi Baka Yo Ne)
  • Reading: pretty much nothing
  • Watching: Unfair-DeathNote-EraiTokoroNiTotsuideShimatta

Tenka Text vs WordSmith Tools

Mon Aug 28, 2006, 7:46 PM
hehe... süreç işliyor...

[link] adresinden takip edebileceğiniz üzere, Mike Scott leylasının basitçe yazı-p kullanıcı başına 90€ lisans ücreti beklediği programı WordSmith Tools'una noktayı koyacak projem Tenka Text emin adımlarla olgunlaşmaya doğru ilerliyor. Ki ekran görüntülerine [link] bakacak olursanız artık yalnızca Windows değil Linux gibi diğer baba platformlar üzerinde de çalıştığını görebilirsiniz!! :D Novell'in Mono'su ve Microsoft'un .NET'ini arkasına almaya görsün bi kere insan... :stereo:

hehe... the clock is ticking...

As you can see at [link] , Tenka Text - my project to put an end to Mike Scott's WordSmith Tools, for which, despite having coded it simply, he demands a licence fee of 90€ per single-user - is making progress towards maturity. And if you would have the time to check the screenshots [link] you would see that it now runs not only on Windows but also on other reliable platforms such as Linux!! :D Once you have the Mono from Novell and the .NET from Microsoft to prop you up... :stereo:

izin dışı veri edinimi =)

Tue May 30, 2006, 6:01 AM
bugün corpus linguistics (derlem(e) dil bilimi) dersinde Ekim'e kadar yazmamız gereken ödev (Hausarbeit) için önceden birer kopyasını edinip edinemeyeceğimizi sorduğum ve olumsuz yanıt :lock: aldığım derlemleri (ordan burdan derlenmiş bi sürü metin) temiz bir operasyonla şimdi açıklamak istemediğim bi adreste önceden bu gibi durumlar için hazır beklettiğim sayfa üzerinden doğrudan kendi bilgisayarıma aktardım :butterflytwo:

toplam 70 MB'lık düz metin dosyası biçimindeki BROWN, FLOB, FROWN ve LOB derlemlerini 10 dakika içinde, ders esnasında bir pencerede BNC Web Edition'ı işlerken bi sayfadan ev bilgisayarıma gönderdim :ahoy:

resmen 'içerden' çalıştım... çok heyecanlı bi işlemdi...

corpus linguistics olayının open-source bi hal alması için bi yandan da Oxford University Press'in arkasında durduğu Mike Scott leylasının basitçe yazdığı ve karşılığında tek kullanıcılık lisans başına 90€ falan talep ettiği WordSmith Tools'un son sürümü 4.0'a rakip olarak geliştirdiğim Tenka Text projesi (WordLister'ını [link] 'da görebileceğiniz) için çalışmalarımı da sürdürmekteyim... :stereo:

Skype Calls

Sat Apr 8, 2006, 5:12 AM
En iyi arkadaşımla Skype görüşme kayıtlarını koydum alttaki linke! Bu adamla konuşurken bazen komik şeyler çıkıyo :aww:

[link]

Cisco VPN Client - Banner Auto Click

Fri Mar 24, 2006, 8:03 PM
a simple c++ application to instantly click the annoying network message (banner) window of cisco vpn client away. tastes best with some form of auto-initiation. (file size: 10KB, mem size: 100KB (x86))...

I needed this desperately for getting rid of the annoyance of having to be present at my computer to confirm that I read the university network message (mainly a reminder of proper conduct) each time the cisco vpn client reconnected. I range-tested the window messages to find out the one that triggered a button click and two messages 513 & 514 sent consequently did the trick!

I love the possibilities programming offers. :aww:

[Tested to comply with Cisco Systems VPN Client 4.7.00.0533]

****************

#include "stdafx.h"
#include <windows.h>

const LPCWSTR BannerWindowText = L"VPN Client | Banner";
extern HWND BannerWindow = 0;
extern HWND OkButton = 0;

int main()
{
while (true)
{
BannerWindow = FindWindow(NULL, BannerWindowText);

if (BannerWindow > 0)
{
OkButton = FindWindowEx(BannerWindow, 0, NULL, NULL);

if (OkButton > 0)
{
SendMessage(OkButton, 513, 0, 0);
SendMessage(OkButton, 514, 0, 0);
}
}

Sleep(5);

}
return 0;
}

Sponsored By Ninja Assassin

Site Map