Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


What are all you CEF acquaintances up too.
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
Deleted User 197371
Guest





PostPosted: Sat Mar 03, 2012 12:02 am    Post subject: What are all you CEF acquaintances up too. Reply with quote

Title.
Back to top
Deleted User 197371
Guest





PostPosted: Sat Mar 03, 2012 12:04 am    Post subject: Reply with quote

Talix wrote:
teaching myself calculus
dunking you


Getting drunk n gonna ignite some bud in a bit.

and counter dunking you...
Back to top
Kavvman
Master Cheater
Reputation: 2

Joined: 17 Apr 2004
Posts: 316

PostPosted: Sat Mar 03, 2012 1:47 am    Post subject: Reply with quote

playing a game
_________________
...
Back to top
View user's profile Send private message
Deleted User 197371
Guest





PostPosted: Sat Mar 03, 2012 1:54 am    Post subject: Reply with quote

Kavvman wrote:
playing a game


What game sir.
Back to top
Kavvman
Master Cheater
Reputation: 2

Joined: 17 Apr 2004
Posts: 316

PostPosted: Sat Mar 03, 2012 1:59 am    Post subject: Reply with quote

Darkness 2

pretty fun game with all the tentacles and shit you have

_________________
...
Back to top
View user's profile Send private message
Dark‮&#8238
Advanced Cheater
Reputation: 5

Joined: 16 Jun 2011
Posts: 79
Location: <3

PostPosted: Sat Mar 03, 2012 3:17 am    Post subject: Reply with quote

Mooplestory
Back to top
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
kosmas
Expert Cheater
Reputation: 9

Joined: 12 Sep 2008
Posts: 157

PostPosted: Sat Mar 03, 2012 9:52 am    Post subject: Reply with quote

init <3 wrote:
Mooplestory


Tell me it's a private server atleast
Back to top
View user's profile Send private message MSN Messenger
bfsdbsdfbdsfb
Grandmaster Cheater
Reputation: 54

Joined: 06 Sep 2007
Posts: 702
Location: Oh noez.

PostPosted: Sat Mar 03, 2012 10:10 am    Post subject: Reply with quote

playing league of legends with kuro and sora while listening to JMT
_________________
bsdfbdsfb
Back to top
View user's profile Send private message
br0l0ck
Cheater
Reputation: 63

Joined: 15 Aug 2007
Posts: 36

PostPosted: Sat Mar 03, 2012 10:12 am    Post subject: Reply with quote

woke up
cold as FUCK
wearing my hoodie and listening to music
Back to top
View user's profile Send private message
Aniblaze
Grandmaster Cheater Supreme
Reputation: 138

Joined: 23 Apr 2006
Posts: 1757
Location: The Netherlands

PostPosted: Sat Mar 03, 2012 10:24 am    Post subject: Reply with quote

Making an imageboard application that works without a database, makes use of smart caching, and a search method I've come up with after doing the Udacity classes for a search engine.
Back to top
View user's profile Send private message
InternetIsSeriousBusiness
Grandmaster Cheater Supreme
Reputation: 8

Joined: 12 Jul 2010
Posts: 1268

PostPosted: Sat Mar 03, 2012 10:26 am    Post subject: Reply with quote

^wat
Back to top
View user's profile Send private message
Aviar³
Grandmaster Cheater
Reputation: 50

Joined: 03 Jan 2008
Posts: 655
Location: Canada

PostPosted: Sat Mar 03, 2012 10:29 am    Post subject: Reply with quote

Augustine wrote:
Making an imageboard application that works without a database, makes use of smart caching, and a search method I've come up with after doing the Udacity classes for a search engine.


Sounds boss. Doing search right? That is, it can match partial terms.

_________________
This is the inception of deception, checking the depth of your perception.
Back to top
View user's profile Send private message
Aniblaze
Grandmaster Cheater Supreme
Reputation: 138

Joined: 23 Apr 2006
Posts: 1757
Location: The Netherlands

PostPosted: Sat Mar 03, 2012 10:45 am    Post subject: Reply with quote

Aviar³ wrote:
Augustine wrote:
Making an imageboard application that works without a database, makes use of smart caching, and a search method I've come up with after doing the Udacity classes for a search engine.


Sounds boss. Doing search right? That is, it can match partial terms.

I'm still working hard on the architecture of the application, I only started yesterday. In short my plan is to cache the file/folder structure in chunks, for it to allow new files/folders to be added quickly. The 'recaching' will only happen when something new is added (will probably use 'date modified' to check for new file/folders), and will only update the chunk which is supposed to hold it.

I'll probably use several serialized arrays, each responsible for an alphabetic letter, holding an image object belong to the tag in question. This will allow for tag search to work fast, I hope. Partial searches could be done as well, as long as I use a selection or heap sort, I guess. I cross that point once I get there.
Back to top
View user's profile Send private message
Deleted User 197371
Guest





PostPosted: Sat Mar 03, 2012 12:33 pm    Post subject: Reply with quote

Augustine wrote:
Aviar³ wrote:
Augustine wrote:
Making an imageboard application that works without a database, makes use of smart caching, and a search method I've come up with after doing the Udacity classes for a search engine.


Sounds boss. Doing search right? That is, it can match partial terms.

I'm still working hard on the architecture of the application, I only started yesterday. In short my plan is to cache the file/folder structure in chunks, for it to allow new files/folders to be added quickly. The 'recaching' will only happen when something new is added (will probably use 'date modified' to check for new file/folders), and will only update the chunk which is supposed to hold it.

I'll probably use several serialized arrays, each responsible for an alphabetic letter, holding an image object belong to the tag in question. This will allow for tag search to work fast, I hope. Partial searches could be done as well, as long as I use a selection or heap sort, I guess. I cross that point once I get there.


How long you think it will take to finish.
Back to top
Aviar³
Grandmaster Cheater
Reputation: 50

Joined: 03 Jan 2008
Posts: 655
Location: Canada

PostPosted: Sat Mar 03, 2012 12:37 pm    Post subject: Reply with quote

Augustine wrote:
Aviar³ wrote:
Augustine wrote:
Making an imageboard application that works without a database, makes use of smart caching, and a search method I've come up with after doing the Udacity classes for a search engine.


Sounds boss. Doing search right? That is, it can match partial terms.

I'm still working hard on the architecture of the application, I only started yesterday. In short my plan is to cache the file/folder structure in chunks, for it to allow new files/folders to be added quickly. The 'recaching' will only happen when something new is added (will probably use 'date modified' to check for new file/folders), and will only update the chunk which is supposed to hold it.

I'll probably use several serialized arrays, each responsible for an alphabetic letter, holding an image object belong to the tag in question. This will allow for tag search to work fast, I hope. Partial searches could be done as well, as long as I use a selection or heap sort, I guess. I cross that point once I get there.


Sounds like distributed architecture. Something similar to mapreduce or hadoop.

_________________
This is the inception of deception, checking the depth of your perception.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites