This file contains 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> | |
<section v-if="enabled"> | |
<aside class="sidebar" :style="style" ref="element"> | |
<slot></slot> | |
</aside> | |
<div class="overlay" ref="overlay"></div> | |
</section> | |
</template> | |
<script setup> |
This file contains 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
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
min-height: 100vh; |
This file contains 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
<style> | |
div { | |
font-family: `Monospaced font`; | |
} | |
</style> | |
<div data-value="AnoRebel">AnoRebel</div> |
This file contains 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
$(function() { | |
$( "#button" ).click(function() { | |
$( "#button" ).addClass( "onclic", 250, validate); | |
}); | |
function validate() { | |
setTimeout(function() { | |
$( "#button" ).removeClass( "onclic" ); | |
$( "#button" ).addClass( "validate", 450, callback ); | |
}, 2250 ); |
This file contains 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> | |
<div class="gauge-title"> | |
<span ref="gauge_value" v-if="top" :class="gaugeValueClass"></span> | |
<span v-if="top" :class="gaugeValueClass">{{ unit }}</span> | |
</div> | |
<canvas ref="gauge_ref" :class="canvasClass" :height="height" :width="width"></canvas> | |
<div class="gauge-title"> | |
<span ref="gauge_value" v-if="!top" :class="gaugeValueClass"></span> | |
<span v-if="!top" :class="gaugeValueClass">{{ unit }}</span> |
This file contains 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="gauge"> | |
<svg | |
v-if="height" | |
:viewBox="`0 0 ${RADIUS * 2} ${height}`" | |
height="100%" | |
width="100%" | |
xmlns="http://www.w3.org/2000/svg" | |
> | |
<defs> |
This file contains 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="pull-refresh" ref="root"> | |
<div | |
class="pull-refresh__track" | |
:style="trackStyle" | |
@touchstart="onTouchStart" | |
@touchmove="onTouchMove" | |
@touchend="onTouchEnd" | |
@touchcancel="onTouchend" | |
> |
This file contains 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
@charset "UTF-8"; | |
@import url("https://fonts.googleapis.com/css?family=Raleway:400,600"); | |
body { | |
font-family: "Raleway", sans-serif; | |
background: #fafafa; | |
} | |
h1 { | |
text-align: center; | |
padding: 30px 0 0 0; |
This file contains 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
<container> | |
<h2>Pre-Deployment Testing Status</h2> | |
<details> | |
<summary class="success">UI Unit Tests</summary> | |
<ul> | |
<li> | |
<div class="success">Test 1<span class="status">succeeded</span></div> | |
</li> | |
<li> | |
<div class="success">Test 2<span class="status">succeeded</span></div> |
This file contains 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
#!/usr/bin/env bash | |
sudo apt install git wget curl jq preload mpd zsh gcc make cmake ninja build-tools libnotify numlockx xbacklit xdo xdo-tools arcdark breeze-cursor-icon nm-applet pasystray feh sxiv redshift-gtk unclutter pxexec evo-open xdg-tools randr arandr zathura trash-cli hub | |
# install oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# install additions | |
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-completions | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions |