- Ich öffne ein Programm, das 35€ kostet und klicke auf kaufen. Alles scheint zu funktionieren und ich schließe den Appstore.
- Programm wurde nicht installiert, also öffne ich den Appstore wieder und versuche es nochmal zu kaufen.
- Apple sagt mir ich muss meine Rechnungsdaten aktualisieren - also irgendwie aus dem Kopf den Sicherheitscode meiner VISA-Karte wissen, die ich natürlich nicht bei mir habe. Natürlich weiß ich den nicht.
- Also kaufe ich mir via PayPal einen 50€ Gutschein für den Appstore und deaktiviere meine Kreditkarte. Jetzt habe ich 50€ Guthaben.
- Ich klicke auf kaufen und gebe meine AppleID-Daten an.
- Da ich "das erste mal einen kauf auf diesem Computer" tätige soll ich meine Sicherheitsfragen beantworten. "Traumberuf" und "Wo sich meine Eltern kennen gelernt haben". Woher soll ich wissen, was ich in der 7. Klasse als Traumberuf eingegeben hatte?!
- Um die Sicherheitsfragen zu ändern muss ich mich bei meiner AppleID einloggen. Also gehe ich auf die Apple-Webseite und logge mich mit meine
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
$(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({ |
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
var url = 'http://nico.is'; | |
var win = window.open(url, '_blank'); | |
win.focus(); |
actions.js
- stores actions
routes.js
- triggers actions
- manages redirects
- handles user permissions
- extracts post body
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 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" /> |
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
PluggableListMorph subclass: #STweetPluggableListMorph | |
instanceVariableNames: '' | |
classVariableNames: '' | |
poolDictionaries: '' | |
category: 'Project08-Core' | |
listItemHeight | |
"This should be cleaned up. The list should get spaced by this | |
parameter. " |
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
{ | |
"value": 4.2199507, | |
"description": "product of:", | |
"details": [ | |
{ | |
"value": 6.3299255, | |
"description": "sum of:", | |
"details": [ | |
{ | |
"value": 0.023222063, |
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
import java.sql.*; | |
import java.sql.DriverManager; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
public class DBSUebung { | |
/** | |
* Get a new database connection | |
* |
This guide describes a way to structure a feathers-client application with react and node. It is based on ideas from Mantra and personal experience.
node_modules/
└── ...
dist/
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
import os, sys, datetime | |
# Static variables | |
dateformat = { | |
"eu": "%d.%m.%Y", | |
"us": "%Y.%m.%d" | |
}; | |
# Check that script is properly called |