Skip to content

Instantly share code, notes, and snippets.

View absalan's full-sized avatar

Absalan Inc absalan

  • Seattle, WA
View GitHub Profile
@absalan
absalan / normcore-llm.md
Created September 2, 2023 11:16 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
@absalan
absalan / open_menu.reg
Last active April 16, 2018 08:46
Add context menu to Windows 7, 8, 10 to open folder in PhpStorm
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\PHPstorm]
@="Open PHPstorm Here"
"Icon"="C:\\Program Files\\JetBrains\\PhpStorm 2017.3.4\\bin\\phpstorm64.exe,0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\PHPstorm\command]
@="\"C:\\Program Files\\JetBrains\\PhpStorm 2017.3.4\\bin\\phpstorm64.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Directory\shell\PHPstorm]
@absalan
absalan / .html
Last active August 18, 2017 10:08
Javascript load CSV data and render it in table tag
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css">
<body>
<table class="table table-bordered">
<thead>
<th>Time</th>
<th>Amount</th>
@absalan
absalan / docker-tips.md
Created May 13, 2016 11:50 — forked from umidjons/docker-tips.md
Docker tips

Docker Tips

Installation and first time run experience on Windows 8.1

I use Windows 8.1 for Docker.

After installation when I tried to run docker, for example docker run hello-world from cmd I received the following error:

C:\Program Files\Docker Toolbox\docker.exe: An error occurred trying to connect: Post http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.23/containers/create: open //./pipe/docker_engine: The system cannot find the file specified..
See 'C:\Program Files\Docker Toolbox\docker.exe run --help'.