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
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| % LaTeX_Vorlage_Uebungsblatt.tex | |
| % Source: https://gist.github.com/Xennis/9637696 | |
| % Documentation: https://gist.github.com/Xennis/9637696#file-readme-md | |
| %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| \documentclass[11pt,a4paper]{exercisesheet} | |
| % ------------------------- packages ------------------------------------------ | |
| % encoding and language |
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
| #!/bin/bash | |
| BASEDIR=`dirname $0` | |
| # --------------------------- Settings ---------------------------- | |
| USER=root | |
| HOST= | |
| # --------------------------- Include gernal scripts ------------------------ | |
| #source general_functions.sh |
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
| /* | |
| * Platform: Lego Spybot | |
| * Version: 1.0 | |
| * Author: Xennis | |
| * Doc: http://xennis.org/wiki/Lego_Spybot_-_Alle_meine_Entchen | |
| */ | |
| #define __NOTETIME 10 | |
| #define __WAITTIME 12 | |
| #define turn_right(s,t) SetPower(OUT_AB,s);OnFwd(OUT_A);OnRev(OUT_B);Wait(t); |
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
| /* | |
| * Perform an asynchronous HTTP (Ajax) request. | |
| */ | |
| (function ($, undefined) { | |
| window.HttpClient = function() { | |
| } | |
| HttpClient.prototype = { | |
| httpPost: function (url, authorization, data, success_callback, fail_callback) { |
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
| package org.example.sampleapi; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.ConnectException; | |
| import java.net.HttpURLConnection; | |
| import org.apache.http.HttpHeaders; | |
| import org.apache.http.HttpResponse; |
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
| <?php | |
| /** | |
| * Interpretiert den "User Agent" des Browser richtig. | |
| * | |
| * Supported Browser: Chrome, Firefox, IE, Opera, Safari | |
| * | |
| */ | |
| class x11_detectBrowser | |
| { |
NewerOlder