原文标题:Async/Await 原文链接:https://os.phil-opp.com/async-await/#multitasking 公众号: Rust 碎碎念 翻译 by: Praying……继续阅读 » Praying 4年前 (2021-01-20) 1860浏览 0评论188个赞
大家请看上面这幅图,它惟妙惟肖,栩栩如生,真好看。嘿,醒一下,给大家讲解一下这张图的构造哈,头部三个导航栏,哦,不,它不是三个,有可能它是4,5个呢,不固定,不固定是什么意思呢,研发经理说,头部导航栏……继续阅读 » 张尊娟 4年前 (2021-01-20) 1895浏览 0评论800个赞
Objective-C 有两个神奇的方法:+load 和 +initialize,这两个方法在类被使用时会自动调用。但是两个方法的不同点会导致应用层面上性能的显著差异。 一、+ initialize……继续阅读 » 俊华的博客 4年前 (2021-01-20) 2344浏览 0评论2325个赞
在上一篇文章中,我介绍了gRPCurl一个命令行工具,该工具可用于测试gRPC服务的端点,在本文中,我将向您介绍 gRPC-ui, 它可以作为Web工具使用,有点像Postman,但用于gRPC AP……继续阅读 » SpringLeee 4年前 (2021-01-20) 2096浏览 0评论1296个赞
介绍python的逐行性能分析工具line_profiler的安装与使用,对给定的两个案例用line_profiler进行分析并给出性能分析的结论,其中通过正弦函数的不同实现方式的性能排名也给了大家一……继续阅读 » DECHIN 4年前 (2021-01-20) 2985浏览 0评论1728个赞
SOFARegistry 是蚂蚁金服开源的一个生产级、高时效、高可用的服务注册中心。本系列文章重点在于分析设计和架构,即利用多篇文章,从多个角度反推总结 DataServer 或者 SOFARegis……继续阅读 » 罗西的思考 4年前 (2021-01-20) 2109浏览 0评论2488个赞
Nacos集成学习入门……继续阅读 » 小白先生哦 4年前 (2021-01-20) 1231浏览 0评论1912个赞
使用 TensorBoard 可视化模型、数据和训练 在 60 Minutes Blitz 中,我们展示了如何加载数据,并把数据送到我们继承 nn.Module 类的模型,在训练数据上训练模型,并在测……继续阅读 » 极客锋行 4年前 (2021-01-20) 1874浏览 0评论2865个赞
每一个管理者都致力于构建一支自我驱动的团队,更有甚至,许多人公开宣称,在一支20人以下的团队其实是不用管理手段的,靠团队自驱就能实现团队的快速运作,但知易行难,如果不能根据组织特色灵活的运用管理手段,……继续阅读 » 溪源More 4年前 (2021-01-20) 2882浏览 0评论2115个赞
这不是BUG!!! 原文地址: https://www.cnblogs.com/thanks/p/14302011.html 现在让我们回忆一下原文 原文的操作步骤: 1. 新建一个Wind……继续阅读 » 吃西瓜的星星 4年前 (2021-01-20) 1900浏览 0评论1380个赞
日前专为开发者提供技术分享的又拍云 OpenTalk 公开课邀请了网易有道资深运维开发工程师张晋涛,直播分享《Containerd 上手实践 》,详细介绍 Containerd 的发展历程、主要特性,……继续阅读 » 又拍云 4年前 (2021-01-20) 2361浏览 0评论2368个赞
今天郭先生继续说cannon.js,主演内容就是点对点约束和2D坐标转3D坐标。仍然以一个案例为例,场景由一个地面、若干网格组成的约束体和一些拥有初速度的球体组成,如下图。线案例请点击博客原文。 下面……继续阅读 » 郭先生的博客 4年前 (2021-01-20) 2568浏览 0评论2471个赞
源码地址: https://github.com/246850/Calamus.TaskScheduler 演示地址:http://47.101.47.193:1063/ 1、Quartz.……继续阅读 » 神叉 4年前 (2021-01-20) 2945浏览 0评论1692个赞
通过随机数和md5算法生成一个随机图片名字,在上传图片时重命名图片名可以用到$image_name = md5(uniqid(rand())).".jpg";……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1393浏览 0评论781个赞
一个基本的php查询mysql数据库的函数if (!function_exists('mysql_search')) { function mysql_search($table, $columns, $query = '', $options = Array()) { if (empt……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2143浏览 0评论2199个赞
简单的把开始时间放在页面头部,结束时间放在页面尾部,计算页面加载时间$start = time(); // put a long operation in heresleep(2); $diff = time() - $start; print "This page needed $diff seconds to load ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2633浏览 0评论128个赞
此代码包含了php通过print输出不同格式的字符串的方法// report all errors:error_reporting(E_ALL); // the full path to the current fileprint __FILE__; // print the current lineprint __LINE__; /……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1409浏览 0评论2623个赞
本代码演示了php中如何通过glob查找指定的文件$dir = './'; foreach(glob($dir.'*.txt') as $file) { print $file . "\n";} /* returns: ./dummy.txt./foo.txt./i……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1625浏览 0评论1297个赞
一个php查找文件的函数,指定要查找的目录和文件扩展名function get_files_by_ext($path, $ext){ $files = array(); if (is_dir($path)){ $handle = opendir($path); while ($file = re……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2150浏览 0评论2197个赞
php读取和写入tab分割的文件,包含两个独立的函数,一个读,一个写,例如cvs文件等//// save an array as tab seperated text file// function write_tabbed_file($filepath, $array, $save_keys=false){ $content = ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3040浏览 0评论1055个赞
本代码演示了php中如何通过min和max函数输出数组的最大值和最小值/* find the highest value */ print max(100, 70, 101, 50);// returns --> 101 $array = array(100, 701, 2, 4, 202);print max($array);//……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2942浏览 0评论2693个赞
本代码演示了php中如何通过cURL函数抓取和下载网页function curl_download($Url){ // is cURL installed yet? if (!function_exists('curl_init')){ die('Sorry cURL is not in……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2244浏览 0评论719个赞
php计算连接的mysql数据库的大小,用MB,KB或者GB的格式返回function CalcFullDatabaseSize($database, $db) { $tables = mysql_list_tables($database, $db); if (!$tables) { return -1; } $tab……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3071浏览 0评论1277个赞
本范例演示了php中如何把一个HEX格式(如:#FF00FF)的颜色代码转换成RGB格式的颜色代码(如:Array(179,218,245))function Hex2RGB($color){ $color = str_replace('#', '', $color); if (strlen($c……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3095浏览 0评论1653个赞
给定开始和结束值,再给定一个步进值,就可以生成一个等差数组function array_range($from, $to, $step=1){ $array = array(); for ($x=$from; $x <= $to; $x += $step){ $array[] = $x; } ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2427浏览 0评论2616个赞
以一种可读性比较好的方式显示已经过去多长时间,比如:距离现在10秒,距离现在1天等等function time_is_older_than($t, $check_time){ $t = strtolower($t); $time_type = substr(preg_replace('/[^a-z]/', ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2398浏览 0评论1134个赞
php获取指定路径的最后一个参数,可能是文件名或者最后一层文件夹function path_get_last_arg($path){ $path = str_replace('\\', '/', $path); $path = preg_replace('/\/+$/', &……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1854浏览 0评论2606个赞
通过预定义一些单词,让php随机从这些单词中选择进行组合生成密码function random_readable_pwd($length=10){ // the wordlist from which the password gets generated // (change them as you like) $wor……继续阅读 » 水墨上仙 4年前 (2021-01-15) 3037浏览 0评论2391个赞
php限制文件下载速度,这个方案可能有一些缺陷,但可以参考一下// local file that should be send to the client$local_file = 'test-file.zip'; // filename that the user gets as default$download_fil……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2587浏览 0评论208个赞
本代码演示了如何从php数组中随机选择一个元素显示function random_array_element(&$a){ mt_srand((double)microtime()*1000000); // get all array keys: $k = array_keys($a); // fi……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2597浏览 0评论2718个赞
把两个字符串进行分割合并,例如str1=aaaa,str2=bbbb,合并后生成abababab/** * Merges two strings in a way that a pattern like ABABAB will be * the result. * * @param string $str1 String A……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2917浏览 0评论312个赞
本代码演示了如何通过php的 similar_text函数比较两个字符串的相似性$word2compare = "stupid"; $words = array( 'stupid', 'stu and pid', 'hello', ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2672浏览 0评论1135个赞
例如:将5M或者400K这样的字符串转换成字节数字显示function StringSizeToBytes($Size){ $Unit = strtolower($Size); $Unit = preg_replace('/[^a-z]/', '', $Unit); $Value ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2077浏览 0评论1578个赞
这是一个php专用的类,用于产生随机整数,随机字符串,随机颜色等,同时你可以对这个类进行扩展,产生自己的随机数据/// <summary> /// Helper class for generating random values /// </summary> public static class RandomHelpe……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2781浏览 0评论1414个赞
本范例演示了php中如何通过array_walk调试数组,输出一个可读性良好的格式function debug_val($val, $key='', $depth=0) { if (is_array($val)){ // call this function again with the "su……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1576浏览 0评论2862个赞
本范例演示了php如何链接微软的sql server数据库并做简单的查询/*** Connect to database:*/ // Connect to the database (host, username, password)$con = mssql_connect('localhost','admin&……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2682浏览 0评论576个赞
这个php函数可以把指定的颜色变得更深一些function ColorDarken($color, $dif=20){ $color = str_replace('#', '', $color); if (strlen($color) != 6){ return '000000……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1806浏览 0评论2934个赞
去除php数组里的重复的值function remove_duplicated_values($arr){ $_a = array(); while(list($key,$val) = each($arr)){ $_a[$val] = 1; } return array_keys($_a);}//演示……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1851浏览 0评论379个赞
php把文件大小转换成易于阅读的格式,如GB,MB,KB// A much better and accurate version can be found// in Aidan's PHP Repository: // http://aidanlister.com/repos/v/function.size_readable.php ……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2297浏览 0评论867个赞
16进制数据和字符串相互转换的函数function String2Hex($string){ $hex=''; for ($i=0; $i < strlen($string); $i++){ $hex .= dechex(ord($string[$i])); } return $……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1369浏览 0评论1066个赞
获得php类包含的所有元素以key-value的形式输出class MyTestClass{ const TESTVAR1 = 1001; const TESTVAR2 = 1002; const TESTSTR1 = 'hello';} $rc = new ReflectionClass('M……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1581浏览 0评论1770个赞
php把数组的key值恢复成类似于0,1,2,3,4,5…这样的数字序列function restore_array($arr){ if (!is_array($arr)){ return $arr; } $c = 0; $new = array(); while (list($key, $value) = each……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2166浏览 0评论1343个赞
预先定义一个php数组,里面存放一些随机问候语,调用的时候指定是按照天,月还是年来自动更换问候语,如果选择月,则会每月更换一条问候语显示,不用每个月手动更换了,并且这段php代码比使用JS实现对搜索引擎友好function RandomQuoteByInterval($TimeBase, $QuotesArray){ // Make sur……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1253浏览 0评论2475个赞
本范例演示了php中wordwrap如何按照用户指定的长度进行换行// create a long text for testing:$long_text = 'This is a long text to demonstrate the usage of the ';$long_text .= 'wordwrap f……继续阅读 » 水墨上仙 4年前 (2021-01-15) 1879浏览 0评论2089个赞
php压缩CSS后调用,html代码里面调用的是style.php文件<?php ob_start ("ob_gzhandler"); header("Content-type: text/css; charset: UTF-8"); header("Cache-Contr……继续阅读 » 水墨上仙 4年前 (2021-01-15) 2551浏览 0评论298个赞