投稿時間:2022-09-28 02:22:29 RSSフィード2022-09-28 02:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia PC USER] 「第13世代Coreプロセッサ(Raptor Lake)」登場 “世界最速”のアンロック対応デスクトップ向けから https://www.itmedia.co.jp/pcuser/articles/2209/28/news037.html intel 2022-09-28 01:20:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] 第13世代Coreプロセッサ(Raptor Lake)はなぜ速い? コア数とキャッシュ容量増加が意味すること https://www.itmedia.co.jp/pcuser/articles/2209/28/news056.html ITmediaPCUSER第世代CoreプロセッサRaptorLakeはなぜ速いコア数とキャッシュ容量増加が意味することIntelがついに発表した「第世代CoreプロセッサRaptorLake」は、先代と同じくイスラエルの研究開発拠点が主導して開発された製品だ。 2022-09-28 01:20:00
AWS AWS News Blog AWS IoT FleetWise Now Generally Available – Easily Collect Vehicle Data and Send to the Cloud https://aws.amazon.com/blogs/aws/aws-iot-fleetwise-now-generally-available-easily-collect-vehicle-data-and-send-to-the-cloud/ AWS IoT FleetWise Now Generally Available Easily Collect Vehicle Data and Send to the CloudToday we announce the general availability of AWS IoT FleetWise a fully managed AWS service that makes it easier to collect transform and transfer vehicle data to the cloud Last AWS re Invent we previewed AWS IoT FleetWise heard customer feedback and improved features for various use cases of near real time vehicle data processing With AWS … 2022-09-27 16:54:48
AWS AWS Media Blog Getting optimal video quality using AWS Elemental Statmux: A content-aware approach https://aws.amazon.com/blogs/media/getting-optimal-video-quality-using-aws-elemental-statmux-a-content-aware-approach/ Getting optimal video quality using AWS Elemental Statmux A content aware approachIf you are a content or service provider delivering video over fixed bandwidth infrastructure such as satellite cable or terrestrial networks you continuously look for ways to fit as many programs as possible in your statistical multiplexing statmux system without compromising the video experience delivered to customers Statmux which has been in use for over … 2022-09-27 16:15:27
python Pythonタグが付けられた新着投稿 - Qiita PythonのVSCodeのデバッグ構成についての備忘録 https://qiita.com/mounntainn/items/a5dc25ab9405a2b236c7 versionconfigurations 2022-09-28 01:15:44
海外TECH MakeUseOf iRobot Introduces Its First Vacuum and Mop Combo, the Roomba Combo j7+ https://www.makeuseof.com/roomba-combo-j7-mop-vacuum/ detect 2022-09-27 16:15:15
海外TECH MakeUseOf 6 Reasons You Don't Need to Upgrade Your iPhone Every Year https://www.makeuseof.com/reasons-not-to-upgrade-iphone-every-year/ yearwhen 2022-09-27 16:15:15
海外TECH MakeUseOf How to Fix the “File or Directory is Corrupted and Unreadable” Error on a Windows 10 Computer https://www.makeuseof.com/windows-10-fix-the-file-or-directory-is-corrupted-and-unreadable-error/ How to Fix the “File or Directory is Corrupted and Unreadable Error on a Windows ComputerThe dreaded “File or Directory is Corrupted and Unreadable error can stop you from accessing your important files but you can fix it Here s how 2022-09-27 16:15:15
海外TECH DEV Community Apache APISIX loves Rust! (and me too) https://dev.to/apisix/apache-apisix-loves-rust-and-me-too-1n73 Apache APISIX loves Rust and me too Apache APISIX is built upon the shoulders of two giants NGINX a widespread Open Source reverse proxyOpenResty a platform that allows scripting NGINX with the Lua programming language via LuaJITThis approach allows APISIX to provide out of the box Lua plugins that should fit most business requirements But it always comes a time when generic plugins don t fit your requirements In this case you can write your own Lua plugin However if Lua is not part of your tech stack diving into a new ecosystem is a considerable investment Therefore Apache APISIX offers developers to write plugins in several other languages In this post I d like to highlight how to write such a plugin with Rust A bit of contextBefore I dive into the how let me first describe a bit of context surrounding the Rust integration in Apache APISIX I believe it s a good story because it highlights the power of Open Source It starts with the Envoy proxy Envoy is an open source edge and service proxy designed for cloud native applications Around Envoy s developers realized a simple truth Since Envoy is a statically compiled binary integrators who need to extend it must compile it from the modified source instead of using the official binary version Issues range from supply chains more vulnerable to attacks to a longer drift when a new version is released For end users whose core business is much further it means having to hire specialized skills for this reason only The team considered to solve the issue with C extensions but discarded this approach as neither APIs nor ABIs were stable Instead they chose to provide a stable WebAssembly based ABI If you re interested in a more detailed background you can read the whole piece on GitHub The specification is available on GitHub Developers can create SDK for their tech stackProxy and API Gateway providers can integrate proxy wasm in their product Apache APISIX and proxy wasmThe Apache APISIX project decided to integrate proxy wasm into the product to benefit from the standardization effort It also allows end users to start with Envoy or any other proxy wasm compatible reverse proxy to migrate to Apache APISIX when necessary APISIX doesn t implement proxy wasm but integrates wasm nginx module It s an Apache v licensed project provided by api ai one of the main contributors to Apache APISIX As its name implies integration is done at the NGINX level Let s code Now that we have explained how everything fits together it s time to code Preparing Rust for WebAssemblyBefore developing the first line of code we need to give Rust WASM compilation capabilities rustup target add wasm wasiIt allows the Rust compiler to output WASM code cargo build target wasm wasiThe WASM code is found in target wasm wasi debug sample wasmtarget wasm wasi release sample wasm when compiled with the release flag Setting up the projectThe setup of the project is pretty straightforward cargo new sample lib Create a lib project with the expected structure The code itselfLet me first say that the available documentation is pretty sparse For example proxy wasm s is limited to the methods signature think JavaDocs Rust SDK is sample based However one can get some information from the C SDK WASM module is running in a stack based virtual machine and its memory is isolated from the host environment All interactions between host and WASM module are through functions and callbacks wrapped by context object At bootstrap time a root context is created The root context has the same lifetime as the VM runtime instance and acts as a target for any interactions which happen at initial setup It is also used for interactions that outlive a request At request time a context with incremental is created for each stream Stream context has the same lifetime as the stream itself and acts as a target for interactions that are local to that stream The Rust code maps to the same abstractions Here s the code for a very simple plugin that logs to prove that it s invoked use log warn use proxy wasm traits Context HttpContext use proxy wasm types Action LogLevel proxy wasm main proxy wasm set log level LogLevel Trace proxy wasm set http context gt Box lt dyn HttpContext gt Box new HttpCall struct HttpCall impl Context for HttpCall impl HttpContext for HttpCall fn on http request headers amp mut self usize bool gt Action warn on http request headers Action Continue Set the log level to Apache APISIX s defaultSet the HTTP context to create for each requestNeed to implement Context By default all functions are implemented in Context so implementation is not mandatoryLikewise for HttpContextImplement the function Functions in HttpContext refer to a phase in the ABI lifecycle when headers are decoded It should return an Action whose value is either Continue or Pause Log finallyAfter generating the WebAssembly code see above we have to configure Apache APISIX Configuring Apache APISIX for WASMApache APISIX s documentation is geared toward Go Still since both Go and Rust generate WebAssembly we can reuse most of it We need to declare each WASM plugin wasm plugins name sample priority file opt apisix wasm sample wasmThen we can use the plugin like any other routes uri upstream type roundrobin nodes httpbin org plugins sample conf dummy ENDPlugin nameAt the moment the conf attribute is mandatory and must be non empty on the Apache APISIX validation side even though we don t configure anything on the Rust sideAt this point we can ping the endpoint curl localhost The result is as expected rust wasm plugin apisix warn on http request headers client server request GET HTTP host localhost ConclusionIn this post I described the history behind the proxy wasm and how Apache APISIX integrates it via the WASM Nginx module I explained how to set up your Rust local environment to generate WebAssembly Finally I created a dummy plugin and deployed it to Apache APISIX In the next post we ll beef up the plugin to provide valuable capabilities The source code is available on GitHub ajavageek apisix rust plugin To go further proxy wasm specWASM Nginx moduleWebAssembly for Proxies Rust SDK Apache APISIX WASMOriginally published at A Java Geek on September th 2022-09-27 16:28:24
海外TECH DEV Community A super easy way to participate in Hacktoberfest (New for '22!) https://dev.to/replayable/a-super-easy-way-to-participate-in-hacktoberfest-22-78d A super easy way to participate in Hacktoberfest New for x Hacktoberfest is a yearly event to encourage people to contribute to open source in October It s a celebration of community learning and giving back Hacktoberfest is a great opportunity to learn what contributing is all about meet a new developer community and maybe even earn some prizes along the way If you re a beginner it can be difficult to get started with open source Sometimes it s hard to onboard with new technology Even once you re familiar with the repo tags like good first issue might have been completed by someone else Thankfully this year Hacktoberfest is counting documentation as a valid contribution Documentation is a great way to contribute to repositories Often developers don t prioritize their readmes and tutorials They ll contain bugs errors be confusing poorly formatted etc How many times have you come across incorrect or outdated docs yourself Documentation is hugely important to open source Every developer that gets started with a new project needs to read the docs Yet it s not a priority for most developers From the GitHub survey According to of respondents there is a pervasive problem in the open source community with incomplete or outdated documentation Yet of contributors surveyed said they rarely or never contribute to documentation Seems like a big problem right Well this Hacktoberfest you can help by making some of your own contributions to open source documentation Note that if you ll likely need to become familiar with markdown to work with md files Don t worry it s easy and you can learn it in a few minutes Easy ways to contribute to Hacktoberfest documentationFormat the repository readme Often times the project readmes are a loose collection of thoughts without headings titles or any kind of formatting Study that markdown guide and spruce it up Elaborate on installation steps Developers often write very short setup steps sometimes just a list of shell commands without explanation You can help improve the readme by noting specific package versions adding links to rd party documentation and explaining the setup process in plain englishFix bugs in code samples Every readme has bugs even those created by huge companies Try making use of all the code samples in the readme It s likely something won t work or a step will be missed Enhance the readme with screenshots and videos Working on a front end repo or CLI Add screenshots or replays to the documentation to help other developers follow along At Replayable we re laser focused on improving documentation and developer experience If you need any help contributing to open source docs drop in our Discord and we ll help you out 2022-09-27 16:05:47
海外TECH Engadget Intel's 13th-gen CPUs offer up to 24 cores and 5.8GHz speeds https://www.engadget.com/intel-13th-gen-cpus-raptor-lake-162054801.html?src=rss Intel x s th gen CPUs offer up to cores and GHz speedsIf you want to see the power of competition in action just look at the race between Intel and AMD to deliver the fastest PC CPU While Intel was plagued with production delays and design issues over the past decade AMD doubled down on its Zen architecture to create an impressive family of Ryzen chips suited to performance hungry enthusiasts Today AMD s chips power some of our favorite gaming laptops like the ASUS Zephyrus G Just when we were about to give up on Intel though it finally delivered on its long awaited hybrid chips with the th gen Core CPUs Thanks to a combination of performance cores P cores and efficient cores E cores they trounced AMD in most multi threaded benchmarks while using less power than the previous th gen chips Now it s time for the follow up Intel s th gen Core chips AKA Raptor Lake And it sure looks like Intel isn t slumming it The company s new top end chip the Core i K sports cores P cores and E cores and can reach up to a GHz Max Turbo frequency In comparison last year s K offered cores P and E and a maximum speed of GHz Intel claims the new K is percent faster than its predecessor in single threaded tasks and percent better for multi threaded work like video encoding or D rendering IntelThe th gen chips are built on an upgraded version of the Intel process which features the company s third generation SuperFin transistor When that D transistor technology was first announced in it sounded like a way for Intel to eke out more performance from its nm designs as it struggled to hit nm The Intel process is still nm following its rebranding last year For the most part it seems like that was the case AMD was able to reach nm with this year s Ryzen and chips but Intel proved with its th gen chips that it could still leap ahead with a larger fabrication process Based on the initial specifications the th gen chips look like a massive improvement across the entire lineup The Core i K adds four cores and an initial Mhz of Turbo speed hitting cores and up to GHz compared to its predecessor The i K now offers up to cores and GHz whereas last year s equivalent i was cores The big takeaway If you skipped last year s chips and are running older Intel hardware the th gen CPUs look like the update you ve been waiting for Intel claims the K is percent faster than the K when it comes to content creation multitasking using apps like Adobe Media Encoder and Photoshop And it s reportedly percent faster for media creation apps like Blender and Unreal Engine While Intel doesn t have comparisons against AMD s upcoming Ryzen chips they re not available yet after all the company says the K is percent faster than the Ryzen X in Spider Man Remastered That s to be expected though since the AMD chip is almost two years old at this point It s tough to tell how this latest battle between Intel and AMD will go though we plan to test as much of the hardware as we can If anything though it s certainly an exciting time to be in the market for new CPUs 2022-09-27 16:20:54
海外TECH Engadget Alienware's Aurora R15 offers improved cooling and the latest Intel and NVIDIA components https://www.engadget.com/dell-alienware-aurora-r15-annouced-162020419.html?src=rss Alienware x s Aurora R offers improved cooling and the latest Intel and NVIDIA componentsWith the latest GPUs and CPUs from NVIDIA and Intel making their way to consumers Alienware is updating its Aurora desktop to take advantage of those components The new Aurora R is one of the first pre built systems to come with a GeForce RTX option but even if you don t go for NVIDIA s new flagship the R looks to address one of the main flaws of its predecessor Building on the Legend case design the company introduced last year Alienware claims the Aurora R delivers improved cooling performance thanks to a few tweaks If you configure the desktop for liquid cooling it will come with a mm radiator instead of a mm one as was the case with previous Aurora PCs Additionally with the move to Intel s latest th generation CPUs any system with a K series chip will feature five mm chassis fans According to Alienware those changes make for a system that allows it to push more power to the CPU translating into a double digit uplift in performance At the same time the processor stays up to degrees Celsius cooler For context the Aurora R was notorious for featuring inadequate cooling making it not a good buy for the price Dell was asking for it nbsp nbsp nbsp Alienware has also tweaked its custom Z motherboard adopting a layout that moves the PCIe x slot to its usual position closest to the CPU socket According to the company it s a design that will allow the Aurora R to accommodate bigger GPUs As mentioned above you can configure the computer with NVIDIA s new RTX For the time being Alienware won t offer the more affordable RTX in either its GB or GB configurations Instead if you want a less expensive GPU you can go with a previous generation RTX series model or an AMD Radeon RX series card Critically Alienware will also offer a more powerful PSU option alongside GPUs like the You can configure the R with either a watt or watt power supply Previously the most powerful PSU Alienware offered was a watt model You ll definitely need the watt PSU if you plan to run the R with a Alienware Alongside the Aurora R Alienware is introducing a tenkeyless gaming keyboard The AWK features plate mounted Cherry MX Red linear switches double shot PBT keycaps and per key RGB It s interesting that Alienware has gone with a tenkeyless layout for its first non full sized keyboard The market is saturated with TKL options and in recent years and percent layout keyboards like the Razer Huntsman Mini and GMMK have become more popular among gaming enthusiasts Still it s nice to see Alienware expand beyond percent layouts The AWK will cost when it arrives this fall Alienware plans to share pricing information related to the Aurora R closer to availability later in the year 2022-09-27 16:20:20
海外TECH Engadget Intel's Unison app will let PCs text, call and share files from iPhones and Android devices https://www.engadget.com/intel-unison-iphone-android-windows-pc-integration-162018285.html?src=rss Intel x s Unison app will let PCs text call and share files from iPhones and Android devicesNew Intel PCs will soon have a feature that Macs have offered for years the ability to text take calls and send files to their iPhones That s all thanks to Intel s Unison app which aims to keep Windows user in their workflow without being distracted by their phones And yes it also works with Android devices After acquiring the Israeli company Screenovate last year Intel revamped its phone integration tool to suit more demanding users With Unison there s support for VPNs firewalls and IT manageability Intel also paid special attention to battery efficiency as well as juggling wireless connections across Wi Fi Bluetooth and cellular The result is something that could be more useful than Microsoft s Your Phone app for Windows which looks very polished but only works with Android phones According to Josh Newman Intel s VP of mobile innovation Unison will offer fast file transfers between phones and computers We re still waiting for more details on the actual connection speeds For example you d be able to quickly take a photo or video on your phone and throw it over to your Windows computer for additional editing The app will also let you push files from your PC to your phone As a lifelong Windows user who can t help but covet the integration between Macs and iOS devices Unison could be exactly what many PC users have been waiting for Still we ll need to see it in action before we make any final judgements and its limited support could be an issue To start Intel will only offer Unison a few th gen Evo PCs from HP Acer and Lenovo this fall Newman says it ll head to future th gen Evo systems next year When asked if it could ever support earlier Intel hardware Newman didn t rule it out but he noted that the company wanted to see how Unison performed on a select group of systems first There s also nothing stopping Unison from supporting AMD chips eventually he said but the companies would have to collaborate to make it happen 2022-09-27 16:20:18
海外TECH Engadget Alienware's revamped QD-OLED gaming monitor is slimmer and cheaper https://www.engadget.com/alienware-34-curved-qd-oled-gaming-monitor-2022-162001604.html?src=rss Alienware x s revamped QD OLED gaming monitor is slimmer and cheaperAlienware s existing QD OLED monitor is a spectacular display but its size and price can make it difficult to justify even if you re a well heeled enthusiast Dell is tackling both of those problems with a revamped Alienware Curved QD OLED Gaming Monitor the AWDWF The new version is thinner making it easier to mount on a wall but also carries a lower sticker It s not exactly cheap then but you can at least roll some of the savings into an RTX or other PC components The technical capabilities are largely similar although that isn t really a bad thing This latest Alienware monitor still outputs atn ultra wide x with QD OLED s signature color quality high contrast and quick pixel response times ms gray to gray The AWDWF packs a native Hz refresh rate with FreeSync Premium Pro and VESA AdaptiveSync Display support but also offers Hz variable refresh rate compatibility to work nicely with your PlayStation or Xbox Series X S There s a new on screen settings joystick to quickly access mode presets including a new Creator mode for gamers who also need to edit photos and videos The Alienware QD OLED Gaming Monitor ships sometime this fall If anything its main competition may come from its panel manufacturer Samsung will release the Odyssey OLED G with a subtler design and slightly improved Hz refresh rate before the end of While its pricing isn t yet available you may have a difficult choice if you re shopping for a stretched gaming display in the near future 2022-09-27 16:20:01
海外TECH CodeProject Latest Articles Does "foreach" in C# call "Dispose" on an "IDisposable" object? https://www.codeproject.com/Tips/5343190/Does-foreach-in-Csharp-call-Dispose-on-an-IDisposa collection 2022-09-27 16:37:00
海外TECH WIRED This 15-Inch Portable OLED Monitor Is on Sale Right Now https://www.wired.com/story/portable-oled-monitor-sale-september-2022/ hybrid 2022-09-27 16:49:35
金融 金融庁ホームページ 「デジタル・分散型金融への対応のあり方等についての研究会」(第7回)を開催します。 https://www.fsa.go.jp/news/r4/singi/20220927.html Detail Nothing 2022-09-27 17:00:00
ニュース BBC News - Home Rupa Huq MP apologises for 'superficially' black remark https://www.bbc.co.uk/news/uk-politics-63050482?at_medium=RSS&at_campaign=KARANGA kwarteng 2022-09-27 16:51:09
ニュース BBC News - Home Prince and Princess of Wales visit nation for first time https://www.bbc.co.uk/news/uk-wales-63035829?at_medium=RSS&at_campaign=KARANGA titles 2022-09-27 16:35:01
ニュース BBC News - Home ITV boss defends Holly Willoughby and Phillip Schofield over queue furore https://www.bbc.co.uk/news/entertainment-arts-63048007?at_medium=RSS&at_campaign=KARANGA phillip 2022-09-27 16:21:10
ニュース BBC News - Home Iran protester: 'They said if we didn't keep quiet, they would rape us' https://www.bbc.co.uk/news/world-middle-east-63047372?at_medium=RSS&at_campaign=KARANGA forces 2022-09-27 16:23:00
ニュース BBC News - Home Women's international friendlies: England's Chloe Kelly and Fran Kirby return to squad https://www.bbc.co.uk/sport/football/63046347?at_medium=RSS&at_campaign=KARANGA Women x s international friendlies England x s Chloe Kelly and Fran Kirby return to squadChloe Kelly and Fran Kirby have returned to England s squad to face world champions United States and Czech Republic in international friendlies next month 2022-09-27 16:26:36
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 無意識なのに嫌われる人がやっている… 人間関係で絶対にしてはいけないアプローチ - 精神科医Tomyが教える 心の荷物の手放し方 https://diamond.jp/articles/-/310181 【精神科医が教える】無意識なのに嫌われる人がやっている…人間関係で絶対にしてはいけないアプローチ精神科医Tomyが教える心の荷物の手放し方不安や悩みが尽きない。 2022-09-28 01:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 世界のエリートが「ラテン語」を猛勉強する理由とは? - 教養としての「ラテン語の授業」 https://diamond.jp/articles/-/310384 東アジア 2022-09-28 01:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】生きづらさから抜け出すためのたった1つの方法 - こころの葛藤はすべて私の味方だ。 https://diamond.jp/articles/-/310386 精神科医 2022-09-28 01:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【異色の土研究者が絶賛する一冊】地球の歴史はなんてドラマチックなんだろう。 - 超圧縮 地球生物全史 https://diamond.jp/articles/-/310333 「地球の誕生」から「サピエンスの絶滅、生命の絶滅」まで全歴史を一冊に凝縮した『超圧縮地球生物全史』は、その奇跡の物語を描き出す。 2022-09-28 01:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【大切な生徒か?お客様か?】 話題の塾講師が教える「塾選びのコツ」と「塾を変える基準」 - 中学受験を目指す保護者からよく質問される「子育てQ&A」 https://diamond.jp/articles/-/309905 【大切な生徒かお客様か】話題の塾講師が教える「塾選びのコツ」と「塾を変える基準」中学受験を目指す保護者からよく質問される「子育てQampampA」開成・桜蔭・筑波大駒場・渋谷幕張…。 2022-09-28 01:35:00
北海道 北海道新聞 日本ハム、28日札幌ドーム最終戦 予告先発は上沢 https://www.hokkaido-np.co.jp/article/737132/ 予告先発 2022-09-28 01:03:29
IT 週刊アスキー Core i9-13900Kの動作クロックは最大5.8GHz!Raptor Lake-SことデスクトップPC向け第13世代Coreが発表 https://weekly.ascii.jp/elem/000/004/106/4106813/ CoreiKの動作クロックは最大GHzRaptorLakeSことデスクトップPC向け第世代Coreが発表インテルは月日、カリフォルニア州サンノゼで開催された「Intel Innovation 」にて、デスクトップPC向け第世代インテルCoreプロセッサーを発表した。 2022-09-28 01:20:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)