actions.js
- stores actions
routes.js
- triggers actions
- manages redirects
- handles user permissions
- extracts post body
| import java.sql.*; | |
| import java.sql.DriverManager; | |
| import java.sql.SQLException; | |
| import java.sql.Statement; | |
| public class DBSUebung { | |
| /** | |
| * Get a new database connection | |
| * |
| { | |
| "value": 4.2199507, | |
| "description": "product of:", | |
| "details": [ | |
| { | |
| "value": 6.3299255, | |
| "description": "sum of:", | |
| "details": [ | |
| { | |
| "value": 0.023222063, |
| PluggableListMorph subclass: #STweetPluggableListMorph | |
| instanceVariableNames: '' | |
| classVariableNames: '' | |
| poolDictionaries: '' | |
| category: 'Project08-Core' | |
| listItemHeight | |
| "This should be cleaned up. The list should get spaced by this | |
| parameter. " |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| <head> | |
| <!-- DEFAULT VARIABLES --> | |
| <meta name="color:Accent" content="#ffff01" /> | |
| <meta name="color:Background" content="#ffffff" /> | |
| <meta name="color:Text" content="#000000" /> | |
| <meta name="color:Link" content="#666666" /> |
actions.js
routes.js
| var url = 'http://nico.is'; | |
| var win = window.open(url, '_blank'); | |
| win.focus(); |
| $(document).ready(function(){ | |
| $('a[href*="#"]').on('click',function (e) { | |
| if(!($(this.hash).length)) return true; | |
| e.preventDefault(); | |
| var target = this.hash; | |
| var $target = $(target); | |
| $('html, body').stop().animate({ |
In case you want to convert your PT readings from PPT(X) to PDF it's really easy:
If you own an linux you can use the following command:
$ libreoffice --headless --invisible --convert-to pdf --outdir /Users/Nico/Desktop/pt /Users/Nico/Desktop/pt/*.pptx
| #include <math.h> | |
| #include "oh_tannenbaum.h" | |
| /* This melody is defined in the header above. */ | |
| int const melody[] = MELODY; | |
| /********************************************************/ | |
| /* 3.) Define a constant LOUDSPEAKER_PIN containing the | |
| number of the digital pin you just connected the | |
| "+" pin of your loudspeaker to. |