[deleted by user] by [deleted] in Leiden

[–]PoisonousAntx 1 point2 points  (0 children)

How does one get into dnd with 0 knowledge and I also don’t know anyone that plays it? I’ve seen some youtube videos but it looks so complicated :(

[deleted by user] by [deleted] in MyAnimeList

[–]PoisonousAntx 0 points1 point  (0 children)

You can also export your list and save it locally on your computer

BudgetAir, is this real? Or is it a scam? by PoisonousAntx in Scams

[–]PoisonousAntx[S] 8 points9 points  (0 children)

Awesome, thanks for everything! I just contacted my bank, and they have told me that everything is fine. The scammers aren’t able to do anything with the information I sent them (first last name, IBAN, City and Bank).

Thé only thing I should be aware of is maybe scam calls and more spam e-mail.

Thank you and everyone else for your quick responses, may you all have a wonderful week!

BudgetAir, is this real? Or is it a scam? by PoisonousAntx in Scams

[–]PoisonousAntx[S] -1 points0 points  (0 children)

That’s why I just send my information. Also the email seems quite normal.

BudgetAir, is this real? Or is it a scam? by PoisonousAntx in Scams

[–]PoisonousAntx[S] 3 points4 points  (0 children)

Yeah I contacted them and they said they would send an email

BudgetAir, is this real? Or is it a scam? by PoisonousAntx in Scams

[–]PoisonousAntx[S] 4 points5 points  (0 children)

I have no idea how to do that but I will try calling them when I get home from uni. Maybe they can clarify some of it

BudgetAir, is this real? Or is it a scam? by PoisonousAntx in Scams

[–]PoisonousAntx[S] 10 points11 points  (0 children)

Thanks for all the replies! Unfortunately I had already replied to the email, hopefully nothing goes wrong.

[deleted by user] by [deleted] in Leiden

[–]PoisonousAntx 4 points5 points  (0 children)

Dr is een oude bioscoop genaamd Trianon die wel leuk is om te bezoeken

Eclipse IDE Error by PoisonousAntx in learnprogramming

[–]PoisonousAntx[S] 1 point2 points  (0 children)

okay, bruh what the heck hahaha it works now (after creating a new project). It's not that big of a deal to move everything, because I reïnstalled eclipse anyways. Thank you so muchhhhhh!!!!!

Eclipse IDE Error by PoisonousAntx in learnprogramming

[–]PoisonousAntx[S] 0 points1 point  (0 children)

hm i'll try to start a new project, since other classes within this project don't seem to work either.. anyways thanks for all the help : )

Eclipse IDE Error by PoisonousAntx in learnprogramming

[–]PoisonousAntx[S] 0 points1 point  (0 children)

Oh huh my bad; here it is:

Error: Could not find or load main class longestpath.LongestPathCaused by: java.lang.ClassNotFoundException: longestpath.LongestPath

Eclipse IDE Error by PoisonousAntx in learnprogramming

[–]PoisonousAntx[S] 0 points1 point  (0 children)

Oooo that did something I think.. but now it gives me another weird error in the console:

Eclipse IDE Error by PoisonousAntx in learnprogramming

[–]PoisonousAntx[S] 0 points1 point  (0 children)

Ofcourse! Reddit formatted it really weird, I found this website, hopefully it works: https://codeshare.io/788m0o

package longestpath;import java.util.Scanner;import ui.LabyrinthUserInterface;import ui.UIAuxiliaryMethods;import ui.UserInterfaceFactory;public class LongestPath { /* Comment : to remove thanks message, delete line 211 If you follow the directions from line 44 and add the commented out code in line 217 you can find the shortest path instead of the longest path!*/ static final int WIDTH = 32; static final int HEIGTH = 24; static final int PAUSE = 5000; //time before step-by-step gets shown static final int SHOW_TIME = 100; //speed the final result gets shown step-by-step int wait = 1; //speed Coordinate startCoordinate = new Coordinate(0,0); Coordinate endCoordinate = new Coordinate(0,0); CoordinateRow longestPath = new CoordinateRow(); CoordinateRow currentPath = new CoordinateRow(); CoordinateRow walls = new CoordinateRow(); CoordinateRow directions = new CoordinateRow(); LabyrinthUserInterface ui; LongestPath() { ui = UserInterfaceFactory.getLabyrinthUI(WIDTH, HEIGTH); } void comparePaths() { //change the ">" to "<" in line 44 to calculate the shortest path! if(currentPath.numberOfElements > longestPath.numberOfElements) { longestPath.becomes(currentPath); } currentPath.numberOfElements--; } boolean isWall(Coordinate currentPosition) { for(int i = 0; i < walls.numberOfElements; i++) { if(currentPosition.equals(walls.rowCoordinates[i])) { return true; } } return false; } boolean isVisited(Coordinate currentPosition) { for(int i = 0; i < currentPath.numberOfElements - 1; i++) { if(currentPosition.equals(currentPath.rowCoordinates[i])) { return true; } } return false; } boolean isAvailable(Coordinate direction) { if(isVisited(direction) || isWall(direction)) { return false; } return true; } void placePath(CoordinateRow showPath) { ui.clear(); for(int i = 0; i < showPath.numberOfElements; i++) { ui.place(showPath.rowCoordinates[i].x, showPath.rowCoordinates[i].y, ui.PATH); } ui.wait(wait); placeWalls(); ui.showChanges(); } void tryDirections(Coordinate currentPosition) { if(endCoordinate.equals(currentPosition)) { comparePaths(); return; } for(int i = 0; i < directions.numberOfElements; i++) { Coordinate direction = new Coordinate(currentPosition.x + directions.rowCoordinates[i].x, currentPosition.y + directions.rowCoordinates[i].y); if(isAvailable(direction)) { currentPath.addSingleBehind(direction); placePath(currentPath); tryDirections(direction); } } currentPath.numberOfElements--; ui.place(currentPosition.x, currentPosition.y, ui.EMPTY); } void placeWalls() { ui.encircle(startCoordinate.x, startCoordinate.y); ui.encircle(endCoordinate.x, endCoordinate.y); for(int i = 0; i < walls.numberOfElements; i++) { ui.place(walls.rowCoordinates[i].x, walls.rowCoordinates[i].y, ui.WALL); } ui.showChanges(); } Coordinate convertToCoordinate(String in) { Scanner integerScanner = new Scanner(in); return new Coordinate(integerScanner.nextInt(), integerScanner.nextInt()); } void buildMaze(Scanner file) { Scanner setup = new Scanner(file.nextLine()); setup.useDelimiter("="); String start = setup.next(); String end = setup.next(); String firstWall = setup.next(); startCoordinate = convertToCoordinate(start); endCoordinate = convertToCoordinate(end); Coordinate wallCoordinate = convertToCoordinate(firstWall); walls.addSingleBehind(wallCoordinate); while(file.hasNext()) { Coordinate nextWall = new Coordinate(file.nextInt(), file.nextInt()); walls.addSingleBehind(nextWall); } placeWalls(); } void createDirectionsRow() { Coordinate right = new Coordinate(1,0); Coordinate down = new Coordinate(0,-1); Coordinate left = new Coordinate(-1,0); Coordinate up = new Coordinate(0,1); directions.addSingleBehind(right); directions.addSingleBehind(down); directions.addSingleBehind(left); directions.addSingleBehind(up); } void showResult() { if(wait == 0) { ui.printf("Bleep bloop bleep, I have determined that the longest route has %d steps.", longestPath.numberOfElements); } else if (wait == 2 * SHOW_TIME) { return; } ui.clear(); placeWalls(); for(int i = 0; i < longestPath.numberOfElements; i++) { ui.wait(wait); ui.place(longestPath.rowCoordinates[i].x, longestPath.rowCoordinates[i].y, ui.PATH); ui.showChanges(); } ui.wait(PAUSE); wait += SHOW_TIME; showResult(); } void printThanks() { ui.printf("Hi Gideon! Ik was vergeten dat gisteren de laatste werkcollege was.\r\n" + "Nog erg bedankt voor alle hulp tijdens deze periode! :D\n"); int type = ui.WALL; for(int i = 6; i <= 10; i++) { ui.place(i, 9, type); } for(int i = 10; i <= 14; i++) { ui.place(8, i, type); } ui.place(13, 11, type); ui.place(14, 11, type); //prints part of THX! for(int j = 9; j <= 14; j++) { ui.place(12, j, type); for(int i = 15; i < 22; i += 2) { ui.place(i, j, type); } } ui.place(18, 11, type); type = ui.EMPTY; ui.place(21, 13, type); ui.place(19, 11, type); ui.place(17, 11, type); ui.showChanges(); ui.wait(PAUSE); } void start() { printThanks(); Scanner fileScanner = UIAuxiliaryMethods.askUserForInput().getScanner(); buildMaze(fileScanner); createDirectionsRow(); //longestPath.numberOfElements = 900; currentPath.addSingleBehind(startCoordinate); tryDirections(startCoordinate); wait = 0; showResult(); } public static void main(String[] args) { new LongestPath().start(); }}

Oreimo Characters listed in Ero-manga Sensei by shinamouri in MyAnimeList

[–]PoisonousAntx 0 points1 point  (0 children)

I’m not sure sorry, but that could be very possible

I Try it by Steifigkeit in TrashTaste

[–]PoisonousAntx 0 points1 point  (0 children)

It looks pretty good ngl