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
| // iced.version = "0.13" # iirc | |
| use std::collections::BTreeMap; | |
| use std::time::Duration; | |
| use iced::theme::Palette; | |
| use iced::widget::{button, center, container, horizontal_space, row, text}; | |
| use iced::{time, window, Center, Element, Fill, Subscription, Task, Theme}; | |
| struct App { | |
| windows: BTreeMap<window::Id, Window>, |
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 rand::Rng; | |
| use iced::time::{Duration, Instant}; | |
| use iced::widget::canvas::{Frame, Geometry, Path, Program}; | |
| use iced::widget::{button, canvas, center, column, text}; | |
| use iced::{Element, Point, Rectangle, Renderer, Size, Theme}; | |
| use iced::{Fill, Subscription, Task}; | |
| const NUM_BARS: usize = 20; | |
| const MAX_BAR_HEIGHT: f32 = 0.7; |
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
| " VIM user interface | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Set 7 lines to the curors - when moving vertical.. | |
| set so=4 | |
| set ruler "Always show current position | |
| set cmdheight=1 "The commandbar height | |
| " Set backspace config | |
| set backspace=eol,start,indent | |
| set whichwrap+=<,>,h,l |
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::BTreeMap; | |
| use iced::advanced::graphics::image::image_rs::ImageFormat; | |
| use iced::{window, Size, Subscription, Task, Element}; | |
| use crate::theme::constants::WINDOW_ICON; | |
| use crate::theme::Theme; | |
| use crate::{app, assistant}; | |
| #[derive(Debug)] | |
| pub enum Message { |
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 iced::Alignment::Center; | |
| use iced::Length::Fill; | |
| use iced::font::{self, Font}; | |
| use iced::widget::{column, horizontal_rule, pick_list, row, scrollable, text, text_input}; | |
| use iced::{Element, Size, Task}; | |
| use std::collections::HashMap; | |
| // Font candidates with their names and possible paths | |
| const FONT_CANDIDATES: &[(&str, &[&str])] = &[ | |
| ("Menlo", &[ |
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, { useState } from 'react'; | |
| import { Clock, ArrowUp, MessageSquare, ChevronLeft, ChevronRight, Search, ExternalLink } from 'lucide-react'; | |
| const LaunchPlatform = () => { | |
| const [currentSlide, setCurrentSlide] = useState(0); | |
| const todaysLaunches = [ | |
| { | |
| id: 1, | |
| name: "CodePilot Pro", |
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 iced::widget::{button, column, container, hover, rich_text, row, scrollable, text, Button}; | |
| use iced::widget::{horizontal_space, markdown}; | |
| use iced::{padding, Element, Font, Length, Pixels}; | |
| pub use iced::widget::markdown::{HeadingLevel, Item, Settings, Style, Url}; | |
| /// Display a bunch of Markdown items with copy functionality for code blocks. | |
| pub fn view<'a, Message, Theme, Renderer>( | |
| items: impl IntoIterator<Item = &'a Item>, | |
| settings: Settings, |
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::HashMap; | |
| use components::sidebar; | |
| use desmos_compiler::{ | |
| expressions::{ExpressionId, Expressions}, | |
| lang::backends::llvm::{codegen::compile_all_exprs, CompiledExprs}, | |
| }; | |
| use graph::GraphRenderer; | |
| use iced::{ | |
| alignment::Horizontal, |
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
| /** | |
| * Permafrost.jsx | |
| * | |
| * A React component that provides a modern, interactive UI for viewing and managing | |
| * archive files (ZIP, etc.). Features include: | |
| * | |
| * - File/folder browsing with sorting capabilities | |
| * - Detailed metadata sidebar | |
| * - MacOS-style window controls | |
| * - File type icons and size formatting |
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
| /** | |
| * WireshartViz.jsx | |
| * | |
| * Dependencies: | |
| * - react | |
| * - recharts | |
| * - tailwindcss | |
| * | |
| * Required imports: | |
| * import React, { useState, useEffect } from 'react'; |
NewerOlder