词汇:client

n. 委托人;顾客;客户

相关场景

But some of the clients they will tell you, "sorry Michael your price is way too high is totally out of the market level. I'm sorry I can't help you this time. I'm going to place the order or I have already placed the order." so if this is the attitude that means your clients is not bluffing . your really offer the wrong price. Then what you gonna do ?
>> Your price is way too high
The logic will be step No.1: I'm going to test my client's attitude because something your client is bluffing right? so I'm going to ask him : oh I'm sorry to hear that but please let me know what is your target price , how can I improve my price, and how much gap in there, so I will go back to my manufacturer and try to get more discount. maybe half half 50% of the clients they will tell you okay my target is like that or somebody is offering this much lower and you have to improve this much. so that's simply giving you a chance so in this case they were really bluffing with you.
>> Your price is way too high
If my client tell me Michael your price is way too high, you know what I'm going to say? what's is your reaction? I'm not going to tell my client "no no no, my price is very low , my price is competitive." because in this way you are simply arguing, you're arguing with your client, you disagree with your client in front of his face, and this is not polite. I'm not going to say that.
>> Your price is way too high
KEY ACHIEVEMENTS:
Top Tech Innovator Award (Recognized for pioneering a real-time data integration strategy between Salesforce and Shopify, significantly impacting e-commerce client satisfaction.).
>> Jobs and 履历 resume or curriculum vitae (cv)
Solid Cable replaces the need for Redis to act as the pubsub server to relay WebSocket messages from the application to clients connected to different processes. It uses fast polling, but it’s still almost as quick as Redis, when run through the same server on SQLite.
>> Rails8
Solid Cable取代了Redis作为pubsub服务器将WebSocket消息从应用程序中继到连接到不同进程的客户端的需要。它使用快速轮询,但当在SQLite上的同一服务器上运行时,它仍然几乎和Redis一样快。
7. Reacting to negotiation activity (SDP descriptions and ICE candidate exchanges), the newcomer starts streaming to other clients.
>> webRTC Hotwire and Ruby on Rails
7.对协商活动(SDP描述和ICE候选交换)做出反应后,新来者开始向其他客户端流式传输。
6. WebRTC negotiations are created by each of the other clients, and they start streaming to the newcomer.
>> webRTC Hotwire and Ruby on Rails
6.WebRTC协商由其他每个客户端创建,并开始向新客户端流式传输。
5. TurboStream updtes create video elements on each of the other clients' screens.
>> webRTC Hotwire and Ruby on Rails
5.TurboStream updtes在其他每个客户端的屏幕上创建视频元素。
4.The newcomer creates a WebRTC negotiation and sends a greeting back to each of the other clients.
>> webRTC Hotwire and Ruby on Rails
4.新人创建WebRTC协商,并向其他每个客户端发送问候。
2. The connected clients greet this newcomer letting them know their ID.
>> webRTC Hotwire and Ruby on Rails
2.连接的客户端向这位新来者打招呼,让他们知道自己的ID。
Finally, when a client disconnects from the room channel, a Turbo Stream update removes the media element from the screen. The media controller broadcasts its removal so the room controller can clean up.
>> webRTC Hotwire and Ruby on Rails
最后,当客户端与房间频道断开连接时,Turbo Stream更新会从屏幕上删除媒体元素。媒体控制器广播其移除,以便房间控制器可以进行清理。
This kicks off the complex exchange of SDP descriptions and ICE candidates, and once either is received by the newcomer, it can start the streaming process from its own stream to the other client. Now all clients are streaming to and from each other.
>> webRTC Hotwire and Ruby on Rails
这启动了SDP描述和ICE候选者的复杂交换,一旦新来者收到其中任何一个,它就可以开始从自己的流到另一个客户端的流处理。现在,所有客户端都在相互之间进行流式传输。
This time though, instead of a greeting (which would be very polite,but awkward and endless!), the client starts streaming to the other client, by adding media tracks to the connection.
>> webRTC Hotwire and Ruby on Rails
不过,这一次,客户端不是问候(这将是非常礼貌的,但又尴尬又无休止!),而是通过在连接中添加媒体曲目开始向另一个客户端流式传输。
This triggers the same process as above on the other client: appending a media element via a Turbo Stream update, and starting a webRTC negotiation.
>> webRTC Hotwire and Ruby on Rails
这在另一个客户端上触发了与上述相同的过程:通过Turbo Stream更新附加媒体元素,并启动webRTC协商。
Once the negotiation has been created, the newcomer client notifies the other client by reciprocating the greeting i.e. calling greet on the room channel.
>> webRTC Hotwire and Ruby on Rails
一旦创建了协商,新客户通过在房间频道上来回问候(即打招呼)来通知其他客户。
Anyway, the code for this has been mostly lifted from the spec and handled by the Signaller /WebrtcNegotiation. When creating the negotiation, the room controller listens for track events on the TRCPeerConnection, so it can start streaming from the remote client.
>> webRTC Hotwire and Ruby on Rails
无论如何,此代码大多是从规范中提取的,由Signaler/WebrtcNegotiation处理。创建协商时,房间控制器会监听TRCPeerConnection上的跟踪事件,以便它可以从远程客户端开始流式传输。
The negotiation is "perfect" as it ensures that the RTCPeerConnection is in the correct state for setting descriptions, and avoids collision errors by having one client be "polite" and other "impolite"-the polite one backs down in the case of a collision.
>> webRTC Hotwire and Ruby on Rails
协商是“完美的”,因为它确保RTCPeerConnection处于设置描述的正确状态,并通过让一个客户端“礼貌”而另一个“不礼貌”来避免冲突错误——在发生冲突时,礼貌的客户端会退缩。
It's important we do this first so that it's ready for incoming streams. The medium controller messages the room controller to notify that it has been added. This begins the WebRTC negotiation to form a connection between the two clients.
>> webRTC Hotwire and Ruby on Rails
重要的是,我们首先要这样做,以便为传入流做好准备。介质控制器向房间控制器发送消息,通知其已被添加。这将启动WebRTC协商,以在两个客户端之间建立连接。
The greet action broadcasts specifically to the newcomer, a Turbo Stream update which appends a media element representing the remote client.
>> webRTC Hotwire and Ruby on Rails
问候动作专门向新来者广播,这是一个Turbo Stream更新,它附加了一个代表远程客户端的媒体元素。
Once connected, the room channel broadcasts the presence of this new client.Each connected client then "greets" this newcomer by calling the greet action on the room channel and specifying to and from fields.
>> webRTC Hotwire and Ruby on Rails
连接后,房间频道会广播此新客户端的存在。然后,每个连接的客户端通过在房间通道上调用问候动作并指定往返字段来“问候”这个新来者。
The Stimulus room controller handles Enter button click.It gets the user's local audio and video and feeds them into the local video element. It also starts Action Cable subscriptions specific to the current room: one for communicating WebRTC messages: the Signaller; and one for clients to ping others: the RoomSubscription.
>> webRTC Hotwire and Ruby on Rails
Stimulus控制器处理Enter按钮的点击。它获取用户的本地音频和视频,并将其送到本地视频元素中。它也启动了在针对当前room的 Action Cable 订阅(signaling subscription and room subscription)分别处理webRTC消息和ping其他客户端。
We are going to wait, and we are going to wait we are going to wait, until they feel the pain, until they start to bleed that is what I want yeah, but what about our clients, they've been trusting us with their savings.
>> The Big Short大空头(2015) Movie Script
So let me get this straight the bank calls you up they give you the bonds they wanna sell they give you clients, they give you money to run your business, give you fat fee's for doing so but you represent the investors?
>> The Big Short大空头(2015) Movie Script
Because we need to be able to expense the ammo to a client!
>> The Big Short大空头(2015) Movie Script
因为我们需要能够把弹药花在客户身上!
HAGEN:
I think I prefer to see my client privately.
>> The Godfather: Part II 教父2 1974 Movie Script