Skip to content

Instantly share code, notes, and snippets.

View mullerhai's full-sized avatar

Muller Helen mullerhai

View GitHub Profile
@mullerhai
mullerhai / extend-trial-jetbrains-windows.bat
Created January 27, 2025 06:48 — forked from rjescobar/extend-trial-jetbrains-windows.bat
JetBrains IDE trial reset windows
REM Delete eval folder with licence key and options.xml which contains a reference to it
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do (
for /d %%a in ("%USERPROFILE%\.%%I*") do (
rd /s /q "%%a/config/eval"
del /q "%%a\config\options\other.xml"
)
)
REM Delete registry key and jetbrains folder (not sure if needet but however)
rmdir /s /q "%APPDATA%\JetBrains"
@mullerhai
mullerhai / stockPredict_.idea_compiler.xml
Created June 27, 2017 01:47
Deeplearning4J predict stock
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<annotationProcessing>
<profile name="Maven default annotation processors profile" enabled="true">
<sourceOutputDir name="target/generated-sources/annotations" />
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
<outputRelativeToContentRoot value="true" />
<module name="stockPredict" />
</profile>
@mullerhai
mullerhai / 0_reuse_code.js
Created May 8, 2014 03:38
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console