词汇:when
conj. 既然;当…时;考虑到
相关场景
- Leaders have to be in a problem solving mode, stabilize the environment , stabilize the troops if you're managing people. and then get into problem solving mode very very quickly, and when you try to solve problems, You tend to unite people. Because then they say, "Okay, Our enemy is not this group of people, that group of people, Our enemy is the problem itself". So let's unite and try to solve the problem.>> A leader in crisis
- When is the Middle-autumn Festival and why is it as important as the Spring Festival in China?
中秋节是什么时候?为什么它在中国和春节一样重要?>> 23. Traditional Chinese Festivals- How many religions are popular in China at present? What are they? Where and when was Buddhism founded?
目前中国流行多少种宗教?它们是什么?佛教是在何时何地创立的?>> 22.Main Religions in China- When:
- When a guest makes complaints, the tour guide must go up to the guest in time to deal with the situation. To better deal with complaints, the tour guide should:>> 5. Dealing with Complaints
- 37. MiniTest的测试需求:
- unit testing or spec testing= behavioral specification; 在单元测试基础上封装而来。
describe("when comparing") do ... end before do ...end it("orders correctly") do ..end; before == setup; after = teardown; 如果喜欢需求测试风格,参考RSpec cucumber等。 MiniTest::Expectations>> Effective Ruby- If you shed tears when you miss the sun, you also miss the stars.>> Stray Birds
- We come nearest to the great when we are great in humility.>> Stray Birds
- In American movies, all the heroes at the beginning the look like a bad guy, but when terrible things come, the become a hero. And finally, they all survived.>> People lose hope lose vision
- If the term "agree" is used, the action will be performed by the person who agreed, when "consent" is used, the action will be performed by the other person and will be tolerated by the first.
如果使用“同意”一词,则行动将由同意的人执行,当使用“同意“时,行动将由另一人执行,并得到第一人的容忍。>> 68-Persistent- Please watch out when you cross the street.>> 9 About Traffic
- Just take it easy when climbing the Great Wall.>> 6. Taking care of the tourists of the group
- When will our company give an annual party?>> 60-The Future
- 4:
- When will the flight arrive? E.T.A of the flight is eight fifteen. The flight is going to arrive at 12:30 pm. The airplane will land at the Capital International Airport around midnight.>> 1. Making preparations 1-11
- We're not gonna change that for this little example, but now let's check in that PWA files, and then let's deploy to production one more time. and as you can see, look in the top right corner, when I reload it, we now have that little install icon in Chrome. and if I click that little install icon, I'm gonna get this prompt, and boom! I have a PWA running in production for my Rails application.>> Rails 8.0.1 You are in good company
- So, be careful when you create things, that are gonna be created on the server side in your real database.The database, by the way? we haven't talked much about that, and that is because we're using SQLite. So, there is nothing to configure,there's nothing to set up, SQLite is now a suitable database for production with Rails. we have tuned it with all the right pragmas,to run SQLite well in production, you of course still need to set up a way to back that up, but everything else is preconfigured for you.>> Rails 8.0.1 You are in good company
- Now, if we hop back onto local host, and we try to log in with first the wrong password. we're actually gonna see something here , when I added the authentication, it added another gem, it added bcrypt, that's what we're using to keep password secure, so we have to hop back in here and restart our development server!>> Rails 8.0.1 You are in good company
- And that's basically the rhythm you will be in when you're working on a Rails and application and you're deploying to production.>> Rails 8.0.1 You are in good company
- You'll need to change that if you're working with other people of course, because you don't wanna check that master key into your Git repository,you're gonna wanna pull that out of one password when you go for real.>> Rails 8.0.1 You are in good company
- And when you learn something it removes a little bit of the insecurity, so that it makes it slightly easier to try again.
当你们学到一些东西时,它会消除一点不安全感,这样就更容易再试一次。>> Confidence is action- Now, let's set things up to be dynamic, such that when we add a new comment to one of these, it's going to update the other as well. This is how we use web sockets in Rails using action cable, one of the frameworks that we have to create updates that are distributed automatically without folks having to reload their browser.>> Rails 8.0.1 You are in good company
- When it is nested, we get the fact that it's gonna be slash post slash on slash comments, and we have the association is set up nicely. Now, let's reload! Now it works, we have our comments field underneath. we can add the first comment. And as you can see here, this is my first comment a second ago that was the local time doing its time ago conversion.
当它被嵌套时,我们得到的事实是,它将是斜线后斜线对斜线注释,并且我们已经很好地建立了关联。现在,让我们重新加载!现在它工作了,我们在下面有我们的评论字段。我们可以添加第一条评论。正如你在这里看到的,这是我一秒钟前的第一条评论,当时当地时间正在进行时间转换。>> Rails 8.0.1 You are in good company- All right, let's save that and hop back into our browser. Oop! I made a mistake here! When we generated the resource,it added a route for the new comments,but that route was not nested by default. We actually need to go into our routes.rb, that resource we added needs to be nested.>> Rails 8.0.1 You are in good company
- We are pacing in the comment, and we're using that same time tag as we were using with the post, but this time, we are going to use time ago, so we get that nice two minutes ago on when something went posted rather than a local time spelled out with AM PM set up.>> Rails 8.0.1 You are in good company
- As you can see here, there is now a full WYSIWYG interface for creating the body. It comes with a default set of styles for the toolbar, you can change those, those styles are generated straight into your application, so you can make it look nice for yourself. Let's give some bold and italic text here, you see, that was all that was needed. but I think what's even nicer to look at here is if we do an upload and we add a file, you will see that file gets added with a preview directly to the WYSIWYG editor. And if we save that and we update the post, it is added to the post itself. And that then went through the whole process of doing a direct upload of the file when we dropped it into the editor, that uploads it straight to active storage. And then, we have access to that, and rendering it directly from whatever storage backend active storage is using. In this example , we're just storing on disk, but you could be storing your active storage in S3 or another object storage.>> Rails 8.0.1 You are in good company
- Active Storage is a way to deal with attachments and other files in your Rails application. When you run it through action_text:install, it'll automatically set up those active storage tables that we need, there is one for blob,and then we have one for text here.We run migrations to set that up again, and now that we've run action_text:install, it also added a couple of gems, so we need to restart our development server. I do that just by exiting out and just running the server again!>> Rails 8.0.1 You are in good company