RHEL 7 发布应该算是比较大的新闻了吧~
人民群众纷纷表示红帽步子太大不要扯着蛋了比较好...
F_XZ: 完全没关心...
猫注意的新功能有 virtio 等 KVM 优化, docker 支持, 以及 ruby 2.0, python 2.7, java 7 之类的吧
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="text/javascript"> | |
// require.js | |
this.require || this.define || (function() { | |
var head = document.getElementsByTagName("head")[0], | |
iModules = {}, | |
oModules = {}; |
############################################################################### | |
# 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 |
#!/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): |
(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"); |
(function(e, t) { | |
function n(e) { | |
return t.getElementById(e) | |
} | |
function r() { | |
u("stc_nls", 1, 1) | |
} | |
function i(n, r) { | |
var i = ""; | |
try { |
(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) |
from celery import Celery | |
import time | |
celery = Celery('tasks', backend='redis://localhost', broker='amqp://') | |
@celery.task | |
def test(strs): | |
return strs |