I hereby claim:
- I am klazuka on github.
- I am klazuka (https://keybase.io/klazuka) on keybase.
- I have a public key ASAIkME8bJygt-8l2YV-ONJPpL3Qx8cSwBHZhxipKX1bPQo
To claim this, I am signing this object:
go to https://vampire-survivors.fandom.com/wiki/Evolution | |
and read about the evolution recipes in the game | |
then open jsbin.com in another tab | |
Write HTML in the left-side pane to make an interactive HTML tool to lookup Vampire Survivor evolutions for a given base weapon. Once the user picks a base weapon, show the passive item it requires and what item it turns into. Use the data from the wiki. | |
use the right-side frame to verify that the HTML program works correctly. | |
If it doesn't work, go back to the html and make the appropriate edits by completely replacing the old contents with the new HTML. Repeat until the HTML app you made works well. |
Create a new Github repository called recipes-html. In the new repository, write a Python web app using FastApi. Use github's built-in text editor to write code and commit it to the repository. The web app should be configured such that every api route handler takes www form data as the input, extracting the form based on the handler function's parameters. And the handler's return a string with content type "text/html". (by default FastApi uses JSON for both requests and responses but we are making an old school web app). | |
Use jinja2 to template the html. And the base HTML template should import htmx. Import htmx like this: <script src="https://unpkg.com/[email protected]" integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+" crossorigin="anonymous"></script> | |
The application should provide basic CRUD operations for a recipe management website. And the HTML should use htmx so that it can send data to the server and update parts of the DOM without doing a full-page reload. |
WARNING: these are raw notes. I do not work for JetBrains. This is just meant to give a rough overview. | |
DataManager | |
- convert a Swing component into a DataContext (which can then be queried) | |
- handles the tree walk to find the focused Swing component | |
- you can call `registerDataProvider()` to register yourself as a data provider for the action system | |
DataContext |
I hereby claim:
To claim this, I am signing this object:
# based on https://raw.githubusercontent.com/fastai/courses/master/setup/install-gpu-azure.sh | |
# modified January 2018 to fix various issues found in the original install script | |
# assumes that you installed your Azure VM using the Deep Learning Virtual Machine template | |
# TODO why did the original script install Anaconda? Maybe the Azure VM didn't used to come with it? | |
sudo apt-get update && sudo apt-get --assume-yes upgrade | |
sudo apt-get --assume-yes install tmux build-essential gcc g++ make binutils | |
sudo apt-get --assume-yes install software-properties-common | |
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.44-1_amd64.deb |
module YourAPIClient exposing (Config, otherFunctions) | |
import Http | |
import Json.Decode as Decode | |
import Json.Encode as Encode | |
-- Config | |
I hereby claim:
To claim this, I am signing this object:
# Change the terminal title automatically based on current process / working-directory | |
# | |
# The main improvement over the default 'fish_title' behavior | |
# is that I use the name of the current git repo, if any, as | |
# opposed to the raw working-directory | |
function fish_title | |
set -l command (echo $_) | |
if test $command = "fish" | |
# we are sitting at the fish prompt |
function mk_prompt | |
{ | |
# script to visually list terminal color codes: | |
# http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html | |
local GRAY="\[\033[0;37m\]" | |
local BOLD_GRAY="\[\033[1;37m\]" | |
local GREEN="\[\033[0;32m\]" | |
local BOLD_GREEN="\[\033[1;32m\]" | |
local CYAN="\[\033[0;36m\]" | |
local BOLD_CYAN="\[\033[1;36m\]" |