首页 软件开发 代码片段 ( Page 658 )

代码片段 8064

#Shell
shell发动弹

#!/bin/bash email='xxxxxx' #这里自己处理urlencode,比如shacha@gmail.com 这里填shacha%40gmail.com passw…

2014-11-10 720

#Shell
fr修改WallpaperType

@echo off ::依山居 1:54 2015/11/9 ::fr修改WallpaperType ::http://www.bathome.net/thread-38056-1…

2014-11-10 570

#Objective-C
关于自动布局Masonry学习小结

// // ViewController.m // Masonry自动布局 // // Created by 王木木 on 15/11/18. // Copyright © 201…

2014-11-10 221

#Python
创建openstack云主机

#coding:utf-8 from novaclient.v2.client import Client from novaclient import utils usernam…

2014-11-10 550

#SQL
array to csv

type t_str_array as table of varchar2(4000); function array_to_csv (p_values in t_str_arra…

sql
2014-11-10 897

#HTML
永远居中的背景图片

====1、将以下代码加入HEML的<body></body>之间: <STYLE TYPE="text/css"> <!-- BODY …

2014-11-09 417

#HTML
jQuery左右伸缩菜单框架

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh…

2014-11-09 590

#HTML
Hosts

https://smarthosts.googlecode.com/svn/trunk/hosts 你们懂的

2014-11-09 467

#Python
判断企业工商注册码是否正确

#coding: utf-8 def getchecknum(input): ##定义企业注册码校验码计算函数 n = 10 for num in range(len(input)…

2014-11-09 604

#Python
用GET方法上传文件

import requests #需要安装requests with open('test.txt', 'rb') as f: requests.get('http://127.0…

2014-11-09 666

#APS/Basic
VBA粘贴Excel选定工作表范围到活动的PowerPoint幻灯片中(PowerPoint VBA)

Sub RangeToPresentation() ' Set a VBE reference to Microsoft Excel Object Library Dim XLAp…

2014-11-09 788