View move example for vue-chessboard
<template> | |
<div id="app"> | |
<h1>Simple Chessboard with legal moves</h1> | |
<chessboard ref="cb"/> | |
</div> | |
</template> | |
<script> | |
import {chessboard} from 'vue-chessboard' | |
import 'vue-chessboard/dist/vue-chessboard.css' |
View hn_seach_input_filter.js
/*Copy this code to the console in HN and it will show a Search filter that you can use to filter the posts from HN*/ | |
function query() { | |
var | |
// HN is done with very unsemantic classes. | |
job_list = Array.prototype.slice.call(document.querySelectorAll('.c5a,.cae,.c00,.c9c,.cdd,.c73,.c88')), | |
query_list = Array.prototype.slice.call(arguments), | |
shown = 0, total = job_list.length; | |
// Traverses up the dom stack trying to find a match of a specific class |