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 React from 'react'; | |
import { View, ScrollView, Platform, Dimensions, StyleSheet } from 'react-native'; | |
import { Icon } from 'react-native-elements'; | |
import { Toolbar, ThemeContext, getTheme } from 'react-native-material-ui'; | |
import Pdf from 'react-native-pdf'; | |
export class StreckenScreen extends React.Component { | |
constructor (props) { |
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
#!/usr/bin/env python | |
# make a horizontal bar chart | |
# ATTENTION python3 for execution ATTENTION!!!!!!!! | |
from pylab import * | |
val = 14 # the bar lengths | |
pos = arange(1) # the bar centers on the y axis | |
figure(figsize=(9,1)) | |
plt.gca().xaxis.grid(True) |
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
#include <msp430.h> | |
/** | |
* main.c | |
*/ | |
int main(void) | |
{ | |
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer |
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
../../jars/janniss Warning: mkdir(): No space left on device in /local/reversi/html/user/jar_upload.php on line 51 Warning: move_uploaded_file(../../jars/janniss/pizza.jar): failed to open stream: No such file or directory in /local/reversi/html/user/jar_upload.php on line 130 Warning: move_uploaded_file(): Unable to move '/tmp/phpmMbH3t' to '../../jars/janniss/pizza.jar' in /local/reversi/html/user/jar_upload.php on line 130 File could not be saved. ../../jars/janniss/pizza.jar --- tmp_filename: /tmp/phpmMbH3t |
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 u9a2; | |
import java.util.ArrayList; | |
import reversi.*; | |
public class Alpha implements ReversiPlayer | |
{ |
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 u9a2; | |
import java.util.ArrayList; | |
import reversi.*; | |
public class MinMaxPlayer implements ReversiPlayer | |
{ |
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 u7a4; | |
import java.util.ArrayList; | |
import reversi.*; | |
public class GreedyPlayer implements ReversiPlayer | |
{ |
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 u8a3; | |
import reversi.Coordinates; | |
import reversi.GameBoard; | |
import reversi.OutOfBoundsException; | |
import reversi.Utils; | |
public class CheckMove implements ICheckMove{ |
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 u7a1; | |
import java.util.ArrayList; | |
public class Filter implements IFilter{ | |
private ArrayList<Student> finalList; | |
Filter(){ | |
} |
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 u5a1; | |
import java.util.NoSuchElementException; | |
import list.List; | |
public class Lists { | |
/** | |
* Returns a string representation of the list. | |
* | |
* @return a comma-separated list of the list values |