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
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| maven { url = 'https://maven.minecraftforge.net/' } | |
| } | |
| dependencies { | |
| classpath 'net.minecraftforge.gradle:ForgeGradle:3.+' | |
| } | |
| } |
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 os | |
| import music_tag | |
| file_name_img = input("enter your image filename with no leading slashes \n") | |
| genre = input("enter genre\n") | |
| album_name = input('enter ablum name\n') | |
| album_artist = input('enter album artist\n') | |
| album_year = int(input('enterr year\n')) | |
| for file in os.listdir('.'): |
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
| 0.0.0.0 account.jetbrains.com | |
| 0.0.0.0 www.jetbrains.com | |
| 0.0.0.0 www-weighted.jetbrains.com |
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 assert = require("assert"); | |
| import { collectVariableUsage, getTokenAtPosition, VariableInfo } from "tsutils"; | |
| import { createSourceFile, Identifier, isVariableDeclaration, ScriptKind, ScriptTarget, SourceFile, VariableDeclaration } from "typescript"; | |
| import * as vscode from "vscode"; | |
| import { formatModule, mkStringUri, sendAndGetData } from "../webSocketServer"; | |
| import { findExportLocation, findObjectLiteralByKey, findParrent, findWebpackArg, findWreq_d, getLeadingIdentifier, getModuleId, makeRange, zeroRange } from "./util"; | |
| import ts = require("typescript"); | |
| import format from "../format"; | |
| import { findReturnIdentifier } from "./util"; |
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 { collectVariableUsage, isSyntaxList, VariableInfo, VariableUse } from "tsutils"; | |
| import { FunctionExpression, Identifier, isBinaryExpression, isCallExpression, isExpressionStatement, isFunctionExpression, isIdentifier, isNumericLiteral, isPropertyAccessExpression, isReturnStatement, isVariableDeclaration, Node, ObjectLiteralExpression, PropertyAccessExpression, PropertyAssignment, SourceFile, VariableDeclaration } from "typescript"; | |
| import * as vscode from "vscode"; | |
| import { window } from "vscode"; | |
| import { getNumberAndColumnFromPos } from "./lineUtil"; | |
| export const zeroRange = new vscode.Range(new vscode.Position(0, 0), new vscode.Position(0, 0)); | |
| export function findParrent<T extends Node | undefined = Node>(node: Node, func: (node: Node) => boolean): T | undefined { | |
| while (!func(node)) { |
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
| /** | |
| * Manages react webview panels | |
| */ | |
| import { format } from "@modules/format"; | |
| import { mkStringUri, sendToSockets } from "@server"; | |
| import { EvaledPatch, ReporterData, WebviewMessage } from "@type/reporter"; | |
| import { extensionPath, extensionUri } from "./extension"; | |
| import { commands,Disposable, Uri, ViewColumn, WebviewPanel, window } from "vscode"; |
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 url(https://raw.githubusercontent.com/sadan4/discordStyles/refs/heads/main/src/promo/confetti.css); | |
| @import url(https://raw.githubusercontent.com/sadan4/discordStyles/refs/heads/main/src/cleanup/dmRow.css); | |
| @import url(https://raw.githubusercontent.com/sadan4/discordStyles/refs/heads/main/src/cleanup/chatBarApps.css); | |
| /* @import url(https://raw.githubusercontent.com/sadan4/discordStyles/refs/heads/main/src/qol/solidFolders.css); */ | |
| @import url(https://raw.githubusercontent.com/sadan4/discordStyles/refs/heads/main/src/qol/serverContextAppDir.css); | |
| @import url(https://raw.githubusercontent.com/refact0r/midnight-discord/refs/heads/master/themes/flavors/midnight-tokyo-night.theme.css); | |
| @font-face { | |
| font-family: "ComicSans"; | |
| src: local(ComicShannsMono Nerd Font Mono); |