Skip to content

Instantly share code, notes, and snippets.

View rimrachai-marma's full-sized avatar

Rimrachai Marma rimrachai-marma

View GitHub Profile
@rimrachai-marma
rimrachai-marma / JetBrains trial reset.md
Created December 7, 2025 04:28 — forked from mnabila/JetBrains trial reset.md
Reset all JetBrains products trial in Linux

In some cases, only these lines will work

for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
    rm -rf ~/.config/$product*/eval 2> /dev/null
    rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done

But if not, try these

@rimrachai-marma
rimrachai-marma / server.py
Created July 24, 2020 02:55 — forked from davidbgk/server.py
An attempt to create the simplest HTTP Hello world in Python3
import http.server
import socketserver
from http import HTTPStatus
class Handler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
self.send_response(HTTPStatus.OK)
self.end_headers()
self.wfile.write(b'Hello world')