Skip to content

Instantly share code, notes, and snippets.

@miketartar
Created September 26, 2020 04:21
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save miketartar/0fc8d7bca2369ce73ea9ee7b6e0c3775 to your computer and use it in GitHub Desktop.
Save miketartar/0fc8d7bca2369ce73ea9ee7b6e0c3775 to your computer and use it in GitHub Desktop.
Cold Turkey Blocker Activator
import json
import sqlite3
import os
DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db"
def activate():
try:
conn = sqlite3.connect(DB_PATH)
c = conn.cursor()
s = c.execute("SELECT value FROM settings WHERE key = 'settings'").fetchone()[0]
dat = json.loads(s)
if dat["additional"]["proStatus"] != "pro":
print("Your version of Cold Turkey Blocker is not activated.")
dat["additional"]["proStatus"] = "pro"
print("But now it is activated.\nPlease close Cold Turkey Blocker and run again it.")
c.execute("""UPDATE settings SET value = ? WHERE "key" = 'settings'""", (json.dumps(dat),))
conn.commit()
else:
print("Looks like your copy of Cold Turkey Blocker is already activated.")
print("Deactivating it now.")
dat["additional"]["proStatus"] = "free"
c.execute("""UPDATE settings set value = ? WHERE "key" = 'settings'""", (json.dumps(dat),))
conn.commit()
except sqlite3.Error as e:
print("Failed to activate", e)
finally:
if conn:
conn.close()
def main():
if os.path.exists(DB_PATH):
print("Data file found.\nLet's activate your copy of Cold Turkey Blocker.")
activate()
else:
print("Looks like Cold Turkey Blocker is not installed.\n If it is installed then run it at least once.")
if __name__ == '__main__':
main()
@yuridevnba
Copy link

oi, esse arquivo é para ter uma chave de ativação do cold turkey block?

@yuridevnba
Copy link

sou estudante de TI primeiro período, tô perdido como faço isso, se vc puder dá uma ajudada, já instalei o vscode e o phyton, mas n estou conseguindo,

@Frost-Lord
Copy link

Frost-Lord commented Sep 2, 2023

Step one:
Close cold turkey app and the minitray icon of coldTurkey

Create a file called ColdTurkeyBlockerActivator.py then open CMD to this dir.

Run this code (The one above is formatted incorrectly): name it ColdTurkeyBlockerActivator.py

import json
import sqlite3
import os

DB_PATH = "C:/ProgramData/Cold Turkey/data-app.db"

def activate():
    try:
        conn = sqlite3.connect(DB_PATH)
        c = conn.cursor()
        s = c.execute("SELECT value FROM settings WHERE key = 'settings'").fetchone()[0]
        dat = json.loads(s)

        if dat["additional"]["proStatus"] != "pro":
            print("Your version of Cold Turkey Blocker is not activated.")
            dat["additional"]["proStatus"] = "pro"
            print("But now it is activated.\nPlease close Cold Turkey Blocker and run again it.")
            c.execute("""UPDATE settings SET value = ? WHERE "key" = 'settings'""", (json.dumps(dat),))
            conn.commit()
        else:
            print("Looks like your copy of Cold Turkey Blocker is already activated.")
            print("Deactivating it now.")
            dat["additional"]["proStatus"] = "free"
            c.execute("""UPDATE settings set value = ? WHERE "key" = 'settings'""", (json.dumps(dat),))
            conn.commit()

    except sqlite3.Error as e:
        print("Failed to activate", e)
    finally:
        if conn:
            conn.close()

def main():
    if os.path.exists(DB_PATH):
        print("Data file found.\nLet's activate your copy of Cold Turkey Blocker.")
        activate()
    else:
        print("Looks like Cold Turkey Blocker is not installed.\nIf it is installed then run it at least once.")

if __name__ == '__main__':
    main()

Make sure you have python installed and do py ColdTurkeyBlockerActivator.py or python ColdTurkeyBlockerActivator.py

Then re-open the app & now you have pro

@Bidfca
Copy link

Bidfca commented Sep 2, 2023

Thank you

@Agnihotri2096
Copy link

Thank you so much. This code is 100% working. I am very grateful to you.

Copy link

ghost commented Oct 27, 2023

Thank you so much Brother ! I can't believe this works.

@Agnihotri2096
Copy link

Agnihotri2096 commented Oct 27, 2023 via email

@sh1vvy
Copy link

sh1vvy commented Nov 16, 2023

it works like a charm, really grateful to you man.

@Frost-Lord
Copy link

np

@LakshitBhati
Copy link

thank you so much it works great also I would like to tell anyone that is reading this that don't update the cold turkey they rectify these loop holes and you have to wait for the crack everytime

@Labusen
Copy link

Labusen commented Dec 26, 2023

Beautiful, now i can focus on my studies, you are a life saver! THANK YOU !

@rick232006
Copy link

Beautiful, now i can focus on my studies, you are a life saver! THANK YOU !

can you please help me do it cause i am not that techy person

@rick232006
Copy link

thank you so much it works great also I would like to tell anyone that is reading this that don't update the cold turkey they rectify these loop holes and you have to wait for the crack everytime

bro can you help do this cause i am not that techy person

@vovavili
Copy link

vovavili commented Dec 30, 2023

Looks brilliant. Suprised to see they trust you enough to make activation a matter of changing a flag in a JSON column in an SQL database.

@vovavili
Copy link

thank you so much it works great also I would like to tell anyone that is reading this that don't update the cold turkey they rectify these loop holes and you have to wait for the crack everytime

bro can you help do this cause i am not that techy person

https://www.youtube.com/watch?v=enfCPH_2k6A

@DilankaGunasekara
Copy link

Thank you

@kagankrc
Copy link

Thank you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment