Skip to content

Instantly share code, notes, and snippets.

View SErr0r's full-sized avatar

Gennady Yudenko SErr0r

View GitHub Profile
@bijij
bijij / viewimage.user.js
Last active May 1, 2025 18:09
Userscript version of the View Image chrome extension
// ==UserScript==
// @name View Image
// @namespace https://github.com/bijij/ViewImage
// @version 4.1.1
// @description This userscript re-implements the "View Image" and "Search by image" buttons into google images.
// @author Joshua B
// @run-at document-end
// @include http*://*.google.tld/search*tbm=isch*
// @include http*://*.google.tld/imgres*
// @updateURL https://gist.githubusercontent.com/bijij/58cc8cfc859331e4cf80210528a7b255/raw/viewimage.user.js
@mawahab
mawahab / bibtex.png
Created December 3, 2017 21:49 — forked from max-mapper/bibtex.png
How to make a scientific looking PDF from markdown (with bibliography)
bibtex.png
@kdarty
kdarty / Bootstrap-Articles-Tips-and-Tutorials.md
Created January 12, 2017 15:29
Bootstrap Articles, Tips and Tutorials
anonymous
anonymous / config.json
Last active February 7, 2023 02:30
Bootstrap Customizer Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "#112335",
"@brand-success": "#3b4d5f",
@AS87-code
AS87-code / Bootstrap slider
Last active November 18, 2017 14:01
WordPress
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<?php query_posts( 'meta_key=slide&showposts=3' ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
#loader {
background: none repeat scroll 0 0 #ffffff;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 9999;
@delirius
delirius / gist:b9886397da22df46c421
Last active August 2, 2017 19:46
bootstrap customize url
At the very bottom of the .json file, there's a link that will reload your settings in getbootstrap.com:
"customizerUrl": "http://getbootstrap.com/customize/?id={random_id}"
http://getbootstrap.com/customize/?id=xy
@rickrduncan
rickrduncan / oembed-gist.php
Last active October 3, 2019 04:34
A quick fix to this plugin: http://wordpress.org/plugins/oembed-gist/. Line 57, 61 & 69 were changed to rename the variable from 'gist' to 'oe-gist.' Line 79 was edited to add isset() to stop the error I was getting while testing.
<?php
/*
Plugin Name: oEmbed Gist
Plugin URI: http://firegoby.jp/wp/oembed-gist
Description: Embed source from gist.github.
Author: Takayuki Miyauchi
Version: 1.4.0
Author URI: http://firegoby.jp/
*/