This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
''' | |
Program: s3_full_delete.py | |
Author: https://github.com/vsx-gh | |
Created: 20170920 | |
Program finds S3 objects with delete markers and deletes all versions | |
of those objects. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require("http"); | |
var url = require("url"); | |
var multipart = require("./multipart/multipart"); | |
var sys = require("sys"); | |
var fs = require("fs"); | |
var server = http.createServer(function(req, res) { | |
// Simple path-based request dispatcher | |
switch (url.parse(req.url).pathname) { | |
case '/': |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIView+CustomTimingFunction.h | |
// Instants | |
// | |
// Created by Christian Giordano on 16/10/2013. | |
// Copyright (c) 2013 Christian Giordano. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <CoreGraphics/CoreGraphics.h> | |
CGRect CGRectCopy(CGRect rect); | |
CGRect CGRectCopyWithX(CGRect rect, CGFloat x); | |
CGRect CGRectCopyWithY(CGRect rect, CGFloat y); | |
CGRect CGRectCopyWithWidth(CGRect rect, CGFloat width); | |
CGRect CGRectCopyWithHeight(CGRect rect, CGFloat height); | |