摘要: 迷茫 总有一天,我们会操心未来的职业发展,可当我们眺望远方的时候,却怎么也看不清。35岁以上的码农都去哪儿了呢? 类别 方向 技术类 架构师 技术专家 管理类 技术管理者 职业经理人 创业类 创始人 技术合伙人 顾问类 投资顾问 管理顾问 转行类 考入体制内 送快递、开滴滴 技术类 架构师:着眼于技 阅读全文
posted @ 2022-05-24 20:57 skyhap 阅读(224) 评论(0) 推荐(0) 编辑
摘要: //object 转 string(json) string result = JsonConvert.SerializeObject(user); //object 转 JObject JObject jo = (JObject)JToken.FromObject(user); //JObject 阅读全文
posted @ 2020-05-29 10:11 skyhap 阅读(4835) 评论(0) 推荐(0) 编辑
摘要: public class U { public long user_id; public string user_name; } public class B { public string brand_name; public long creator; public U user; } List 阅读全文
posted @ 2020-05-28 21:31 skyhap 阅读(203) 评论(0) 推荐(0) 编辑
摘要: using System; using TestDapper.Common; using Dapper; using System.Data.SqlClient; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace TestDapper.ConsoleHelper { ... 阅读全文
posted @ 2019-11-28 18:03 skyhap 阅读(584) 评论(2) 推荐(0) 编辑
摘要: 对于int,double等的tostring: C 货币 2.5.ToString("C") ¥2.50 D 十进制数 25.ToString("D5") 00025 E 科学型 25000.ToString("E") 2.500000E+005 F 固定点 25.ToString("F2") 25 阅读全文
posted @ 2019-01-09 11:33 skyhap 阅读(9980) 评论(0) 推荐(0) 编辑
摘要: 键盘隐藏 删除 键盘隐藏 bottom 键盘隐藏 阅读全文
posted @ 2016-07-11 17:55 skyhap 阅读(219) 评论(1) 推荐(0) 编辑
摘要: http://www.w3cplus.com/content/css3-transition 阅读全文
posted @ 2016-06-23 17:52 skyhap 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1 webView= (WebView) findViewById(R.id.webView); 2 3 WebSettings webSetting =webView.getSettings(); 4 webSetting.setAllowFileAccess(true); 5 webSetting.setJavaSc... 阅读全文
posted @ 2016-06-20 14:33 skyhap 阅读(974) 评论(1) 推荐(0) 编辑
摘要: M = moveto L = lineto H = horizontal lineto V = vertical lineto C = curveto S = smooth curveto Q = quadratic Bézier curve T = smooth quadratic Bézier 阅读全文
posted @ 2016-06-16 10:41 skyhap 阅读(1766) 评论(0) 推荐(0) 编辑
摘要: 补充:<polyline points="20,20 30,30 40,20" style="fill:none;stroke:black;stroke-width:3" /> 连续多线 阅读全文
posted @ 2016-06-16 10:06 skyhap 阅读(413) 评论(0) 推荐(0) 编辑