Skip to content

Instantly share code, notes, and snippets.

View SidVal's full-sized avatar
🎯
Focusing

Waldo SidVal

🎯
Focusing
View GitHub Profile
*&---------------------------------------------------------------------*
*& Report ZPRB1
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT zprb1.
@CodeMyUI
CodeMyUI / gooey-scroll-arrow.markdown
Created October 24, 2016 05:49
Gooey Scroll Arrow
@0x7466
0x7466 / le-cert.rb
Last active July 14, 2017 12:26
Easy to use Ruby script to register and authorize new domains on Let's Encrypt and getting certificates for them. Call 'ruby le-new.rb' and follow the instructions. Install OpenSSL and the ACMEClient gem before!
#!/usr/bin/env ruby
begin
require 'acme-client'
rescue LoadError
abort 'MISSING GEM! You haven\'t installed the ACME client. Install the gem with the command \'gem install acme-client\'.'
end
require 'openssl'
require 'resolv'
@3200creative
3200creative / Style.css
Created April 7, 2015 21:23
Long Hand HTML5 Post Author Box
/* Avatar
--------------------------------------------- */
.avatar {
border-radius: 50%;
float: left;
}
.author-box .avatar {
height: 88px;
@oliverdoetsch
oliverdoetsch / AND_OR_NOT
Last active January 22, 2023 17:03
Blogger: Globally conditional data tags for all page types
#AND
<b:if cond='data:blog.pageType == "index"'>
<b:if cond='data:blog.searchQuery'>
<!--search_page AND index_page-->
</b:if>
</b:if>
#OR
@vinayprajapati
vinayprajapati / Open Graph Protocol for Blogger
Last active January 7, 2017 02:13
Open Graph Protocol/ Meta Tags/ Micro Data for Blogger
// Turn <head> tag like this -
<head prefix='og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#'>
// Then just below this add this code -
// Copyright (c) 2013, Vinay Prajapati, Tech Prevue Labs, India
// http://www.techprevue.com
<b:if cond='data:blog.pageType != &quot;index&quot;'>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta content='article' property='og:type'/>
@deanhume
deanhume / feed.html
Created May 15, 2012 18:25
Feedburner
<!DOCTYPE html>
<html>
<head></head>
<body>
<h1>A simple blog feed reader</h1>
<!-- The script goes here -->
<script src="http://feeds.feedburner.com/DeanHumesBlog?format=sigpro" type="text/javascript" >
</script>
@btoone
btoone / curl.md
Last active June 29, 2024 16:01
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API.

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin