原来百词斩也在成都啊!原来有用过挺好!
初级工程师,就是按照模块来完成工作,也就是知道此模块是做什么 中级工程师的工作其实也差不多,就是开发一些 较为复杂的程序。
(tmux + Vim + HHKB) + ROR
先用正则判断出是中文,就用拼音插件,转成拼音就好了
为啥?因为它是 Ruby !!!
不错,我最近正好有这个需求,日志量非常大 ( 未切割前 800 M ),邮箱是 lijia.tong#foxmail.com
很小众
左手触摸板右手鼠标,好方便,不过这里我感兴趣的,只有那个 HHKB
你这价格有点高呀!
SUM 这个函数写在 SELECT 里记得应该是不好用,因为有单独的 SUM(:xxx), 但是不支持同时 sum 两个字段
你还是写 Product.connection.select_all(' SELECT SUM(column) FROM tables GROUP BY xxxx')
拼个 SQL 不丢人,哈哈
你想搞懂它,没有捷径,不然你怎么二次开发?
require "sqlite3"
# Open a database
db = SQLite3::Database.new "test.db"
# Create a database
rows = db.execute <<-SQL
create table numbers (
name varchar(30),
val int
);
SQL
# Execute a few inserts
{
"one" => 1,
"two" => 2,
}.each do |pair|
db.execute "insert into numbers values ( ?, ? )", pair
end
# Execute inserts with parameter markers
db.execute("INSERT INTO students (name, email, grade, blog)
VALUES (?, ?, ?, ?)", [@name, @email, @grade, @blog])
# Find a few rows
db.execute( "select * from numbers" ) do |row|
p row
end
#4 楼 @flowerwrong 要不要这样试一下,我没测试,看你写的类方法,所以给出一点小建议!
raw 方法其实是不安全的,应该用 sanitize 详见: 别用 raw 和 html_safe
module CatsHelper
def cat_get_children cat
return unless cat.is_a?(Cat) || cat.childs.present?
content_tag(:ul, class: 'cat-ul') do
cat.childs.map do |cat|
content_tag(:li, class: 'cat-ul-li') do
cat.name
get_children cat
end
end
end
end
end
<ul>
<% @cats.each do |cat| %>
<li>
<%= cat.name %>
<%= sanitize cat_get_children(cat) %>
</li>
<% end %>
</ul>
#2 楼 @flowerwrong
<%= raw CatsHelper.get_children(cat) %>
#27 楼 @franky_xhl 我昨天也在京东下的单,说没货,需外地调货
待遇挺好的,可惜就不在北京,帮你顶一下
好书 已京东下单
什么 div / table 用 Bootstrap 忘了么?
用 Ik 多省事儿
没看元编程的书?
👍
#4 楼 @ren_jiaxing 看到你用 Windwos 当服务器,我实在是不得不说,你的需求太高端了!
但是我还是想告诉你,Windows 上也有任务管理,只是用的人少了点么!
nginx.conf 配置里是不是没有加用户?
user staff;