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

代码片段 8064

#Java
Android 图片选择器

# Android Image Selector   ## Demo    #### [English Doc](https://github.com…

2015-12-04 250

#Java
用SharedPreferences写的存储工具类

读写更方便 public class PersistenceUtil { private Context context; public Context getContext() …

2015-12-04 349

#Python
python爬比思论坛贴图区图片

import requests from bs4 import BeautifulSoup import os s = requests.session() #下载图片 def s…

2015-12-04 519

#Python
python实现二叉树的创建和遍历

#coding:utf-8 #author:Elvis class TreeNode(object): def __init__(self): self.data = '#' se…

2015-12-04 130

#HTML
968 grids

.container { width: 978px; margin: 0 auto; } .grid1, .grid2, .grid3, .grid4, .grid5, .grid…

2015-12-04 770

#Objective-C
设置导航栏与导航栏按钮的样式

/** * 设置导航栏主题 */ + (void)setupNavBarTheme { // 取出appearance对象 UINavigationBar *navBar = [U…

2015-12-04 496

#Shell
自动同步服务器vm文件的shell脚本

#!/bin/sh if [ $# -lt 1 ]; then echo "[FAILED]please input project name." else i…

2015-12-04 806

#Objective-C
swift函数及闭包

// // main.swift // Function // // Created by Ethan on 15/1/31. // Copyright (c) 2015年 Eth…

2015-12-04 640

#SQL
DB2 设置最大连接数

db2 connect to dbname user username using passwd db2 update db cfg using MAXAPPLS number

sql
2015-12-03 639

#Python
根据进程名查看该进程的创建时间

#!/usr/bin/python #_*_encoding:utf-8_*_ #print the process create time by the process name…

2015-12-03 957

#Ruby
Ruby 处理 XML-RPC 错误

require 'xmlrpc/client' server = XMLRPC::Client.new2("http://xmlrpc-c.sourceforge.net/api/…

2015-12-03 308
1 88 89 90 91 92 672