投稿時間:2023-02-27 09:15:48 RSSフィード2023-02-27 09:00 分まとめ(20件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 次世代モビリティ「空飛ぶクルマ」における取組み「東京ベイeSG」が進行 国内初の重量物の物流輸送と有人輸送飛行を想定 https://robotstart.info/2023/02/27/tokyobay-esg-volocopter.html 2023-02-26 23:30:33
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 「生物多様性」がビジネスに与える影響は? 森林を資源とする企業が知っておくべきこと https://www.itmedia.co.jp/business/articles/2302/27/news042.html itmedia 2023-02-27 08:30:00
AWS AWS Japan Blog トムソンロイターが Amazon Personalize を使用してパーソナライズされたコンテンツサブスクリプションプランを大規模に提供した方法 https://aws.amazon.com/jp/blogs/news/how-thomson-reuters-delivers-personalized-content-subscription-plans-at-scale-using-amazon-personalize/ amazonpersonalize 2023-02-26 23:41:13
AWS AWS Japan Blog ワシントン・ポストが Amazon Polly の声を使った音声記事を配信開始 https://aws.amazon.com/jp/blogs/news/the-washington-post-website-launches-audio-articles-voiced-by-amazon-polly/ amazonpolly 2023-02-26 23:41:11
AWS AWS Japan Blog AWS Elemental MediaConvert と Amazon Polly を使って記事を動画にする方法 https://aws.amazon.com/jp/blogs/news/how-to-turn-articles-into-videos-using-aws-elemental-mediaconvert-and-amazon-polly/ amazonpolly 2023-02-26 23:41:09
python Pythonタグが付けられた新着投稿 - Qiita ChatGPTにヒントを貰いながらソースコードの修正を試みた https://qiita.com/oki_mebarun/items/5f62bded4ce8aaf66b1c chatgpt 2023-02-27 08:15:58
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Ruby on Rails】一覧ページにページネーションを導入する方法 https://qiita.com/kdbrnm24/items/aa08ac6e75f135f67a7f gemkaminari 2023-02-27 08:23:46
AWS AWSタグが付けられた新着投稿 - Qiita アウトプットを伴走するクラウドエンジニア育成をはじめた話 https://qiita.com/hayao_k/items/d9707c62a95ee46ee80c 取り組み 2023-02-27 08:20:43
Git Gitタグが付けられた新着投稿 - Qiita git init を取り消すコマンド https://qiita.com/amatouyamahodo/items/0c642fe564a390103c50 gitinit 2023-02-27 08:45:44
Ruby Railsタグが付けられた新着投稿 - Qiita 【Ruby on Rails】一覧ページにページネーションを導入する方法 https://qiita.com/kdbrnm24/items/aa08ac6e75f135f67a7f gemkaminari 2023-02-27 08:23:46
技術ブログ Developers.IO 【iOS】ウィジェットとCoreDataを連携する入門 https://dev.classmethod.jp/articles/widget-coredate-introduction/ coredata 2023-02-26 23:00:49
技術ブログ Developers.IO Next.jsのサーバーサイド処理をX-Rayでトレースしてみた https://dev.classmethod.jp/articles/trace-nextjs-with-aws-xray/ nextjs 2023-02-26 23:00:44
海外TECH DEV Community Announcing MiniBASIC https://dev.to/joestrout/announcing-minibasic-1i6f Announcing MiniBASICI m delighted to officially announce the release of MiniBASIC a clean powerful new implementation of the classic s BASIC programming language MiniBASIC is available at itch io to use online or to download for Windows Mac or Linux It s also completely open source hosted at GitHub A New Way to Program Mini MicroMiniBASIC runs within Mini Micro a powerful neo retro virtual computer So there are now two languages you can use to write Mini Micro programs its native MiniScript language or the new MiniBASIC This might be of interest if you already know BASIC and want to quickly bang out a game or utility MiniBASIC provides a good set of high resolution drawing commands suitable for making plots graphs and diagrams It also has access to all the data on the built in sys disk including stock images sounds and a complete English word list And being completely cross platform Mini Micro and so MiniBASIC runs identically on any desktop computer and soon mobile devices too So if BASIC is already in your wheelhouse MiniBASIC offers a great way to take advantage of these Mini Micro features An Extremely Compatible BASICMiniBASIC is the perfect way to recapture ーor experience for the first time ー the joy of programming in the world s first widely popular programming language BASIC was the subject of a great many books for kids of all ages like these beautiful Usborne BASIC programming books or the influential books of BASIC Computer Games MiniBASIC was carefully designed to be widely compatible with resources such as these Though BASIC was never fully standardized MiniBASIC follows the most common conventions in loving detail Code from these classic books will work in MiniBASIC with little or no alteration For example the line program from Mystery of Silver Mountain required only two minor changes in the lines that open a file This game is now one of the included demos The BASIC Platform We All Dreamt OfWhile being very compatible with s BASIC MiniBASIC is far more pleasant to use than any actual s computer in emulation or reality All the little bits of polish that didn t exist at the time are present when typing you can hold Alt to move the cursor or delete by whole words you can press control A E to move to the start end of the line you can use the up down arrows to recall previous input from the history buffer MiniBASIC also includes a RENUMBER command which takes most of the pain out of using line numbers by allowing you to easily move code around in your program and an EDIT command which lets you edit a line of code without having to retype it MiniBASIC s feature set is just a bit beyond the best of the s home computer in other ways too In terms of graphics it features a full color high resolution screen with a full set of drawing primitives including polygons and ellipses both filled or outlined with variable pen size It can even draw JPEG or PNG images from disk And it supports a sophisticated sound synthesizer similar to the Commodore but with unlimited sound channels All this makes MiniBASIC a delightfully powerful BASIC environment and a joy to hack around in Easily ExtensibleThe MiniBASIC interpreter is written in MiniScript a clean modern high level language The code is neatly organized with one function for each BASIC command For example here is the code underlying the RECT command Machine cmd RECT function tokens startIdx endIdx if startIdx gt endIdx then return printErr incomplete RECT statement args getDrawingArgs tokens startIdx if args null then return printErr syntax error in RECT if args len then return printErr invalid arguments to RECT x args args x sort y args args y sort if machine fill then gfx fillRect x y x x y y else gfx drawRect x y x x y y gfx color machine pen end if machine plotPos args end functionThis means that if you are working on a BASIC program and find a need to do something MiniBASIC can t already do you can easily extend the MiniBASIC interpreter to add your own feature You will find that MiniScript is a joy to program in and the Mini Micro feature set is powerful and easy to use Try it now Why not give it a try Head on over to MiniBASIC run the project and then at the gt prompt type in this classic program you might have found running on the demo machines at K Mart back in the day PRINT CHR RND gt GOTO Then enter run to make it go MiniBASIC is not case sensitive so it doesn t matter how you capitalize these commands This classic display is an infinite loop so press Control C when you want to stop it Note that the web version of MiniBASIC does not support copy paste nor can you save files to disk So you will probably want to download MiniBASIC to run on your local machine You ll find download links towards the bottom of the web page MiniBASIC is free I do this because I grew up with BASIC I loved it and I still do though I now do most of my coding in modern languages like MiniScript or C There is still a ton of value in those great old BASIC books and I want others to have a chance to experience the delight as I did So enjoy MiniBASIC and share it with your friends I hope it brings you joy 2023-02-26 23:41:42
Apple AppleInsider - Frontpage News How to find AirPods that have been lost or stolen https://appleinsider.com/inside/airpods/tips/how-to-find-airpods-that-have-been-lost-or-stolen?utm_medium=rss How to find AirPods that have been lost or stolenApple s Find My network can help users locate their lost or stolen AirPods Here s how Find My AirPodsAlmost every Apple product connects together to create a mesh network over Bluetooth Wi Fi or Ultra Wideband This crowdsourced network is called Find My and it can help you get into the general vicinity of any missing Apple product even AirPods Read more 2023-02-26 23:33:12
海外TECH Engadget Lenovo updates its IdeaPad Duet 3i 2-in-1 with a larger display and Intel N200 CPU https://www.engadget.com/lenovo-updates-its-ideapad-duet-3i-2-in-1-with-a-larger-display-and-intel-n200-cpu-230036717.html?src=rss Lenovo updates its IdeaPad Duet i in with a larger display and Intel N CPULike many other PC and phone manufacturers Lenovo is at MWC Barcelona this week sharing details about what it has in store for the rest of the year The company s lineup includes refreshed ThinkPad laptops and ThinkCentre monitors but perhaps the most interesting announcement involves the IdeaPad Duet i Lenovo is updating the Windows in to add a larger inch IPS panel with a x resolution percent DCI P coverage and nits of peak brightness The new model also has upgraded megapixel and megapixel front and rear facing cameras and an N processor from Intel The four core four thread processor features a boost clock of up to GHz You can configure the IdeaPad with up to GB of RAM and GB of internal storage It also comes with WiFi and Bluetooth connectivity and with the option to pair the device with a stylus Lenovo says the IdeaPad Duet i is perfect for students The in will arrive in Europe later this year and cost € about LenovoLenovo is also updating its affordable IdeaPad Slim Chromebook line The company will offer the inch laptop in three different display options At the top of the stack there s a Full HD model with an IPS panel that offers percent sRGB coverage and nits of brightness Another FHD model comes with a TN panel that peaks at nits And for those looking to spend as little as possible on their next computer Lenovo will also offer a x option You can configure the IdeaPad Slim with up to GB of RAM and GB of eMMC storage With a modest MediaTek Kompanio processor powering everything Lenovo says its latest Chromebook can go up to hours on a single charge The company expects the IdeaPad Slim to start at when it arrives in May You can read Engadget s hands on with the ThinkPad Z Gen and Z Gen to get the full scoop on those laptops but the short version is that they feature AMD s latest Ryzen series processors and Radeon GPUs You can configure both devices with up to GB of DDR RAM and TB of internal storage Lenovo will offer two screen options with the Z You can either go with an IPS panel or a K OLED Both displays feature a aspect ratio and nits of peak brightness With the Z meanwhile your options are between an IPS panel and a K OLED Both computers also come with WiFi E and Bluetooth support and Lenovo will allow you to outfit the Z with an optional casing made partially from woven plant fibers The ThinkPad Z Gen will arrive in July and start at Lenovo expects to begin selling ThinkPad Z Gen one month later It will start at nbsp 2023-02-26 23:00:36
海外TECH Engadget Lenovo ThinkPad Z13 and Z16 Gen 2 hands-on: Slick updates for hybrid work https://www.engadget.com/lenovo-thinkpad-z13-and-z16-gen-2-hands-on-specs-price-slick-updates-for-hybrid-work-230035404.html?src=rss Lenovo ThinkPad Z and Z Gen hands on Slick updates for hybrid workBack at CES Lenovo showed off a huge portfolio of new devices including a true dual screen laptop and a desk lamp that doubles as a webcam But now Lenovo is back at Mobile World Congress with a few more refreshed notebooks and tablets headlined by two interesting updates to the ThinkPad Z family Designed to be ideal companions for hybrid workers the new ThinkPad Z Gen and Z Gen feature an all AMD setup You ll be able to choose from a range of Ryzen processors and even an optional Radeon M graphics card on the larger Z along with up to GB of RAM and TB of SSD storage However for people who are constantly hopping on and off video calls the ThinkPad Z and Z s new communication features might be the bigger draw That s because in addition to new full HD webcams you ll also get support for Wi Fi E and Dolby Voice enabled microphones so you should look and sound good on Zoom meetings But my favorite new feature is the TrackPoint Quick Menu that can be summoned by simply double tapping the company s signature red nub This opens a window that lets you quickly adjust things like camera settings mic volume voice dictation noise suppression and more You can even customize which settings you want to see so you have fast access to the things you tend to change most often and I think it s a great way of adding new functionality to a classic component like the TrackPoint Other specs include up to a inch K OLED display on the Z Gen or a larger and higher resolution inch K OLED panel on the Z Gen Lenovo has also retained handy features like an electronic shutter for the webcam in addition to dual speakers with Dolby Atmos two or three USB ports depending on the system and a dedicated SD card reader on the Z Sam Rutherford EngadgetMeanwhile to help improve your mousing experience both the Z and Z Gen feature a Fusion FX touchpad from Sensel which adds more sophisticated haptics better palm rejection and more On top of being physically larger mm across long time Trackpoint fans will also appreciate that Sensel s touchpad supports three virtual haptic buttons that run across the top of the touchpad so you ll still have easy access to left and right mouse clicks without having to reach too far Finally the last big change for the Z is that alongside the default aluminum finish as part of its commitment to sustainability Lenovo is also introducing a new flax fiber lid which is made from waste material collected during the harvesting process This material is something we ve seen before on a handful of concept cars from companies like Porsche and Polestar but Lenovo says this is the first time this reinforced flax fiber material will be available on a consumer electronic device Sam Rutherford EngadgetAdmittedly this isn t for everyone but I kind of like it because it looks almost like a futuristic take on wood paneling Not only does this add a bit of warmth to the laptop s appearance just like a nice piece of furniture each flax fiber lid features a unique grain which gives the whole system a bit of added personality On top of that Lenovo says the lid is bonded to a top cover made from percent recycled aluminum While their designs aren t changing a ton aside from that new lid option on Z the addition of speedier components larger touchpads and better conferencing features should make the second gen ThinkPad Z series laptops even better at getting work done both at home or in the office And thanks to its optional flax fiber lid the Z Gen might be the most stylish and sustainable ThinkPad yet Sam Rutherford EngadgetThe ThinkPad Z Gen is expected to go on sale sometime in July starting at with the ThinkPad Z Gen arriving a bit later in August starting at 2023-02-26 23:00:35
ニュース BBC News - Home Fury beats Jake Paul in highly anticipated boxing fight https://www.bbc.co.uk/sport/boxing/64779968?at_medium=RSS&at_campaign=KARANGA contest 2023-02-26 23:46:27
ニュース BBC News - Home Rio Open: Cameron Norrie wins fifth ATP title with thrilling victory over Carlos Alcaraz https://www.bbc.co.uk/sport/tennis/64780468?at_medium=RSS&at_campaign=KARANGA Rio Open Cameron Norrie wins fifth ATP title with thrilling victory over Carlos AlcarazBritish number one Cameron Norrie beats Carlos Alcaraz in a thrilling Rio Open final just seven days after losing to the Spaniard in the final of the Argentina Open 2023-02-26 23:48:57
マーケティング MarkeZine Zaim、家計簿データから流通チェーン動向の分析ツールをリリース 商圏内の競合他社分析まで可能に http://markezine.jp/article/detail/41478 競合 2023-02-27 08:30:00
ニュース THE BRIDGE ByteDance、Baidu、復旦大学、Geely、InspurでのChatGPT類似サービス開発の動き——中国スタートアップシーン週間振り返り(2月20日~24日) https://thebridge.jp/2023/02/technode-feb-20-feb-24 ByteDance、Baidu、復旦大学、Geely、InspurでのChatGPT類似サービス開発の動きー中国スタートアップシーン週間振り返り月日日本稿は、Technode動点科技が、月日月日に配信した「NewsFeed」記事の中から主要ニュースを翻訳したものです。 2023-02-26 23:15:53

コメント

このブログの人気の投稿

投稿時間: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件)