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
    
  
  
    
  | public class Damenproblem { | |
| public static int[][] spielen; | |
| public int[][] getSpielen(){ | |
| return spielen; | |
| } | |
| public Damenproblem(){ | |
| this.spielen = this.loese(0, 0); | |
| for (int i=0; i<spielen.length; i++){ | 
  
    
      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
    
  
  
    
  | public class HelloApplication extends Application { | |
| @Override | |
| public void start(Stage primaryStage) { | |
| // Create a GridPane | |
| GridPane pane = new GridPane(); | |
| Damenproblem dame = new Damenproblem(); | |
| // Create 64 rectangles and add to pane | |
| int count = 0; | |
| double s = 100; // side of rectangle | 
  
    
      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 { Injectable } from '@angular/core'; | |
| import { Observable } from 'rxjs'; | |
| import {webSocket} from 'rxjs/webSocket' | |
| @Injectable({ | |
| providedIn: 'root' | |
| }) | |
| export class SocketService { | |
| private socket = webSocket<{type: string, message: string}>('ws://localhost:8001'); | 
  
    
      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 asyncio | |
| import json | |
| import websockets | |
| CONNECTIONS = {} | |
| metricspool = [] | |
| logpool = [] | |
| #JSON Format to send metrics/logs via socket | 
  
    
      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
    
  
  
    
  | <svg class="mainSVG" viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg" > | |
| <defs> | |
| <filter id="goo"> | |
| <feGaussianBlur in="SourceGraphic" stdDeviation="8" result="blur" /> | |
| <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 21 -9" result="cm" /> | |
| <feBlend/> | |
| </filter> | |
| <filter id="glow" x="-100%" y="-100%" width="250%" height="250%" color-interpolation-filters="sRGB"> | |
| <feGaussianBlur stdDeviation="10" result="coloredBlur" /> | |
| <feOffset dx="0" dy="0" result="offsetblur"></feOffset> | 
  
    
      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 pygame | |
| import numpy | |
| import random | |
| pygame.init() | |
| win = pygame.display.set_mode((1226,763 )) | |
| pygame.display.set_caption("Hero Run") | |
| screenWidth = 1226 | 
  
    
      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 pygame | |
| import sys | |
| from pygame.locals import * | |
| import random | |
| import threading | |
| MOVE_SPEED = 5 | |
| class Weltraum(object): | |
| size = [1000, 700] | 
  
    
      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 pygame | |
| import sys | |
| from pygame.locals import * | |
| import random | |
| import threading | |
| MOVE_SPEED = 5 | |
| class Weltraum(object): | |
| size = [1000, 700] | 
  
    
      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
    
  
  
    
  | --Person:name,alter,geschlecht,email,geburt,hobbys,suchenachalter | |
| --Dattum:tag,monat,jahr | |
| --verabredung:zeit,treffpunkt | |
| data Geschlecht = Männlich | |
| |Weiblich | |
| deriving (Show, Eq) | |
| data Datum = Zeit{tag::Int, monat::Int, jahr::Int} | 
  
    
      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
    
  
  
    
  | #---------------------------------------------------- | |
| # Dateiname: meteore1.pyw | |
| # Fallende Meteore (Threads) | |
| # Kap. 20 | |
| # Michael Weigend 2.6.06 | |
| #---------------------------------------------------- | |
| # meteore1.pyw | |
| from tkinter import * | |
| from threading import * | 
NewerOlder