码迷,mamicode.com
首页 >  
搜索关键字:author    ( 11116个结果
PHP 生成图片缩略图函数
各位小盆友使用前记得打开 GD 库的支持哦,附上代码。 <?php /** * 生成缩略图函数(支持图片格式:gif、jpeg、png和bmp) * @author ruxing.li * @param string $src 源图片路径 * @param int $width 缩略图宽度(只指定高度时进行等比缩放) * @param int $wid...
分类:Web程序   时间:2014-06-20 10:20:32    阅读次数:307
[leetcode] Insertion Sort List
题目链接: here。题目描述: Sort a linked list using insertion sort. 题目要求使用插入排序的方法来实现单链表的排序。插入排序是一种简单的排序,算法描述参考维基百科,或者《算法导论》。 下面是我实现的代码: 1 /** 2 Author:...
分类:其他好文   时间:2014-06-12 00:39:40    阅读次数:284
火狐不支持backgroundPosition的js插件
用js backgroundPositionX,backgroundPositionY设置在firefox下无法识别,用backgroundPosition同样在火狐无法识别。要识别只能用js插件来实现的,代码如下:/** * @author Alexander Farkas * v. 1.02 *...
分类:Web程序   时间:2014-06-11 23:56:17    阅读次数:371
theano 入门教程1.3
theano 入门教程1.3给一个参数设置默认值# -*- coding: utf-8 -*-"""Created on Wed Jun 4 23:22:17 2014@author: wencc"""import theano.tensor as Tfrom theano import funct...
分类:其他好文   时间:2014-06-11 21:47:44    阅读次数:552
theano入门教程1.4
使用共享变量# -*- coding: utf-8 -*-"""Created on Wed Jun 4 23:28:21 2014@author: wencc"""from theano import sharedfrom theano import functionimport theano.t...
分类:其他好文   时间:2014-06-11 13:26:52    阅读次数:304
theano 入门教程1.5
# -*- coding: utf-8 -*-"""Created on Thu Jun 05 17:48:31 2014@author: Administrator"""import theanoimport numpy as npimport theano.tensor as Tfrom the...
分类:其他好文   时间:2014-06-11 12:49:50    阅读次数:401
theano 入门教程1.6
theano 实例, 逻辑回归(logistic regression)# -*- coding: utf-8 -*-"""Created on Fri Jun 06 08:56:54 2014@author: Administrator"""import theanoimport numpy as...
分类:其他好文   时间:2014-06-11 12:14:52    阅读次数:922
MultiActionController源码
/* * Copyright 2002-2008 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Y...
分类:其他好文   时间:2014-06-07 14:55:47    阅读次数:249
PHP 获取当前页面的完整 url 函数
代码清单: <?php /** * 获取当前页面的完整 url * @author ruxing.li * @return string */ function getPageUrl(){ $url = (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443') ? 'https://' : 'http...
分类:Web程序   时间:2014-06-07 13:16:27    阅读次数:250
Java_Swing实现小球沿正弦曲线运动的代码
1 package zuidaimapack_1; 2 import java.awt.*; 3 import javax.swing.*; 4 /** 5 *Java_Swing实现小球沿正弦曲线运动的代码 6 * @author Visec·Dana 7 */ 8 public clas...
分类:编程语言   时间:2014-06-07 07:48:20    阅读次数:377
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!