brew install lldor for linux, sudo apt-get install lld
cargo install xwin| { | |
| "tokenColors": [ | |
| { | |
| "settings": { | |
| "background": "#1c1c1c", | |
| "foreground": "#cccccc" | |
| } | |
| }, | |
| { | |
| "name": "Normal", |
| autoload -U colors && colors | |
| PS1="%{$fg_bold[green]%}%n%{$reset_color%}@%{$fg_bold[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " | |
| zstyle ':completion:*' special-dirs true |
| #include <concepts> | |
| template <std::copy_constructible T> | |
| class cow { | |
| std::shared_ptr<T> data; | |
| void clone() { | |
| data = std::make_shared<T>(*data); | |
| } | |
| public: |
| #include <Geode/Geode.hpp> | |
| #include <Geode/utils/base64.hpp> | |
| #include <Geode/utils/Signals.hpp> | |
| #include <Geode/ui/SimpleAxisLayout.hpp> | |
| #include <UIBuilder.hpp> | |
| using namespace geode::prelude; | |
| class UploadLevelPopup : public CCLayerColor { | |
| Signal<int> m_stars = 0; |
| #include <Geode/cocos/include/cocos2d.h> | |
| #include <filesystem> | |
| #include <fstream> | |
| #include <Geode/utils/string.hpp> | |
| #include <string> | |
| class DynamicVarNode : public cocos2d::CCNode { | |
| std::filesystem::path m_path; | |
| std::filesystem::file_time_type m_last_write; | |
| std::string m_last_code; |
| // CPMAddPackage("gh:sammycage/lunasvg#master") | |
| // target_link_libraries(${PROJECT_NAME} lunasvg) | |
| #include <Geode/Geode.hpp> | |
| #include <lunasvg.h> | |
| using namespace geode::prelude; | |
| class SvgNode : public CCNode { | |
| CCSprite* m_rendered = nullptr; |
| import definePlugin from "@utils/types"; | |
| import { Devs } from "@utils/constants"; | |
| export default definePlugin({ | |
| name: "NoChannelEmoji", | |
| authors: [Devs.camila314], | |
| description: "Removes all emojis from channel names", | |
| patches: [ | |
| { | |
| find: "webGuildTextChannel", |
| /* | |
| * Vencord, a Discord client mod | |
| * Copyright (c) 2023 Vendicated, camila314, and contributors | |
| * SPDX-License-Identifier: GPL-3.0-or-later | |
| */ | |
| import definePlugin from "@utils/types"; | |
| import { Devs } from "@utils/constants"; | |
| import { findByCodeLazy } from "@webpack"; |
| // Run in the stageFrame iframe | |
| var currentFrame = 0; | |
| var frameInterval = setInterval(function() { | |
| let idx = API.FrameChain.framesStatus.indexOf("incomplete"); | |
| if (idx == 0) { | |
| currentFrame = 0; | |
| } else if (idx > window.currentFrame) { | |
| currentFrame = idx; | |
| API.FrameChain.nextFrame(); |