• WEI - Windows Experience Index. How fast is your machine? If you say "I've got a WEI 6.0" you've got a good machine, for example.

    WEI -Windows体验索引。 您的机器有多快? 例如,如果您说“我有WEI 6.0”,则说明您有一台好的机器。

  • RFC - Request for Comments. This is crowdsourcing. I want to know what YOU think we need to do to make a machine that is so fast that it'll max out at WEI 7.9 and be a GOM.

    RFC-征求意见。 这是众包。 我想知道您认为我们需要做些什么,才能制造出如此快的机器,使其达到WEI 7.9的最高要求并成为GOM。

  • GOM - God's Own Machine. If the Good Lord had a computer, it'd be a 7.9. We want to build that machine.

    GOM-神的机器。 如果好主拥有一台计算机,那就是7.9。 我们要建造那台机器。

There have been two posts so far:

到目前为止,有两个帖子:

  • Ultimate Developer PC 2.0 - Part 1 - Building a WEI 7.9 and RFC for building a GOM (God's Own Machine)

    Ultimate Developer PC 2.0-第1部分-构建WEI 7.9和RFC以构建GOM(上帝自己的机器)

  • Ultimate Developer PC 2.0 - Part 2 - UPDATE and PODCAST on Building a WEI 7.9 and RFC for building a GOM (God's Own Machine)

    Ultimate Developer PC 2.0-第2部分-构建WEI 7.9和RFC(用于构建GOM)的更新和PODCAST(上帝自己的计算机)

  • Also, we hosted a great podcast last week with some actual members of the WEI team and asked their ideas on how we could create the Ultimate Developer PC.

    此外,上周我们与WEI团队的一些实际成员一起主持了精彩的播客,并询问了他们关于如何创建Ultimate Developer PC的想法。

There were lots of great comments on both posts, and arguably there is more content in the comments than the posts! I want to give a big thank you to all the thoughtful people who have commented. You all know more than I do about this topic.

这两个帖子上都有很多很棒的评论,并且可以说评论中的内容比帖子还多! 在此,我要感谢所有有思想的人。 你们比我对这个话题了解的更多。

The point of this exercise is several-fold.

这项练习的重点是多方面的。

  • First, I haven't built a machine in 3 years, since the first Ultimate PC, lead by Jeff Atwood. Every Jedi should build their own lightsaber.

    首先,自Jeff Atwood领导的第一台Ultimate PC以来,我已经三年没有制造机器了。 每个绝地应该建造自己的光剑。

  • Second, it'd be interesting to see if it's easy (or how hard) to get a 7.9 WEI (the current maximum) on a machine given a $3000 limit. It's also interesting to see what a $1000 PC gets. Yes, we all realize that WEI is just one benchmark, but it's a public one and it's built into Windows, so it's interesting.

    其次,有趣的是,看看在给定$ 3000限制的机器上,是否容易(或有多难)获得7.9 WEI(当前最大)。 看到一台1000美元的PC还能得到什么也很有趣。 是的,我们都意识到WEI只是一个基准,但它是一个公开的基准,并且已内置在Windows中,因此很有趣。

  • Third, I am not much of a gamer (I have a Xbox for that) but I do run several large 24" to 30" monitors and don't like waiting for my Windows to repaint, so do like a faster video card. 第三,我不是一个游戏玩家(我有一个Xbox),但是我确实运行了几台24英寸到30英寸的大型显示器,并且不喜欢等待Windows重新粉刷,所以就像更快的视频卡一样。

Here's some scores, some results, and some commentary.

这里有一些分数,一些结果和一些评论。

基线。 我的笔记本电脑。 (Baseline. My Laptop.)

This is the WEI my stock Lenovo W500 8Gb with an aftermarket OCZ Vertex 256gig SSD.

这是WEI我的库存联想W500 8Gb,带有售后OCZ Vertex 256gig SSD。

Using Visual Studio 2010 and building the trunk of the NerdDinner project (a smallish sized ASP.NET app) is about 3 to 4 seconds. On my new PC, building NerdDinner from scratch happens before I can say "one one-thousand." I could try it from MSBuild and the command line...

使用Visual Studio 2010并构建NerdDinner项目(较小的ASP.NET应用程序)的主干大约需要3到4秒钟。 在我的新PC上,从零开始构建NerdDinner的过程要先于我说“一千个”。 我可以从MSBuild和命令行中尝试...

使用PowerShell测量命令 (Measuring Commands with PowerShell)

Here's a better way to measure. Taking Chris Tavares' vsvars32.ps2, changed slightly for Visual Studio 2010 and run under PowerShell x86, I add this to my local machine's Microsoft.PowerShell_profile.ps1. (As well as running "set-executionpolicy unrestricted" as admin. Or set it to whatever you like).

这是一种更好的测量方法。 以Chris Tavares的vsvars32.ps2(对于Visual Studio 2010稍有更改并在PowerShell x86下运行),我将其添加到本地计算机的Microsoft.PowerShell_profile.ps1中。 (以及以“ admin”身份运行“ set-executionpolicy unrestricted”或将其设置为任意值)。

function Get-Batchfile ($file) {    $cmd = "`"$file`" & set"    cmd /c $cmd | Foreach-Object {        $p, $v = $_.split('=')        Set-Item -path env:$p -value $v    }}

function VsVars32($version = "10.0"){    $key = "HKLM:SOFTWARE\Microsoft\VisualStudio\" + $version    $VsKey = get-ItemProperty $key    $VsInstallPath = [System.IO.Path]::GetDirectoryName($VsKey.InstallDir)    $VsToolsDir = [System.IO.Path]::GetDirectoryName($VsInstallPath)    $VsToolsDir = [System.IO.Path]::Combine($VsToolsDir, "Tools")    $BatchFile = [System.IO.Path]::Combine($VsToolsDir, "vsvars32.bat")    Get-Batchfile $BatchFile    [System.Console]::Title = "Visual Studio " + $version + " Windows Powershell"}

Thanks to Chris, now I can type "VsVars32" at any PowerShell prompt and I'm immediately setup with a Visual Studio Command Line environment. Just as an FYI, while MSBuild does report timings, since I'm using PowerShell, I can surround any command with "measure-command" as in.

多亏了Chris,现在我可以在任何PowerShell提示符下键入“ VsVars32”,并且可以立即在Visual Studio命令行环境中进行设置。 就像FYI一样,虽然MSBuild确实会报告计时,但由于我使用的是PowerShell,因此可以将任何命令都用“ measure-command”括起来。

measure-command { msbuild /t:rebuild .\NerdDinner.sln }

测量命令{msbuild / t:rebuild。\ NerdDinner.sln}

In this case from the command line, NerdDinner takes 1900ms on my laptop and 900ms on my desktop, so this isn't a good test as the app is far too small.

在这种情况下,从命令行来看,NerdDinner在我的笔记本电脑上花费1900毫秒,在我的台式机上花费900毫秒,所以这不是一个很好的测试,因为该应用程序太小了。

Of course, I can also run msbuild with the /m switch and get parallel builds on multi-core machines. However, since NerdDinner only has two projects, I only get a 10% performance increase. Let's try a more significant project.

当然,我也可以使用/ m开关运行msbuild并在多核计算机上进行并行构建。 但是,由于NerdDinner只有两个项目,因此我只能获得10%的性能提升。 让我们尝试一个更重要的项目。

初步结论:如何构建昨天发布的NHibernate 3.0 Alpha ? (The Upfront Conclusion: How about building yesterday's release of NHibernate 3.0 Alpha?)

Here's the results, building NHibernate 3.0 Alpha using NHibernate.Everything.sln:

这是使用NHibernate.Everything.sln构建NHibernate 3.0 Alpha的结果:

Times are in seconds Lenovo W500 w/ SSD Ultimate PC 1.0 Ultimate PC 2.0
MSBuild /t:rebuild 36.05 35.52 16.12
MSBuild /t:rebuild /m 24.98 25.57 12.53
MSBuild 6.17 6.99 3.11
MSBuild /m 5.91 6.66 2.72
时间以秒为单位 联想W500带SSD 终极PC 1.0 终极PC 2.0
MSBuild / t:重建 36.05 35.52 16.12
MSBuild / t:重建/ m 24.98 25.57 12.53
MSBuild 6.17 6.99 3.11
MSBuild /米 5.91 6.66 2.72

Interesting that last year's laptop is very competitive with the original "Ultimate PC" from 2007 (still a beefy Quad Core) due to the laptop's new SSD.

有趣的是,由于笔记本电脑采用了新的SSD,去年的笔记本电脑与2007年推出的原始“ Ultimate PC ”(仍然是强大的四核)竞争非常激烈。

Still, against the best numbers the new PC is effectively twice as fast or more at everything. Yesterday I was encoding a large HD video for Channel 9 and while the Lenovo took 3 hours, the new Ultimate PC 2.0 took 15 minutes. In some cases, it'll save hours on computationally intensive tasks, I believe. Additionally, for computationally intensive multi-tasking that have caused me to use multiple computers in the past, this machine has handled easily. For example, while I was encoding that video, I was also streaming live 720p HD video over Office Communicator. This takes at least 2 procs working full and slowed my Ultimate PC 1.0 down to the point of uselessness. The aggregate CPU on the new machine never went above 12% while just streaming video.

尽管如此,与最好的数字相比,新PC的所有功能实际上都快了一倍甚至更多。 昨天我正在为Channel 9编码大型高清视频,而Lenovo用了3个小时,而新的Ultimate PC 2.0则用了15分钟。 我相信,在某些情况下,它将节省大量计算任务。 另外,对于过去导致我使用多台计算机的计算密集型多任务处理,该机器易于处理。 例如,当我编码该视频时,我还通过Office Communicator流式传输720p高清实时视频。 这至少需要2个proc才能正常工作,并将我的Ultimate PC 1.0减慢到无用的地步。 新计算机上的总CPU在流式传输视频时从未超过12%。

While I did go overboard on the Video Card, I'm extremely happy with the computer so far. I threw in an NVidia GTX275 I had laying around to run another 22" monitor while the GTX480 is running the 30" and a 24". The GTX480 does run hot. For you, dear reader, a GTX275 or any decent $100 card would do you just fine and you'd save a lot of money.

虽然我确实不喜欢视频卡,但到目前为止,我对计算机感到非常满意。 我把NVidia GTX275放进去,要运行另一台22英寸显示器,而GTX480却要运行30英寸和24英寸显示器。GTX480确实很热。对于您来说,亲爱的阅读器,GTX275或任何不错的$ 100卡都可以您一切都好,您会节省很多钱。

Here's the final parts list along with some caveats. Remember, building your own PC does come with risks, as you're sometimes putting together different companies parts and things don't always work perfectly. You can get a great 7.x WEI machine for $1000 from just about anyone.

这是最终零件清单以及一些注意事项。 请记住,构建您自己的PC确实会带来风险,因为有时您会把不同公司的零件放在一起,而事情并不一定会完美运行。 您几乎可以从任何人那里以$ 1000的价格购买一台出色的7.x WEI机器。

零件清单 (The Parts List)

  • $965 Intel Core i7-980X Extreme Edition 3.33GHz LGA 1366 130W Six-Core Desktop Processor

    $ 965 Intel Core i7-980X Extreme Edition 3.33GHz LGA 1366 130W六核台式机处理器

    • I haven't overclocked this yet. I'm waiting for a better BIOS release from Gigabyte. If anyone is an expert overclocker and wants to have a chat and maybe do a show, give me a call. 我还没有超频。 我正在等待技嘉发布更好的BIOS。 如果有人是超频专家,并且想要聊天或进行表演,请给我打电话。

    $965 Intel Core i7-980X Extreme Edition 3.33GHz LGA 1366 130W Six-Core Desktop Processor

    $ 965 Intel Core i7-980X Extreme Edition 3.33GHz LGA 1366 130W六核台式机处理器

  • $699 (with combo actually $480) GIGABYTE GA-X58A-UD9 ATX Intel Motherboard

    699美元(含组合组件实际为480美元)技嘉GA-X58A-UD9 ATX英特尔主板

    • This motherboard is picky about power. My original Silverstone refused to boot this board, so I took it back and got an ANTEC and it works first try. The UD5 or UD7 would also have been nice and would have been smaller, but I wanted the USB3 and SATA 6gb/s support. 该主板对电源有些挑剔。 我最初的Silverstone拒绝启动该板,因此我拿回了它并得到了ANTEC,它可以首先尝试工作。 UD5或UD7也会不错,而且体积会更小,但我希望支持USB3和SATA 6gb / s。

    $699 (with combo actually $480) GIGABYTE GA-X58A-UD9 ATX Intel Motherboard

    699美元(含组合组件实际为480美元)技嘉GA-X58A-UD9 ATX英特尔主板

  • $374 OCZ Reaper Edition 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1333 (PC3 10666) Low Voltage Desktop Memory

    $ 374 OCZ Reaper Edition 12GB(3 x 4GB)240针DDR3 SDRAM DDR3 1333(PC3 10666)低压台式机内存

    • Apparently the Intel x58 "Nehalem" chipset is finicky about RAM. When I boot the machine - sometimes - it says I have only 8 gigs of RAM (even though the BIOS knows I have 12 gigs and see it). I have to reboot a few times to get the 12 gigs to stick. I'm hoping this is fixed in a BIOS update or a little more voltage on the mobo. This appears to be a widespread issue. 显然,英特尔x58“ Nehalem”芯片组对RAM持谨慎态度。 当我启动计算机时-有时-它说我只有8 gigs的RAM(即使BIOS知道我有12 gigs并可以看到它)。 我必须重新启动几次才能保持12个演出。 我希望可以通过BIOS更新或主板上的更多电压来解决此问题。 这似乎是一个普遍的问题。

    $374 OCZ Reaper Edition 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1333 (PC3 10666) Low Voltage Desktop Memory

    $ 374 OCZ Reaper Edition 12GB(3 x 4GB)240针DDR3 SDRAM DDR3 1333(PC3 10666)低压台式机内存

  • $320 NVidia GTX 480

    $ 320 NVidia GTX 480

    • Honestly, any good $100 card will do you. I know I went over the top on this. 老实说,任何一张$ 100的好卡都会帮您。 我知道我在这之上。

    $320 NVidia GTX 480

    $ 320 NVidia GTX 480

  • $610 Crucial RealSSD C300 CTFDDAC256MAG-1G1 2.5" MLC Internal Solid State Drive (SSD)

    $ 610 Crucial RealSSD C300 CTFDDAC256MAG-1G1 2.5“ MLC内部固态驱动器(SSD)

    • I needed to flash the BIOS on this SSD before I set it up, but that involved just burning an image to a CD and booting off it. This SSD will get you a 7.9 if you plug it into a SATA 6Gb/s port, or a 7.7 if it's plugged into a SATA 3Gb/s port in my experience. 设置之前,我需要在此SSD上刷新BIOS,但这涉及将映像刻录到CD并启动。 根据我的经验,如果将其插入SATA 6Gb / s端口,则将获得7.9;如果将其插入SATA 3Gb / s端口,则将获得7.7。

    $610 Crucial RealSSD C300 CTFDDAC256MAG-1G1 2.5" MLC Internal Solid State Drive (SSD)

    $ 610 Crucial RealSSD C300 CTFDDAC256MAG-1G1 2.5“ MLC内部固态驱动器(SSD)

  • $174 Antec TruePOwer TPQ-1000 PowerSupply

    $ 174 Antec TruePOwer TPQ-1000电源

    • Very quiet, worked nicely and immediately. 很安静,很好,立即工作。

    $174 Antec TruePOwer TPQ-1000 PowerSupply

    $ 174 Antec TruePOwer TPQ-1000电源

  • $199 Cooler Master HAF-X Case

    $ 199 Cooler Master HAF-X保护套

    • This case is a beast, but it's required for the UD9 motherboard as extended ATX. To be clear, it's big. That said, it's got great airflow, and it's quiet even with all the fans running as they are big low RPM fans. 这种情况是野兽,但作为扩展ATX的UD9主板是必需的。 要明确的是,它很大。 就是说,它有很大的气流,即使所有风扇都在运转,因为它们都是大的低RPM风扇,所以它还是安静的。

    $199 Cooler Master HAF-X Case

    $ 199 Cooler Master HAF-X保护套

Also, Shay Erlichmen wrote some Google Apps Javascript and put up a LIVE Google Spreadsheet that will scrape NewEgg's site and put up the current total of all the components. Thanks to Shay!

另外, Shay Erlichmen编写了一些Google Apps Javascript并编写了一个LIVE Google Spreadsheet,它将抓取NewEgg的网站并发布当前所有组件的总数。 感谢谢伊!

建造 (The Build)

I built the case over two 4 hour sessions and broadcasted live to 80 of my close internet friends on UStream. A lot of really smart people helped me out on this build and offered a lot of interesting points.

我在两个4小时的会议中制作了此案,并在UStream上向80个我的亲密互联网朋友进行了直播。 许多非常聪明的人帮助我完成了这个构建,并提供了许多有趣的观点。

  • You can watch the VERY raw video of Day 1 and Day 2 on UStream if you like pain.

    你可以看的非常原始视频1日和2日在USTREAM如果你喜欢疼痛。

The first day build went bad because of the power supply issue so we got it built, then spent hours thinking it was a motherboard issue. It was the power supply.

由于电源问题,第一天的构建工作很糟糕,因此我们将其构建起来,然后花了几个小时认为这是主板问题。 是电源。

After we assembled the machine and before we installed any drivers, here was the first WEI score. The 1.0s happened because the standard VGA driver loaded.

组装完机器之后,在安装任何驱动程序之前,这是第一个WEI分数。 之所以发生1.0,是因为加载了标准VGA驱动程序。

After installing the Intel Chipset drivers for the Motherboard and the latest NVidia drivers, we were at 7.8 for video and 7.4 all up with the SSD holding us back.

在安装了适用于主板的英特尔芯片组驱动程序和最新的NVidia驱动程序之后,我们的视频和视频总价分别为7.8和7.4,而SSD却使我们退缩。

I moved the SSD to another SATA port as this motherboard has multiple SATA chipsets (Intel, Marvel) and installed the latest drivers. In one case, setting the BIOS to IDE instead of AHCI seemed to stick me at 5.9 for disk.

我将SSD移至另一个SATA端口,因为该主板具有多个SATA芯片组(Intel,Marvel)并安装了最新的驱动程序。 在一种情况下,将BIOS设置为IDE而不是AHCI似乎使我无法使用5.9的磁盘。

Once I moved onto the Marvel SATA 3 controller with 6 GB/s I got 7.9 on disk. Interestingly the same drive on the Intel SATA 2 controller gets 7.7. The Marvel gets 310MB/s out of the Crucial SSD while the Intel controller gets 270MB/s.

当我以6 GB / s的速度移动到Marvel SATA 3控制器时,在磁盘上获得了7.9。 有趣的是,英特尔SATA 2控制器上的同一驱动器获得7.7。 Marvel从Crucial SSD中获得310MB / s的速度,而Intel控制器则为270MB / s。

At this point, running everything stock and air-cooled, I have a nice 7.8 machine. I suspect I won't be able to get the Processor to 7.9 without overclocking to 4Ghz. As it is, the machine is running lovely. I wouldn't mind overclocking but I have decided against water cooling as I'm just too old and I need a machine to work 100% of the time. Pete Brown will be water cooling his, he says, so I'll be following his build. That said, if anyone wants to sit with me and chat about if it's possible to get this machine to 4Ghz using air-cooling, give me a holler. As for the graphics, I don't see how I can get to 7.9 without something drastic.

在这一点上,运行所有库存和风冷的设备,我有一台不错的7.8机器。 我怀疑如果不超频到4Ghz就无法将处理器提高到7.9。 照原样,机器运行良好。 我不介意超频,但是我已经决定不进行水冷却,因为我年纪太大了,我需要一台机器可以100%地工作。 他说,皮特·布朗(Pete Brown)将为他的水冷却,所以我将继续他的建造。 就是说,如果有人想和我坐在一起聊聊是否有可能通过空冷将机器提升到4Ghz,请给我个空子。 至于图形,我不知道如何在没有剧烈变化的情况下达到7.9。

All in all, a great time was had by all. Thanks so much to everyone who helped and to all the wonderful (and waspish) commenters who made this a better experience.

总而言之,所有人度过了愉快的时光。 非常感谢所有帮助过的人,以及所有使这成为更好体验的出色(和卑鄙的)评论员。

Related Links:

相关链接:

  • Hack: Parallel MSBuilds from within the Visual Studio IDE

    技巧:从Visual Studio IDE中并行MSBuild

  • Faster Builds with MSBuild using Parallel Builds and Multicore CPUs

    使用并行构建和多核CPU的MSBuild进行更快的构建

  • Newegg Ultimate PC 2.0 Price and Links Spreadsheet

    Newegg Ultimate PC 2.0价格和链接电子表格

  • Earlier posts:

    较早的帖子:

    • Ultimate Developer PC 2.0 - Part 1 - Building a WEI 7.9 and RFC for building a GOM (God's Own Machine)

      Ultimate Developer PC 2.0-第1部分-构建WEI 7.9和RFC以构建GOM(上帝自己的机器)

    • Ultimate Developer PC 2.0 - Part 2 - UPDATE and PODCAST on Building a WEI 7.9 and RFC for building a GOM (God's Own Machine)

      Ultimate Developer PC 2.0-第2部分-构建WEI 7.9和RFC(用于构建GOM)的更新和PODCAST(上帝自己的计算机)

    • Also, we hosted a great podcast last week with some actual members of the WEI team and asked their ideas on how we could create the Ultimate Developer PC.

      此外,上周我们与WEI团队的一些实际成员一起主持了精彩的播客,并询问了他们关于如何创建Ultimate Developer PC的想法。

    • Pete Brown's parallel Ultimate PC Build

      皮特·布朗的并行Ultimate PC Build

  • Ultimate PC 1.0

    终极PC 1.0

    • Podcasts

      播客

      • Hanselminutes Podcast 69 - Building a Developer PC

        Hanselminutes播客69-构建开发人员PC

      • Hanselminutes Podcast 74 - Jeff Atwood overclocks the Ultimate PC

        Hanselminutes播客74-Jeff Atwood超频Ultimate PC

    • Blog Posts

      博客文章

      • The CodingHorror Ultimate Developer Rig Throwdown: Part 1 - The idea is presented and my list ofdemands goals is kicked around.

        CodingHorror Ultimate Developer Rig Throwdown:第1部分-提出了这个想法,并提出了我的需求目标清单。

      • The CodingHorror Ultimate Developer Rig Throwdown: Part 2 - The hardware list from NewEgg with a total of $1903.00. It'd be probably $1600 or less today, just a few months later.

        CodingHorror Ultimate Developer Rig Throwdown:第2部分-NewEgg的硬件列表,总价为$ 1903.00。 几个月后,今天的价格可能是1600美元或更低。

      • The CodingHorror Ultimate Developer Rig Throwdown: Part 3 - Jeff gets my system to boot and I link to him excessively.

        CodingHorror Ultimate Developer Rig Throwdown:第3部分-Jeff启动了我的系统,并且我与他的链接过多。

      • Building a PC, Part I - The Basic Build. Jeff unpacks and get my system to POST in two hours.

        构建PC,第一部分-基本构建。 Jeff打开包装,并在两个小时内将系统送至POST。

      • Building a PC, Part II - Lots of pics as Jeff moves beyond BIOS POST and adds my 10,000 RPM Raptor Drives.

        搭建PC,第二部分-Jeff超越BIOS POST并添加了我的10,000 RPM Raptor驱动器时的大量图片。

      • Building a PC, Part III - Jeff digs into the magic and voodoo that is overclocking and pushes my system nearer to 3 Ghz. We're conservative overclockers, though. Remember this is a developer machine, not a Gamer PC.

        构建PC,第三部分-杰夫研究超频的魔法和伏都教,使我的系统接近3 GHz。 不过,我们是保守的超频者。 请记住,这是开发人员机器,而不是Gamer PC。

      • Building a PC, Part IV - Jeff adds some damping foam and greats a Basic, Premium and Deluxe Parts List.

        建造PC,第IV部分-Jeff添加了一些阻尼泡沫,并完善了基本高级豪华零件清单。

强制任务员截图! (Obligatory Taskman Screenshot!)

Woohoo!

.

hoo!

翻译自: https://www.hanselman.com/blog/ultimate-developer-pc-20-part-3-update-on-building-a-wei-79-and-rfc-for-building-a-gom-gods-own-machine

Ultimate Developer PC 2.0-第3部分-有关构建WEI 7.9和RFC(用于构建GOM)的更新(上帝拥有的机器)...相关推荐

  1. pete shinners_Hanselminutes播客226-使用Pete Brown构建自己的Ultimate Developer PC 2.0

    pete shinners My two-hundred-and-twenty-sixth podcast is up. Scott catches up with Pete Brown after ...

  2. vue 3.0 rfc_Ultimate Developer PC 2.0-第2部分-构建WEI 7.9和RFC(用于构建GOM)的更新和PODCAST(上帝自己的计算机)...

    vue 3.0 rfc As a reminder, if you're just turning in, here's our glossary: 提醒一下,如果您只是上交,请参阅以下词汇表: WE ...

  3. Data Geekery发布了Java ORM工具jOOQ的3.9.0版,用于构建类型安全查询

    Data Geekery公司发布了其Java对象关系映射(ORM,Object-Relational Mapping)工具包jOOQ的3.9.0版.jOOQ首次推出于2010年8月,实现从数据库生成代 ...

  4. Apollo6.0代码Lattice算法详解——Part6:轨迹评估及碰撞检测对象构建

    Apollo6.0代码Lattice算法详解--Part6:轨迹评估及碰撞检测对象构建 0.前置知识 1.涉及主要函数 2.函数关系 3.部分函数代码详解 3.1 lattice_planner.cc ...

  5. Java 通用代码生成器光 2.3.0 文明 Beta10 版发布介绍视频,支持从源码构建

    Java 通用代码生成器光 2.3.0 文明 Beta10 版发布介绍视频,支持从源码构建 Java 通用代码生成器光 2.3.0 文明 Beta10 版发布最新介绍视频,详细介绍 java 通用代码 ...

  6. 源“ySQL 8.0 Community Server”的GPG密钥已安装,但是不适用于此软件包。请检查源的公钥URL是否配置正确。

    源"ySQL 8.0 Community Server"的GPG密钥已安装,但是不适用于此软件包.请检查源的公钥URL是否配置正确. 方法: 将 sudo yum install ...

  7. 2023最新ChatGPT商业运营网站源码+支持ChatGPT4.0+新增GPT联网功能+支持ai绘画+实时语音识别输入+用户会员套餐+免费更新版本

    2023最新ChatGPT商业运营网站源码+支持ChatGPT4.0+新增GPT联网功能+支持ai绘画+实时语音识别输入+用户会员套餐+免费更新版本 一.AI创作系统 二.系统程序下载 三.系统介绍 ...

  8. pc receiver2.0.3_【工控笔记】WINCC 7.4与博途V15.1仿真软件S7PLCSIM V15 通信

    请先阅读以下笔记,了解WINCC正常情况下如何连接S7-1200PLC,本篇笔记会跳过具体操作步骤,着重强调需注意的地方. <S7-1200与WINCC7.3常规连接> http://ww ...

  9. Windows Mobile智能手机今日插件编程开发初探(使用C++, vs2008, Pocket PC 5.0内核)

    我很久以前写的一篇文章,现在转移到这里. 前天突发灵感认为如果能做一个在手机桌面上的每日问候程序一定会很有意思,于是开始了Pocket PC 今日插件(today plugin)编程的学习和研究. 受 ...

最新文章

  1. 机器学习特征筛选:相关系数法(correlation)
  2. 微信小程序 时间选择
  3. 内存溢出和内存泄漏的区别、产生原因以及解决方案 转
  4. linux方向键ascii_上下左右 方向键的ASCII码值是多少?
  5. AutoScaling 生命周期挂钩功能
  6. 重磅 |《企业埋点体系搭建方法论及实践经验》白皮书上线
  7. java 和javafx_Java,JavaFX的流利设计风格文本字段和密码字段
  8. 从Grunt测试Grunt插件
  9. 字符串匹配算法(BM)
  10. 她是法国数学界的“花木兰”,高斯的“救命恩人”
  11. WinDbg 命令三部曲:(一)WinDbg 命令手册
  12. Windows PrintNightmare 漏洞和补丁分析
  13. AI 最新突破集锦 AI的瓶颈和进展 AI控制核聚变 AI预测蛋白质3D结构 Alpha Fold2 AI证明数学公式 自动驾驶 AI替代的硬件
  14. java 输入一个数四舍五入_Java程序将数字四舍五入到n个小数位
  15. Mybatis3全面详解
  16. 开启旧版DirectX组件解决Win10系统游戏报错异常问题
  17. 5行代码识别各种验证码
  18. 13家著名IT公司logo变迁史
  19. TalkingData技术实现分析
  20. Adobe Illustrator教程

热门文章

  1. 微信头像更新了,有你喜欢的吗?
  2. Spring框架中 自动装配的详解 属性值的详解
  3. 含并行连结的网络 GoogLeNet / Inception V3 动手学深度学习v2 pytorch
  4. 微信表情图像代表什么意思_微信表情包每个表情代表什么意思
  5. 什么是信息增益(Information Gain)?
  6. mini.DataGrid使用说明
  7. Vue知识点总结(一)
  8. Linux一键脚本自动化安装项目环境
  9. 平衡运输问题及其表上作业法---指派问题及其匈牙利解法
  10. web前端高级必备面试资料