Skip to content

Instantly share code, notes, and snippets.

View joennlae's full-sized avatar
🏗️

Jannis Schönleber joennlae

🏗️
View GitHub Profile
@joennlae
joennlae / test 2.js
Last active January 23, 2019 14:26 — forked from thomascuriger/test 2
test 32
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) {
@joennlae
joennlae / plott_h_gln
Created August 27, 2018 21:25
plotting
#!/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)
@joennlae
joennlae / led_blink.c
Created October 10, 2017 15:48
MSP430 LED Blink
../../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
package u9a2;
import java.util.ArrayList;
import reversi.*;
public class Alpha implements ReversiPlayer
{
package u9a2;
import java.util.ArrayList;
import reversi.*;
public class MinMaxPlayer implements ReversiPlayer
{
package u7a4;
import java.util.ArrayList;
import reversi.*;
public class GreedyPlayer implements ReversiPlayer
{
package u8a3;
import reversi.Coordinates;
import reversi.GameBoard;
import reversi.OutOfBoundsException;
import reversi.Utils;
public class CheckMove implements ICheckMove{
package u7a1;
import java.util.ArrayList;
public class Filter implements IFilter{
private ArrayList<Student> finalList;
Filter(){
}
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