| View previous topic :: View next topic |
| Author |
Message |
Deleted User 197371 Guest
|
Posted: Sat Mar 03, 2012 12:02 am Post subject: What are all you CEF acquaintances up too. |
|
|
| Title.
|
|
| Back to top |
|
 |
Deleted User 197371 Guest
|
Posted: Sat Mar 03, 2012 12:04 am Post subject: |
|
|
| 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
|
Posted: Sat Mar 03, 2012 1:47 am Post subject: |
|
|
playing a game
_________________
... |
|
| Back to top |
|
 |
Deleted User 197371 Guest
|
Posted: Sat Mar 03, 2012 1:54 am Post subject: |
|
|
| Kavvman wrote: | | playing a game |
What game sir.
|
|
| Back to top |
|
 |
Kavvman Master Cheater
Reputation: 2
Joined: 17 Apr 2004 Posts: 316
|
Posted: Sat Mar 03, 2012 1:59 am Post subject: |
|
|
Darkness 2
pretty fun game with all the tentacles and shit you have
_________________
... |
|
| Back to top |
|
 |
Dark‮‮ Advanced Cheater
Reputation: 5
Joined: 16 Jun 2011 Posts: 79 Location: <3
|
Posted: Sat Mar 03, 2012 3:17 am Post subject: |
|
|
| Mooplestory
|
|
| Back to top |
|
 |
kosmas Expert Cheater
Reputation: 9
Joined: 12 Sep 2008 Posts: 157
|
Posted: Sat Mar 03, 2012 9:52 am Post subject: |
|
|
| init <3 wrote: | | Mooplestory |
Tell me it's a private server atleast
|
|
| Back to top |
|
 |
bfsdbsdfbdsfb Grandmaster Cheater
Reputation: 54
Joined: 06 Sep 2007 Posts: 702 Location: Oh noez.
|
Posted: Sat Mar 03, 2012 10:10 am Post subject: |
|
|
playing league of legends with kuro and sora while listening to JMT
_________________
bsdfbdsfb |
|
| Back to top |
|
 |
br0l0ck Cheater
Reputation: 63
Joined: 15 Aug 2007 Posts: 36
|
Posted: Sat Mar 03, 2012 10:12 am Post subject: |
|
|
woke up
cold as FUCK
wearing my hoodie and listening to music
|
|
| Back to top |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Sat Mar 03, 2012 10:24 am Post subject: |
|
|
| 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 |
|
 |
InternetIsSeriousBusiness Grandmaster Cheater Supreme
Reputation: 8
Joined: 12 Jul 2010 Posts: 1268
|
Posted: Sat Mar 03, 2012 10:26 am Post subject: |
|
|
| ^wat
|
|
| Back to top |
|
 |
Aviar³ Grandmaster Cheater
Reputation: 50
Joined: 03 Jan 2008 Posts: 655 Location: Canada
|
Posted: Sat Mar 03, 2012 10:29 am Post subject: |
|
|
| 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 |
|
 |
Aniblaze Grandmaster Cheater Supreme
Reputation: 138
Joined: 23 Apr 2006 Posts: 1757 Location: The Netherlands
|
Posted: Sat Mar 03, 2012 10:45 am Post subject: |
|
|
| 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 |
|
 |
Deleted User 197371 Guest
|
Posted: Sat Mar 03, 2012 12:33 pm Post subject: |
|
|
| 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
|
Posted: Sat Mar 03, 2012 12:37 pm Post subject: |
|
|
| 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 |
|
 |
|