Skip to content

Instantly share code, notes, and snippets.

@shaoweigege
shaoweigege / center-of-the-universe.markdown
Created October 26, 2021 23:34
Center of the universe
@shaoweigege
shaoweigege / featured-list-pure-html-css.markdown
Created October 7, 2021 00:39
Featured List pure html css
@shaoweigege
shaoweigege / comments-templates.php
Created December 13, 2020 23:23 — forked from lkwdwrd/comments-templates.php
Ajax Comment Fun with WordPress JS Helpers
<?php // Templates for ajax comments ?>
<?php /* Wrap for comments in general should none be present */ ?>
<script type="text/html" id="tmpl-comment-wrap">
<div class="comments">
<h2 class="comments-title">Comments</h2>
<ol class="commentlist"></ol>
</div>
</script>
@shaoweigege
shaoweigege / gist:618467d44537236e721c32e69defe820
Created May 17, 2020 01:28 — forked from ntanya/gist:816cba067f0e0dccc524
Python script to check HTTP status and redirect chains
import requests
def get_status_code(url):
try:
r = requests.get(url)
print "Processing " + url
if len(r.history) > 0:
chain = ""
code = r.history[0].status_code