- navigation mode
- insert mode
- select mode (plain, line, block)
- quit (:q :q!)
| require 'mysql2' | |
| def open_connection | |
| Mysql2::Client.new(host: 'localhost', username: 'root', database: 'repeatable_read_test') | |
| end | |
| class ThreadLogger | |
| def initialize(id) | |
| @id = id | |
| end |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <style> | |
| body { | |
| padding: 10px; | |
| } | |
| ul, li { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| </head> | |
| <body> | |
| <ol> | |
| <li> |
| web: | |
| command: sh -c "rails s --bind 0.0.0.0" | |
| ports: | |
| - "3000:3000" | |
| build: . | |
| volumes: | |
| - .:/app | |
| links: | |
| - redis:redis.local | |
| - mongodb:mongo.local |
| # You've got to the beginning of the document !!! | |
| # Use G to get to the end of the document | |
| ########### | |
| ## vimrc ## | |
| ########### | |
| git clone git@github.com:HugoLnx/vimrc.git | |
| cd vimrc | |
| cat use.sh |
| #require 'typhoeus' | |
| require 'rest-client' | |
| require 'open-uri' | |
| EXTENSIONS = %w[xml rss atom] | |
| SUFFIXES = %w[/ /feed /rss /atom /feed/rss /feed/atom /news /blog /news/feed /blog/feed] | |
| PREFIXES = %w[/feed /rss /atom] | |
| URLS = %w[ | |
| https://www.gamesradar.com/edge | |
| https://www.gamesradar.com/uk/edge/ |
| // Created based on the shadergraph for full screen shaders | |
| // Read more: https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@16.0/manual/post-processing/post-processing-custom-effect-low-code.html | |
| // This shader can be used in the place of the FullScreen Shader Graph | |
| // Add your logic to "TODO: Add custom logic here" | |
| Shader "CustomTemplate/FullscreenShader" | |
| { | |
| Properties | |
| { | |
| // [HideInInspector][NoScaleOffset]unity_Lightmaps("unity_Lightmaps", 2DArray) = "" {} |