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 test.fusekitest.controllers; | |
import org.apache.jena.query.QueryExecution; | |
import org.apache.jena.query.ResultSet; | |
import org.apache.jena.query.ResultSetFormatter; | |
import org.apache.jena.rdfconnection.*; | |
import org.apache.jena.update.UpdateFactory; | |
import org.apache.jena.update.UpdateRequest; | |
import org.springframework.web.bind.annotation.*; |
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
{ | |
"editor.cursorBlinking": "phase", | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
"editor.lineHeight": 25, | |
"editor.minimap.enabled": false, | |
"editor.fontFamily": "Monaco, 'Courier New', monospace", | |
"terminal.integrated.shell.osx": "/usr/local/bin/fish", | |
"terminal.integrated.fontSize": 14, | |
"editor.formatOnSave": 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
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
# Replace Your this block with this one | |
if [ "$color_prompt" = yes ]; then | |
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\w\[\033[00m\] \[\033[01;34m\]$(parse_git_branch)\[\033[00m\] \n) ' | |
else | |
PS1='${debian_chroot:+($debian_chroot)}\w $(parse_git_branch) \n) ' |
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
Show hidden characters
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"detect_slow_plugins": false, | |
"font_face": "Operator Mono SSm Lig", | |
"font_size": 15.0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ |
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
# To run $ sh perfect-loki.sh | |
# update repositories | |
sudo apt-get update | |
# Removing apps | |
echo '\n[?]Do you want to remove Epiphany Browser? [Y/n] ' | |
read answer | |
if echo "$answer" | grep -iq "^n" ;then | |
echo '[>>>>>>>>>>>>>>>>>>>>] Not removing Epiphany Browser' |
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
# first install dependecies | |
sudo apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev build-essential python-dev | |
# then now time to install lxml | |
sudo pip install lxml |