Skip to content

Instantly share code, notes, and snippets.

@mywaiting
mywaiting / test.html
Last active August 29, 2015 14:03
小小的JS测试题,可以试试看。
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
// require.js
this.require || this.define || (function() {
var head = document.getElementsByTagName("head")[0],
iModules = {},
oModules = {};

新闻w

RHEL 7 发布应该算是比较大的新闻了吧~

人民群众纷纷表示红帽步子太大不要扯着蛋了比较好...

F_XZ: 完全没关心...

猫注意的新功能有 virtio 等 KVM 优化, docker 支持, 以及 ruby 2.0, python 2.7, java 7 之类的吧

@mywaiting
mywaiting / rules-both.iptables
Created November 11, 2015 17:34 — forked from jirutka/rules-both.iptables
Basic iptables template for ordinary servers (both IPv4 and IPv6)
###############################################################################
# The MIT License
#
# Copyright 2012-2014 Jakub Jirutka <[email protected]>.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
@mywaiting
mywaiting / reflect.py
Created April 4, 2017 08:20 — forked from huyng/reflect.py
A simple echo server to inspect http web requests
#!/usr/bin/env python
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE
# Written by Nathan Hamiel (2010)
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
from optparse import OptionParser
class RequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
@mywaiting
mywaiting / 4chan.decode.js
Created July 3, 2018 03:46
4chan.org 首页找到的一段很有趣的 js,特意逆向一下其实现方法。混淆的方式很简单,但是也很有效,可以当作关键字规避使用。
(function() {
try {
(function() {
function H() {
function a(a, e, f) {
if (!f) {
var c;
document.currentScript ? c = document.currentScript : (f = document.getElementsByTagName("script"), c = f[f.length - 1]);
if (!c) return !1;
f = document.createElement("div");
@mywaiting
mywaiting / ls.js
Created October 5, 2018 02:42
imququ.com 上找到用于 localStorage 本地保存 CSS和 JS 的实现,很简洁的实现,不过几十行的 JS 代码,特别记录一下
(function(e, t) {
function n(e) {
return t.getElementById(e)
}
function r() {
u("stc_nls", 1, 1)
}
function i(n, r) {
var i = "";
try {
@mywaiting
mywaiting / config.js
Last active December 8, 2020 19:14
儿童不宜网站抓到的 popunder.js 存个 gist 作为记录
(function() {
var d = window;
// d['_pop']
/**
[
[
"siteId",
2776682
],
[
-- MySQL dump 10.13
--
-- Pinboard database schema
-- Feel free to use this however you like. Send questions to [email protected].
-- For best results, use the Percona version of MySQL! http://www.percona.com/software/percona-server/
CREATE TABLE `bookmarks` (
`id` int(11) NOT NULL,
`url` mediumtext, -- verbatim URL (may differ from actual URL referenced by url_id)
@mywaiting
mywaiting / tasks.py
Created July 26, 2019 09:31
使用 python tornado 框架异步调用 celery 队列任务的实现,很简单的小函数,但是很好用
from celery import Celery
import time
celery = Celery('tasks', backend='redis://localhost', broker='amqp://')
@celery.task
def test(strs):
return strs
@mywaiting
mywaiting / nginx.md
Created July 26, 2019 15:53
日常使用 Nginx 的一些常见的知识点,写下来权当备忘吧,毕竟好记性不如烂笔头

Nginx 知识指南

本文档包含了Nginx在Ubuntu下面的点点滴滴。包含了我常用的Nginx常用的配置文件。

安装Nginx

在Ubuntu终端里面敲入命令:

apt-get update

apt-get upgrade