「“东大毕业生在20多岁30多岁的时候是最厉害的,”一家大型企业的人力经理告诉《周刊现代》说,“他们是非常优秀的策划者和分析者。但是他们在40多岁时达到的职级还需要具备其他能力——社交能力:要会激励下属,抚慰上级,沟通客户。”」
http://i.jandan.net/p/110289
http://i.jandan.net/p/110289
煎蛋网
[日本]东大文凭不再是成功的保票
甚至还有可能成为绊脚石
「In fact, .NET 7 Preview 1 will release this week.」
https://devblogs.microsoft.com/dotnet/happy-20th-anniversary-net/
https://devblogs.microsoft.com/dotnet/happy-20th-anniversary-net/
Microsoft News
Happy 20th Anniversary, .NET!
Today marks 20 years since Visual Studio .NET launched and the first version of the .NET platform was released. We’re celebrating all month long!
「美国股市周二大幅收高,俄罗斯-乌克兰边境紧张局势缓和的迹象提振风险偏好」
https://cn.reuters.com/article/《股市简讯》在美中概股齐升随美股涨势,好未来大涨21.5%至逾一个月高点-idCNL4S2UR05S
https://cn.reuters.com/article/《股市简讯》在美中概股齐升随美股涨势,好未来大涨21.5%至逾一个月高点-idCNL4S2UR05S
「If so, that means the headline difference in the new entry-level MacBook Pro model will be the new M2 chip, which features the same number of CPU cores as the M1 processor, up to 10 graphics cores, and improved performance.」
https://www.macrumors.com/2022/02/15/apple-13-inch-macbook-pro-m2-march/
https://www.macrumors.com/2022/02/15/apple-13-inch-macbook-pro-m2-march/
MacRumors
Apple to Unveil 13-inch M2 MacBook Pro With Unchanged Design Next Month, Claims Original MacBook Pro 'Notch' Leaker
Apple will next month debut its latest M2 Apple silicon processor in a refreshed 13-inch MacBook Pro model that will have no major design changes,...
「乌克兰官员强调,泽连斯基并不是在预测当天会发生袭击,而是对外国媒体的报导表达怀疑态度。几家西方媒体机构援引美国和其他官员的话报导称,俄罗斯军队将在2月16日准备好发动袭击。」
https://cn.reuters.com/article/ukraine-tensions-west-reports-0214-mon-idCNKBS2KK02V
https://cn.reuters.com/article/ukraine-tensions-west-reports-0214-mon-idCNKBS2KK02V
Reuters
Reuters | Breaking International News & Views
Find latest news from every corner of the globe at Reuters.com, your online source for breaking international news coverage.
雷姬家的阁楼书架
https://devblogs.microsoft.com/dotnet/announcing-net-maui-preview-13/
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.RegisterBlazorMauiWebView()
.UseMauiApp<App>()
.ConfigureEssentials()
.ConfigureServices()
.ConfigureViewModels()
.ConfigureFonts(fonts =>
{
fonts.AddFont("Segoe-Ui-Bold.ttf", "SegoeUiBold");
fonts.AddFont("Segoe-Ui-Regular.ttf", "SegoeUiRegular");
fonts.AddFont("Segoe-Ui-Semibold.ttf", "SegoeUiSemibold");
fonts.AddFont("Segoe-Ui-Semilight.ttf", "SegoeUiSemilight");
});
Barrel.ApplicationId = "dotnetpodcasts";
return builder.Build();
}