-
Install vifm
-
Install Nerd Fonts Mono
mkdir -p ~/.local/share/fonts cd ~/.local/share/fonts && curl -fLo "IBM 3270 Nerd Font Complete.otf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/3270/Regular/complete/IBM%203270%20Nerd%20Font%20Complete.otf?raw=true cd ~/.local/share/fonts && curl -fLo "IBM 3270 Nerd Font Complete Mono.otf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/3270/Regular/complete/IBM%203270%20Nerd%20Font%20Complete%20Mono.otf?raw=true
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>XSS Demo</title> | |
<meta http-equiv="Content-Security-Policy" content="" /> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pl.edu.lafk.tdd.podroby; | |
/** | |
* @author Tomasz @LAFK_pl Borek | |
*/ | |
class Adres { | |
String ulica; | |
short nrLokalu; | |
short nrDomu; |
Why bother? Explained by Jim Dennis in accepted answer to a common question: https://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim which actually ponders why bother with VIM if it breaks "the default" Ctrl+f, Ctrl+C, Ctrl+V, Ctrl+A that one learned from other (usually MS) tools...
vimtutor
-> man vim
-> and when in Vim ':help whatever-you-need-help-on'.
Also, echo "set nocompatible" >> ~/.vimrc
so that your Vim acts like Vim and not like VI. >>
appends, to not overwrite if you already had a Vim config file (.vimrc
).
- opisy - "dlaczego", nie "co" czy "jak"?
- Czy migawki się powtarzają? -
git log --format="%B" | sort | uniq -c | head
- Czy ich opisy są użyteczne?
- długość opisów? -
git log --format="%B" > l; awk '{ print length($0); }' l | sort -n
, do CSV i rób wykres i licz średnią - spójność opisów (te same nazwy, styl)? -
git log --format="%B" | sort
- czas teraźniejszy w nich? - j.w.
- opisy odwołują się do czegoś (kwitów, konkretnych poprawek, recek, komciów, wymagań)?
- % rozległych?
- Ile % migawek ma pliki znikąd?
From: http://freemind.sourceforge.net/wiki/index.php/Getting_started_as_a_developer
Compile, Branch and Patch of the lastest version
- get the latest code:
git clone git://freemind.git.sourceforge.net/gitroot/freemind/freemind
cd freemind/freemind
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pl.edu.lafk.colours; | |
enum ANSI { | |
RESET("\u001B[0m"), | |
BLACK("\u001B[30m"), | |
RED("\u001B[31m"), | |
GREEN("\u001B[32m"), | |
YELLOW("\u001B[33m"), | |
BLUE("\u001B[34m"), | |
PURPLE("\u001B[35m"), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>pl.lafk</groupId> | |
<artifactId>#APP</artifactId> | |
<version>0.1</version> | |
<name>#NAME</name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hazelcast; | |
public class Main { | |
public static void main(String[] args) { | |
// Add necessary code to start up a Hazelcast instance and | |
// run the application multiple times to cluster them up | |
} | |
} |
NewerOlder