Skip to content

Instantly share code, notes, and snippets.

View drucoder's full-sized avatar
😋
lets code right now!

Andrew drucoder

😋
lets code right now!
View GitHub Profile
@drucoder
drucoder / .bashrc
Created June 1, 2016 06:50
Git shell settings
# Show a current active git branch in the shell prompt
export PS1='\t \[\033[01;32m\]\u\[\033[01;34m\] \w\[\033[01;33m\]$(__git_ps1)\[\033[01;34m\] \$\[\033[00m\] '
# Shortcat for the pretty git log. Can be extended with the commit count parameter (last -10, last -35)
alias last='git log --graph --all --oneline --decorate '
@drucoder
drucoder / vim_cheatsheet.txt
Created January 21, 2018 12:57
ViM cheatsheet
Файл настройки: ~/.vimrc
Можно редактировать файлы через сеть, например
:e <scp|ftp|ftps>://user@host/path/to/the/file.txt
:Ex или :e ./ - файловый менеджер
== Основы ==
hjkl перемещение в разные стороны
i режим вставки
I добавление в начало строки
a режим добавления
@drucoder
drucoder / sqlite_dependecies.xml
Last active March 29, 2018 05:09
Spring Boot. Быстрый старт: зависимости для подключения БД SQLite
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.zsoltfabok</groupId>
<artifactId>sqlite-dialect</artifactId>
<version>1.0</version>
</dependency>
@drucoder
drucoder / application.properties
Created March 29, 2018 05:09
Spring Boot. Быстрый старт: настройки БД SQLite
spring.datasource.url=jdbc:sqlite:data.db
spring.jpa.database-platform=org.hibernate.dialect.SQLiteDialect
@drucoder
drucoder / mustache-dependency.xml
Created March 29, 2018 18:03
Spring Boot: mustache dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mustache</artifactId>
</dependency>
@drucoder
drucoder / application.properties
Created April 5, 2018 04:04
Spring Boot. Быстрый старт JPA (база данных)
spring.datasource.url=jdbc:postgresql://localhost/sweater
spring.datasource.username=postgres
spring.datasource.password=123
spring.jpa.generate-ddl=true
@drucoder
drucoder / pom.xml
Created April 5, 2018 04:05
Spring Boot. Быстрый старт JPA (база данных)
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
@drucoder
drucoder / application.properties
Created April 13, 2018 07:21
Spring Boot: Быстрый старт (Spring Security)
spring.mustache.expose-request-attributes=true
@drucoder
drucoder / application.properties
Last active August 15, 2020 10:48
Spring Boot. Быстрый старт Freemarker (шаблонизатор)
spring.freemarker.expose-request-attributes=true
@drucoder
drucoder / pom.xml
Created April 22, 2018 14:27
Spring Boot. Быстрый старт Freemarker (шаблонизатор)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>