AKA: Blink recreation
Forked from Ted Waller's Pen Seizure Inducer.
Forked from Captain Anonymous's Pen Seizure Inducer.
AKA: Blink recreation
Forked from Ted Waller's Pen Seizure Inducer.
Forked from Captain Anonymous's Pen Seizure Inducer.
{ | |
"Commands": { | |
"points": "!points", | |
"creator": "!creator", | |
"banme": "!banme", | |
"timeoutenemy": "!timeoutenemy", | |
"baconspam": "!baconspam", | |
"game": "!game", | |
"title": "!title" | |
}, |
div { | |
&.spinner { | |
&.success:before, &.success:after { | |
border-color: rgb(45, 191, 45); | |
-webkit-animation: spinner 1.2s cubic-bezier(.19,.65,.67,.91) 0s 1; | |
animation: spinner 1.2s cubic-bezier(.19,.65,.67,.91) 0s 1; | |
} | |
&.success:after { | |
content: 'F'; |
# App | |
using System; | |
using ClassLibrary1; | |
namespace ConsoleApp1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |
SET time_zone = "+00:00"; | |
-- | |
-- Database: `hndatabase` | |
-- | |
-- -------------------------------------------------------- | |
-- |
<?php | |
/* @var $this yii\web\View */ | |
/* @var $form yii\bootstrap\ActiveForm */ | |
/* @var $model app\models\LoginForm */ | |
use yii\helpers\Html; | |
use yii\bootstrap\ActiveForm; | |
$this->title = 'Login'; |
<?php | |
/* @var $this yii\web\View */ | |
/* @var $form yii\bootstrap\ActiveForm */ | |
/* @var $model app\models\LoginForm */ | |
use yii\helpers\Html; | |
use yii\bootstrap\ActiveForm; | |
$this->title = 'Register'; | |
$this->params['breadcrumbs'][] = $this->title; |
var count = $(".answer").length; | |
var i = 0; | |
$(".answer").each(function () { | |
i++; | |
$(this).find('.answer-item').not('[type=hidden]').children('input').prop('checked', true); | |
if (i == count) { | |
$('button:contains("Tęsti"), button:contains("Pateikti")').trigger('click'); | |
} | |
}); |
import random | |
allbank = 0 | |
alliter = 0 | |
allmax = 0 | |
itt = 0 | |
it = 10000 | |
for i in range(0, it): | |
itt += 1 |
@echo off | |
color 4F | |
title Tetris by | |
setlocal enabledelayedexpansion | |
mode con: cols=32 lines=35 | |
set "hashBar=############" | |
set "ESpace= " | |
set "LowestYFig=1" |