Erceis.com

Colossal Confusion

Jan
12
Posted In : Oyun
Tarih:
11.01.2008
Katılımcılar:
  • Gürel Erceiş
  • Görkem Yüksel
  • Utku Akay
  • Sermetcan Baysal
  • Emre Dirican
Getirelecek Oyun Listesi:
  • Stronghold ( Gürel )
  • Command & Conquer: Tiberium Wars ( Gürel )
  • Counter-Strike 1.6 Reloaded ( Gürel )
  • Starcraft ( Gürel )
  • Quake 3 ( Görkem )
Saat:
17:30 - 24:00
Yer:
Şimdilik B Binası
Stats
Quake III
1- Görkem 151
2- Gürel 128
10 Adet Botlu
Quake III
1- Emre 201
2- Gürel 178
3- Sermet 114
4- Utku 108
10 Adet Botlu
Quake III Capture The Flag
1- Gürel-Görkem-Sorlag 51
2- Emre-Sermet-Utku 38
Last Updated: 00:36 12.01.2008

Blogged with Flock

Posted At Saturday, January 12, 2008 12:30:04 AM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Jan
08

Way #1

1. Open a new tab. Type "about:config" without quotes into the address bar and hit enter/click Go.

2. Right-click anywhere, select New, then Integer. In the dialog prompt that appears, type:

browser.cache.memory.capacity

3. Click OK. Another dialog prompt will appear. This is where you decide how much memory to allocate to Firefox. This depends on how much RAM your computer has, but generally you don't want to allocate too little (under 8MB), but if you allocate too much, you might as well not do this. A good recommended setting is 16MB. If you want 16MB, enter this value into the dialog prompt:

16384

Or look up from the table below

Physical RAM Memory Cache (in KB)
32 MB 2048
64 MB 4096
128 MB 6144
256 MB 10240
512 MB 14336
1 GB 18432
2 GB 24576
4 GB 30720
8 GB and up 32768

4. Click OK to close the dialog box, then close all instances of Firefox and restart. If your Firefox still uses the same amount of memory, give it a few minutes and it should slowly clear up. If that fails, try a system reboot.

Way #2

1. Open a new tab. Type "about:config" without quotes into the address bar and hit enter/click Go.

2. Right-click anywhere, select New, then Integer. In the dialog prompt that appears, type:

config.trim_on_minimize

3. Click OK. Another dialog prompt will appear.  Select:

true

4. Click OK to close the dialog box, then close all instances of Firefox and restart. If your Firefox still uses the same amount of memory, give it a few minutes and it should slowly clear up. If that fails, try a system reboot.

Blogged with Flock

Posted At Tuesday, January 08, 2008 7:55:59 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
22
activexdebugger is a virus spreading through flash drives and other external storage devices. It embeds itself into the system and infects every device connected to that computer.

It enables sharing of your local drives to network abuse.
Also it messes up with the double click on the devices infected.

There is a virus removal tool. it's turkish but you will get the idea. hit the large button only. afterward it will ask if you wish to restart. If you minimize the application to tray it will silently seek for the virus, scanning every external drive.

Here it is

Dracula Virüs Temizleyici V 3.0.exe (136 KB)

P.S.: It requires .net v2.0

Tags: activexdebugger.exe, dracula, virus, removal, security, clean

Posted At Saturday, December 22, 2007 11:52:00 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
22

activexdebugger flash diskler ve diğer harici sürücülerle bulaşan bir virüstür. Kendini sisteme bağlayıp, sistemde bulunan bütün disklere bulaşır.


Yerel disklerinizi paylaşıma açarak dışarıdan gelecek ziyaretçiler için açık kapılar bırakır. Ayrıca harici disklere çift tıklanıldığında yapılan işlemlerle oynadığından çeşitli hatalar da doğurabilir.

Aşağıda bu virüsü temizlemek için küçük bir uygulama var. Programı açıp "Virüsten Kurtul" tuşuna basmanız yeterlidir. Bundan sonra da bilgisayarı baştan başlatmak isteyip istemediğinizi soracaktır. Eğer uygulamayı minimize ederseniz uygulamam takılacak olan flash diskleri ve harici diskleri bağlantı sırasında kontrol edip virüsün bulaşmasını da engelleyecektir.


Dracula Virüs Temizleyici V 3.0.exe (136 KB)

P.S.: Uygulamanın çalışması için .Net 2.0 gereklidir. Windows Update de bulunabilinir.

Tags: activexdebugger.exe, dracula, virüs, temizleme, güvenlik, silme

Posted At Saturday, December 22, 2007 12:59:34 PM (GTB Standard Time, UTC+02:00)
Comments [1] | | Permalink |       |  
Dec
12
Note: For v2.1 only don't know if it exists on other versions

1. Open DasBlog All Solution File from source Directory
2. Open SharedBasePage.cs from newtelligence.DasBlog.Web.Core project
3. Search for private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode) method
4. Change From:
private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode)
{
    EntryIdCache cacheToCopy = DataService.GetEntryIdCache();

    //Shallow copy as we're going to modify it...and we don't want to modify THE cache.
    EntryIdCacheEntryCollection cache = (EntryIdCacheEntryCollection)cacheToCopy.Entries.Clone();

    if (pageIndex * entriesPerPage < cache.Count)
    {
        // Remove all entries before the page's first entry.
        for (int i = 0; i < pageIndex * entriesPerPage; i++)
        {
            cache.RemoveAt(0);
        }
        // Remove all entries after the page's last entry.
        if (cache.Count - entriesPerPage > 0)
        {
            cache.RemoveRange(entriesPerPage, cache.Count - entriesPerPage);
        }

        return DataService.GetEntries(null, EntryCollectionFilter.DefaultFilters.IsInEntryIdCacheEntryCollection(cache),
                                      Int32.MaxValue,
                                      Int32.MaxValue);
    }  

    // The page index is out of range (i.e. too large).
    return new EntryCollection();
}
To:
private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode)
{
    EntryCollection toClone = DataService.GetEntries(null, null, int.MaxValue, int.MaxValue);
    EntryCollection allEntries = (EntryCollection)toClone.Clone();

    if (pageIndex * entriesPerPage < allEntries.Count)
    {
        // Remove all entries before the page's first entry.
        for (int i = 0; i < pageIndex * entriesPerPage; i++)
        {
            allEntries.RemoveAt(0);
        }
        // Remove all entries after the page's last entry.
        if (allEntries.Count - entriesPerPage > 0)
        {
            allEntries.RemoveRange(entriesPerPage, allEntries.Count - entriesPerPage);
        }

        return allEntries;
    }

    // The page index is out of range (i.e. too large).
    return new EntryCollection();
}
5. Update newtelligence.DasBlog.Web.Core.dll in your bin folder

now frontpage paging should work on v2.1

Posted At Wednesday, December 12, 2007 12:07:31 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
«Older Posts        Newer Posts»

Navigation

Search


Calendar

<August 2008>
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

Categories


On this page

Oyun Gecesi 1
Fixing Firefox's memory leak
How to Remove activexdebugger.exe?
activexdebugger.exe yi kaldırmak / temizlemek / silmek
dasBlog Front Page Paging Fix

Be 	a Flockstar

Tag Cloud

About Me (1) Applications (6) dasBlog (2) Download (1) İlişkiler (1) Media (4) MPC (2) Oyun (1) Programming Languages (1) Tv Shows (1) Virus (2)

Archive


Blogroll

RSS 2.0 Atom 1.0 CDF

Send mail to the author(s) E-mail

Sign In

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008, Gürel Erceiş. | The YUI Grid CSS
Page rendered at  Thursday, August 28, 2008 8:50:00 PM (GTB Standard Time, UTC+02:00)