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
| ; | |
| ; AutoHotkey Version: v1.1.22.06 | |
| ; Language: English | |
| ; Platform: Windows 10 | |
| ; Author: Andy Terra <github.com/airstrike> | |
| ; | |
| ; Script Function: | |
| ; Toggle Microphone Mute -- assumes it is located at WAVE:1, device #2 | |
| ; Use the SoundCardAnalysis script to figure out where your mic is | |
| ; https://www.autohotkey.com/docs/commands/SoundSet.htm#Ex |
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
| //! Divide the available space in two parts to display two different elements. | |
| // | |
| // Originally from iced_aw. https://github.com/iced-rs/iced_aw/ | |
| // | |
| // Kept up-to-date with `iced`'s `master` branch by me (`0.14.0-dev`). | |
| // | |
| // New features: | |
| // - Negative divider position, for measuring from the end (right or bottom) | |
| // MIT License |
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::{fs::File, sync::Arc}; | |
| use tracing::Level; | |
| use tracing_subscriber::{ | |
| filter::{LevelFilter, Targets}, | |
| fmt, | |
| prelude::*, | |
| }; | |
| pub use tracing::{debug, error, info, trace, warn}; |
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, |
NewerOlder