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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |
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
<template> | |
<div class="Input"> | |
<v-text-field | |
v-if="Type === 'field-box'" | |
:readonly="readonly" | |
:disabled="disabled" | |
:color="color" | |
:background-color="background" | |
:prepend-icon="icon_prepend" |
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
<template> | |
<div> | |
<v-container grid-list-md text-xs-center> | |
<v-layout row wrap=""> | |
<v-flex v-for="i in 2" :key="`6${i}`"> | |
<sd-textfields class="px-0" title IconAppendOut="place" Hint="This is hint" Counter MaxNumbers=10></sd-textfields> | |
<sd-textfields class="px-0" Type="field-solo" IconAppend="place" Hint="This is hint" Counter></sd-textfields> | |
<sd-textfields class="px-0" Type="field-outline" IconPrepend="place" Hint="This is hint"></sd-textfields> | |
<sd-textfields class="px-0" Type="field-box" IconPrependIn="place" Hint="This is hint"></sd-textfields> | |
<v-btn @click="submit">asdasda</v-btn> |
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 asyncio | |
import random | |
import sys | |
from datetime import datetime | |
import chess | |
import chess.engine | |
import chess.pgn | |
from PySide6.QtCore import QLineF, QPointF, QRectF, Qt | |
from PySide6.QtGui import (QAction, QBrush, QColor, QPainter, QPen, QPixmap, |
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
<script setup lang="ts"> | |
import TaskEditModal from '@/components/TaskEditModal.vue' | |
import DataTable from '@/components/dataTable/DataTable.vue' | |
import DataTableRowAction from '@/components/dataTable/DataTableRowAction.vue' | |
import Avatar from '@/components/ui/avatar/Avatar.vue' | |
import AvatarFallback from '@/components/ui/avatar/AvatarFallback.vue' | |
import AvatarImage from '@/components/ui/avatar/AvatarImage.vue' | |
import Badge from '@/components/ui/badge/Badge.vue' | |
import { httpClient } from '@/utils/api' | |
import { LoaderCircle } from 'lucide-vue-next' |