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
“Descartes maintains that we cannot accept anything as being true unless we can clearly and | |
distinctly perceive it. To achieve this can require the breaking down of a compound problem into as | |
many single factors as possible. Then we can take our point of departure in the simplest idea of all. | |
You could say that every single thought must be weighed and measured, rather in the way Galileo | |
wanted everything to be measured and everything immeasurable to be made measurable. Descartes | |
believed that philosophy should go from the simple to the complex. Only then would it be possible to | |
construct a new insight. And finally it would be necessary to ensure by constant enumeration and | |
control that nothing was left out. Then, a philosophical conclusion would be within reach.” | |
“It sounds almost like a math test.” | |
“Yes. Descartes was a mathematician; he is considered the father of analytical geometry, and he |
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
Install ms-sys | |
You will need ms-sys to write a Master Boot Record (MBR) to the USB drive. | |
Make sure you have installed the gcc, make, and gettext repository packages in order to compile the source code. | |
Download the latest source code from http://ms-sys.sourceforge.net/#Download. | |
Un-tar the source code and change into the source code directory: | |
tar xvzf ms-sys-2.3.0.tar.gz |
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
# Path to your oh-my-zsh installation. | |
export ZSH=/home/dcrystalj/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="robbyrussell" | |
# Uncomment the following line to use case-sensitive completion. |
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
diodon -> clipboard manager | |
redshift -> auto change screen temperature at night | |
xclip -> copy to clipboard from terminal | |
gcp -> copy with progress |
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"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- | |
Documented at | |
http://linux.die.net/man/5/fonts-conf | |
To check font mapping run the command at terminal | |
$ fc-match 'helvetica Neue' |
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
set -g default-shell /bin/zsh | |
set-option -g prefix C-k | |
unbind % # Remove default binding since we’re replacing | |
bind / split-window -h -c "#{pane_current_path}" | |
bind \ split-window -v -c "#{pane_current_path}" | |
setw -g monitor-activity on | |
set -g visual-activity on | |
set-option -g history-limit 20000 |
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
# This file automatically written by the Pidgin GTK+ Theme Control plugin. | |
# Any changes to this file will be overwritten by the plugin when told to | |
# write the settings again. | |
# The FAQ (http://developer.pidgin.im/wiki/FAQ) contains some further examples | |
# of possible pidgin gtkrc settings. | |
gtk-font-name = "Calibri 10" | |
style "purplerc_style" | |
{ | |
GtkIMHtml::hyperlink-color = "#7B9DFD" | |
GtkIMHtml::hyperlink-visited-color = "#5F85FF" |
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
from flask import Flask, Response | |
from flask.ext.cors import CORS | |
import os.path | |
import logging | |
def root_dir(): # pragma: no cover | |
return os.path.abspath(os.path.dirname(__file__)) | |
def get_file(filename): # pragma: no cover | |
try: |
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
WIFI | |
https://dl.dropboxusercontent.com/u/80256631/mt7601-4.1.9-819.tar.gz | |
wifi driverji: https://www.raspberrypi.org/forums/viewtopic.php?f=28&t=114138&p=807345 | |
https://gist.github.com/simlun/1b27b14d707abbba8fc1 | |
http://unix.stackexchange.com/questions/121523/check-if-interface-eth0-is-up-configured | |
sudo rpi-update a51e2e072f2c349b40887dbdb8029f9a78c01987 |
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
# Path to your oh-my-zsh installation. | |
export ZSH=/home/tomaz/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="gallois" | |
# Uncomment the following line to use case-sensitive completion. |