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

代码片段 8064

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

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

2014-11-09 788

#SQL
MYSQL导出数据或表结构

mysqldump -uxxx -pxxxx -hxxxxxx db table1 table2 > xx.sql -d 导出结构不导出数据 -t 导出数据不导出结构 导出数…

sql
2014-11-08 520

#Ruby
裴波那契数列ruby实现

def fib n i = 2 a ,b = 1, 1 while i < n a,b = b, a+b i += 1 end b end p fib 16 #打印987

2014-11-08 1,006

#HTML
CSS实现链接双击后跳转(非html5 css3)

.test3 span { position: relative; } .test3 span a { position: relative; z-index: 2; } .tes…

2014-11-08 868

#Shell
Win7文件,命令行方式授权或禁用指定用户访问权限

rem 授权 icacls file_name /grant administrators:F /q icacls file_name /grant system:F /q ica…

2014-11-08 383

#Shell
进程监控

1 #! /bin/bash 2 3 CodeName=test1.sh 4 APP_PATH=/home/sram/shellfile/$CodeName 5 6 while […

2014-11-08 326

#Objective-C
push自定义动画

Skip to content This repository Explore Gist Blog Help @baishiyun baishiyun 1 3 0 baishiyu…

2014-11-08 716

#Python
一個簡單的 python curses dialog library

#!/usr/bin/env python3 # --*-- coding: utf-8 --*-- from distutils.core import setup setup(…

2014-11-08 962

#Python
web小工具

# -*- coding: utf-8 -*- from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from Py…

#Python
Python3 读取文本文件插入到Mysql数据库

# -*- coding:utf8 -*- #读取冰箱数据并插入到数据库 import time,os,glob,mysql.connector def formatTime(mi…

2014-11-07 857

#Python
解析jquery param

# -*- coding: utf-8 -*- ''' orgin from https://bitbucket.org/k_bx/jquery-unparam now more …

2014-11-07 277