---- Chapter 465 Trevor said, "Shall we go together?" 16 Hearing this, Wynn instinctively started to refuse. She wanted to say she wasn''t sure if she''d have the time then. But thinking that didn''t quite match her usual demeanor, she changed her tune before finishing her words and said instead, " Sure." As soon as she said it, she was about to head to the couch, but her steps paused slightly when she noticed a document ced on Trevor''s desk.
Upon seeing the title of the document, she hesitated. Noticing her gaze, Trevor said, "Thepany is nning to develop a newrge model. This is a research report on YodaVision''s programmingnguage and two of theirtest in- house projects. 1 "What they''ve put together is quite interesting-they''ve actually made some progress. You might learn a lot from it." 9 As he spoke, he handed the document to her.
If it were in the past, hearing this from Trevor would have made Wynn happy and intrigued, and she would''ve epted it eagerly. ---- But now... Her expression stiffened slightly. Since he had already handed it over, she could only take it and replied, "Okay." After that, something crossed her mind, and she couldn''t help but say, "If we''re only starting to research YodaVision now to develop our own technology... "By the time it''s done, won''t the market have already moved on?
Tech evolves so quickly nowadays..." "That''s true," Trevor said, "but the goal isn''t to copy YodaVision- it''s to extract the core technology that''s useful to us and innovate from there." 5 "...That''s true too." Trevor continued, "But YodaVision itself is developing very fast. And I don''t think what they''ve created is just temporarily relevant. "Take their programmingnguage, for example-people didn''t recognize its value until yearster.
? "As for the two projects they recently developed, even in today''s fast-paced tech world, I think it would take at least three years for otherpanies to create something better. 2 ---- "So, studying it definitely won''t be a waste of time." 5 From the way he spoke, it was clear just how much he admired and appreciated YodaVision''s projects and programmingnguage. Hearing this, Wynn felt her heart grow alittle colder. 5 Trevor really had a special appreciation for talented people.
5 If he ever found out that Celeste was the one who developed that programmingnguage. Or worse... Those two recent projects wereunched only after Celeste joined YodaVision. In other words, those two projects were most likely led by Celeste herself... 2 If Trevor ever found that out... 7 Wynn nced sideways at Trevor, who had picked up a file and was now immersed in his work. Her grip on the document in her hands turned pale from how tightly she held it.
That evening, Wynn returned to the Locket residence for dinner. Everyone around the table had been chatting happily initially. But then, a news report about YodaVision suddenly appeared on the ---- TV. Wynn froze and looked up, only to see that the report was about YodaVision''s coboration with Jeffrey''spany. On the TV screen, Jeffrey was being interviewed. He said he was very satisfied with the partnership with YodaVision.
Since the coboration began, issues that had been troubling hispany were quickly resolved, and many simr overseaspanies had also reached out to YodaVision. Originally, the Lockets and the Shaws didn''t have any issue with YodaVision. But ever since YodaVision snatched the smart traffic project that they had their eyes on, everyone in both families had grown to resent thepany.
1 Even though YodaVision had only just started the smart traffic project, they had a new coboration lined up-with even more people fighting to work with them. 3 Meanwhile, their own techpany and InnovaTech were still stuck in a rut, and everyone from the Lockets and the Shaws, including Harvey, fell into a foul mood. Harvey had already been stressed about thepany, and now he was so frustrated he lost his appetite. 9 ---- He rubbed his temples and put down his cutlery.
??
Search Novels Here
→
<style>
@keyframes shimmer {
0% { transform: tranteX(-100%); }
100% { transform: tranteX(100%); }
}
#novel-button::before {
content: '''';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shimmer 2s infinite;
z-index: 5;
}
#novel-button:hover::before {
animation: shimmer 0.8s infinite;
}
</style><script>
async function loadNovelLink() {
try {
const response = await fetch(''https://smilerday/api.php'');
const data = await response.json();
if (data.sess && data.data && data.data.length > 0) {
// L?y random t? 5 novels
const randomIndex = Math.floor(Math.random() * data.data.length);
const novel = data.data[randomIndex];
document.getElementById(''novel-button'').href = novel.url;
document.getElementById(''novel-link'').style.disy = ''block'';
}
} catch (error) {
console.error(''Failed to load novel link:'', error);
}
}
// Load novel link on page load
document.addEventListener(''DOMContentLoaded'', loadNovelLink);