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
| use std::collections::VecDeque; | |
| use std::time::Instant; | |
| use std::time::{SystemTime, UNIX_EPOCH}; | |
| use tokio::select; | |
| use tokio::stream::StreamExt; | |
| use tokio::time::{self, Duration}; | |
| #[derive(Debug)] | |
| struct Website { | |
| pub url: String, |
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 javax.swing.*; | |
| import java.awt.*; | |
| import java.awt.event.MouseAdapter; | |
| import java.awt.event.MouseEvent; | |
| import java.awt.geom.Line2D; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class test { | |
| public static void main(String args[]) { |
NewerOlder