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
// ==UserScript== | |
// @name Google keyboard controls | |
// @namespace https://piouc.dev | |
// @version 1.3.1 | |
// @author piouc | |
// @description keyboard controls for Google search | |
// @downloadURL https://gist.github.com/piouc/466218c4bb6bd020260f866cce52e280/raw | |
// @include /^https?:\/\/www\.google\.(com|co\.jp)\/search/ | |
// @run-at document-end | |
// @grant GM.openInTab |
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
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> | |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | |
<rdf:Description rdf:about="" | |
xmlns:crs="http://ns.adobe.com/camera-raw-settings/1.0/" | |
crs:Version="12.4" | |
crs:ProcessVersion="11.0" | |
crs:Saturation="0" | |
crs:Sharpness="67" | |
crs:LuminanceSmoothing="0" | |
crs:ColorNoiseReduction="0" |
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
/* ---------------------------------------------------------------------------------------------------- | |
Super Form Reset | |
A couple of things to watch out for: | |
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered. | |
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders. | |
- You NEED to set the font-size and family on all form elements | |
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs |
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
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0-modified | 20110126 | |
License: none (public domain) | |
*/ | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, |
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
// ==UserScript== | |
// @name google search keyboard controll | |
// @namespace dev.piou.google_search_controll | |
// @version 1.1 | |
// @author piouc | |
// @include /^https?:\/\/www\.google\.(com|co\.jp)\/search/ | |
// @run-at document-end | |
// @grant GM.openInTab | |
// ==/UserScript== |
This file has been truncated, but you can view the full file.
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
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 11.5 | |
-- Dumped by pg_dump version 11.5 | |
SET statement_timeout = 0; | |
SET lock_timeout = 0; | |
SET idle_in_transaction_session_timeout = 0; |
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
const Sequelize = require('sequelize') | |
const sequelize = new Sequelize({ | |
dialect: 'sqlite', | |
storage: 'db.sqlite', | |
logging: (...args) => console.log(...args) | |
}) | |
const Model = Sequelize.Model | |
class User extends Model {} |
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
@-moz-document url(chrome://browser/content/browser.xhtml) { | |
:root { | |
--toolbarbutton-inner-padding: 2px !important; | |
--chrome-background-color: #e8e8e8 !important; | |
--chrome-secondary-background-color: #fff !important; | |
--focus-ring-box-shadow: none !important; | |
--toolbarbutton-hover-background: ; | |
--toolbarbutton-border-radius: 0 !important; | |
--tab-loading-fill: #808080 !important; | |
} |
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
CDDBMETHOD=cddb | |
OUTPUTTYPE=wav | |
CDROM=/dev/disk3 | |
OUTPUTFORMAT='${ARTISTFILE}/${ALBUMFILE}/${TRACKNUM} ${TRACKFILE}' | |
mungefilename () | |
{ | |
echo "$@" | sed -e 's/^\.*//' | tr -d ":><|*/\"'?[:cntrl:]" | |
} |