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
######################## | |
# Unalias to make functions priority | |
######################## | |
# unalias -m '*' | |
unalias -m 'gr' | |
unalias -m 'gl' | |
unalias -m 'glp' | |
unalias -m 'gdi' | |
unalias -m 'gra' |
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
using System; | |
using System.Net.Http; | |
namespace Platform | |
{ | |
// the platform controls the dependency injection | |
// External world calls internal-api/create-invoice | |
// A internal-api can call a module-api | |
// A module-api can not call another module-api | |
// If a module-api needs to call another package/microservice, it needs to specify the interface in its Client Library |
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
Strg Alt Shift Key Function | |
x Einf Generate/Insert dialog | |
x x ENTER Statements completion like blocks and brackets | |
x x T Surrond codeblock with… | |
x W Select succesively increasing code blocks | |
x F11 bookmarks and mark the line with selected key | |
x F11 invokes a list of bookmarks. Pressing a key takes to associated bookmark. | |
x x Backspace go to most recent code edit. Hit again to go even further back. | |
x E recent opened files | |
x x E recent edited files |
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
import static javax.swing.JOptionPane.*; | |
class NorskeBokstaver { | |
public static void main(String[] args){ | |
showMessageDialog(null,"\u00e6\u00f8\u00e5"); //æøå | |
showMessageDialog(null,"\u00c6\u00d8\u00c5"); //ÆØÅ | |
} | |
} |