haha512

haha512

V2EX 第 405446 号会员,加入于 2019-04-24 09:36:08 +08:00
haha512 最近回复了
197 天前
回复了 xinmans 创建的主题 ? 问与答 ? 有没有字幕翻译开源程序?
208 天前
回复了 test9106 创建的主题 ? 程序员 ? 清晰点的卫星地图
卫星地图一般都是几年前的数据吧,看停车位没啥用,还是街景吧
模仿 laravel DB 写个 95%还原的 java 版吧。

https://laravel.com/docs/10.x/queries


```

$users = DB::table('users')
->join('contacts', 'users.id', '=', 'contacts.user_id')
->join('orders', 'users.id', '=', 'orders.user_id')
->select('users.*', 'contacts.phone', 'orders.price')
->get();

$latestPosts = DB::table('posts')
->select('user_id', DB::raw('MAX(created_at) as last_post_created_at'))
->where('is_published', true)
->groupBy('user_id');

$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();

$users = User::where(function (Builder $query) {
$query->select('type')
->from('membership')
->whereColumn('membership.user_id', 'users.id')
->orderByDesc('membership.start_date')
->limit(1);
}, 'Pro')->get();


```
7. 锁屏界面负一屏无法关闭。什么脑残设计.

---
这个可以关闭,设置-搜索负一屏,智能助理关闭
写一个轻量级的 spring boot 类似 国内 solon ,orm 类似 laravel ORM 般好用
210 天前
回复了 lcbyfc1 创建的主题 ? 分享创造 ? 第一个发布的个人网站,纯属好玩
虽然但是。
F12 打开浏览器控制台,(十进制数字).toString(2) 马上出结果

在工作中,应该考虑自己的决定和行动会对同事带来的影响吗?
在生活中,会在乎、关心朋友的感受吗
在家庭里,应该考虑、在意父母的面子吗

或者 我命由我不由天,我想咋办就咋办,耶稣来了也不行
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3582 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 32ms · UTC 00:43 · PVG 08:43 · LAX 17:43 · JFK 20:43
Developed with CodeLauncher
? Do have faith in what you're doing.


http://www.vxiaotou.com