• Welcome to the new forums! Server IP: smp.hometownmc.com
Hello There, Guest! Login Register


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finding my true birthday.
#1
As some of you know, I've been part of this server for a very very very long time, and im nearing close to four years or something like that, But the problem is, I have no idea the day I joined, Sadly I cannot now find it as I used to play on my dad's computer, and account (Cilgalad) The only thing I can remember on my first day is mining an obsidian tower for a player named DK, (Wasn't the admin DK, but was a different player) The only evidence I have of my existence on the server was a video dated in 2016, so far, but I joined before vote ranks even existed, if y'all could search your chat logs to help me, that would just be awesome! --For Clarification, I remember joining in 2014 - 2015 but only true evidence I have is of 2016
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
#2
what was your ign when you first joined? I'll see if I can find you
[Image: P4HqY8y.png]
 
Reply
#3
Cilgalad -
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
#4
I wrote a program to decompress every log I have (december 26th 2015 onwards) and check every line for the substring "Cilgalad" and ended up with 244 results. The earliest I've got is the 1st February 2016 with you being a Guest:

Code:
2016-01-02-6.log.gz b'[22:55:24] [Client thread/INFO]: [CHAT] Cilgalad joined the game\r\n'
2016-01-02-6.log.gz b'[23:08:36] [Client thread/INFO]: [CHAT] [Minigames] Cilgalad has been auto-balanced to Green Team\r\n'
2016-01-02-6.log.gz b'[23:12:10] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> i died im sad\r\n'
2016-01-02-6.log.gz b'[23:14:45] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> WELCOME\r\n'
2016-01-02-6.log.gz b'[23:17:45] [Client thread/INFO]: [CHAT] [Guest] JKitten6 >> i have over 64 diamonds Cilgalad\r\n'
2016-01-02-6.log.gz b'[23:19:46] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> how do u get in the giveaway frost?\r\n'
2016-01-02-6.log.gz b'[23:26:35] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> can some1 who alread has a rank that got an egg donate it to me\r\n'
2016-01-02-6.log.gz b'[23:29:20] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> is the rank giveaway over\r\n'
2016-01-02-6.log.gz b'[23:29:31] [Client thread/INFO]: [CHAT] [VIP3] ThatChicken1 >> Yes, Cilgalad\r\n'
2016-01-02-6.log.gz b'[23:32:39] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> is teaming allowed in this game\r\n'
2016-01-02-6.log.gz b'[23:39:03] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> i dont think i 3 man team is fair\r\n'
2016-01-02-6.log.gz b'[23:39:32] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> what does first place win?\r\n'
2016-01-02-6.log.gz b'[23:40:45] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> any1 voting for me?\r\n'
2016-01-02-6.log.gz b'[23:41:20] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> welcome\r\n'
2016-01-02-6.log.gz b'[23:41:58] [Client thread/INFO]: [CHAT] [Guest] Cilgalad >> i have a suggestion no teams so there is more fighting\r\n'
2016-01-05-1.log.gz b'[18:41:29] [Client thread/INFO]: [CHAT] Player: [Rookie] Cilgalad, [Rookie] onlineboy74, [Rookie] sebo599\r\n'
2016-01-05-1.log.gz b'[18:52:47] [Client thread/INFO]: [CHAT] [Rookie] Cilgalad >> hosting build battle at /waro cloudclover\r\n'
2016-01-05-1.log.gz b'[18:53:39] [Client thread/INFO]: [CHAT] [Rookie] Cilgalad >> hello penguin and blackbeuty follow me\r\n'
2016-01-05-1.log.gz b'[18:54:29] [Client thread/INFO]: [CHAT] [Rookie] Cilgalad >> follow me\r\n'


Hope that helps <3

If anyone else wants to do this, here's the code:

Code:
import gzip
from os import listdir

def search(substring):
    for file in listdir():
        if file.endswith('.log'):
            with open(file, 'r') as contents:
                for line in contents:
                    if substring in line.lower():
                        print(file, line)
        elif file.endswith('.log.gz'):
            with gzip.open(file, 'r') as contents:
                for line in contents:
                    if substring in str(line).lower():
                        print(file, str(line))

search(input().lower())
[Image: P4HqY8y.png]
 
Reply
#5
Jeez, that was the day before my actual birthday lol! And thank you for looking Pengu
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
#6
(04-02-2019, 07:56 AM)Cil Wrote: Jeez, that was the day before my actual birthday lol! And thank you for looking Pengu

Well, I got my computer for christmas that year, so that would have been the first time I logged into minecraft on this computer! If you were only a guest at the time then you can't have joined too long before that. I don't have any older logs because I had my laptop hard drive replaced at some point and lost them.
[Image: P4HqY8y.png]
 
Reply
#7
I got my old computer skills unrusted, spent a few hours on my old computer and brought my old computer back to life and I've found a file providing evidence from 2015 - (And I used your python code to help me Pengu!)

[2015-09-25] [18:04:09] [Client thread/INFO]: [CHAT] [Player] Cilgalad >> i am SO sry for not bieng active

This was my FIRST message from my old computer, on hometown, and I now continue my search into the past~

But for now, September 25th, 2015 is my Hometown Birthday.
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
#8
I've managed to extract my hard drive from my laptop and recover files from it. Unfortunately, it had no logs dating before december 2015 so this suggests that I had the drive wiped at some point in 2016

In other news, I am on track to fixing my laptop and being able to play on the server properly over easter :D
[Image: P4HqY8y.png]
 
Reply
#9
Oh gosh, that's great pengu, I can't wait to see you on in a few weeks!
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
#10
Thanks to DK_, my now known ht birthday is August 30th 2015!
8/15/2015
7/29/2019
5/3/2022
2/14/2023
 
Reply
  


Forum Jump:


Browsing: 1 Guest(s)