This file contains hidden or 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
# Installation of basic packages for a fresh debian-based linux installation | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install -y docker git docker-compose git maven openjdk-8-jdk openjdk-8-jre zsh redshift-gtk vlc | |
# Change default shell | |
chsh -s $(which zsh) | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# Install fusuma. tested on mint |
This file contains hidden or 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
#Tue Mar 10 23:19:41 EET 2020 | |
\!/= | |
/configuration/com.genuitec.eclipse.meexplorer/breadcrumb.show.default=true | |
/configuration/com.genuitec.eclipse.monitor//webclipse/ideused/dayOfMonth=10 | |
/configuration/com.genuitec.eclipse.monitor//webclipse/ideused/month=2 | |
/configuration/com.genuitec.eclipse.monitor/ideused=1 | |
/configuration/com.genuitec.eclipse.startup/features=[{"launchCount"\:45,"id"\:"com.genuitec.eclipse.theming.feature","version"\:"1.11.0.201909171704"}] | |
/configuration/com.genuitec.eclipse.startup/launchCount=45 | |
/configuration/com.genuitec.eclipse.startup/welcomeFlowVersionShown=3 | |
/configuration/com.genuitec.eclipse.theming.ui/applyBackground=false |
This file contains hidden or 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
<!-- Hibernate Mapping DTD. | |
<!DOCTYPE hibernate-mapping PUBLIC | |
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" | |
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> | |
An instance of this XML document may contain mappings for an arbitrary | |
number of classes. The class mappings may contain associations to classes | |
mapped in the same document or in another document. No class may be | |
mapped more than once. Each document may also contain definitions of an |
This file contains hidden or 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"?> | |
<kml xmlns="http://earth.google.com/kml/2.1"> | |
<Document> | |
<name>Taxi Routes</name> | |
<Style id="green"> | |
<LineStyle> | |
<color>ff009900</color> | |
<width>4</width> | |
</LineStyle> | |
</Style> |
This file contains hidden or 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> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<style type="text/css"> | |
html, body { height: 100%; margin: 0; padding: 0; } #map { height: 100%; } | |
</style> | |
<script type="text/javascript"> |