投稿時間:2023-01-19 03:25:35 RSSフィード2023-01-19 03:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Desktop and Application Streaming Blog Convert existing Amazon WorkSpaces to the WorkSpaces Streaming Protocol without a rebuild https://aws.amazon.com/blogs/desktop-and-application-streaming/seamlessly-modify-existing-amazon-workspaces-to-use-the-workspaces-streaming-protocol/ Convert existing Amazon WorkSpaces to the WorkSpaces Streaming Protocol without a rebuildWith the announcement of the modify Amazon WorkSpaces protocol API you can convert existing WorkSpaces to the WorkSpaces Streaming Protocol WSP without a rebuild Converting existing WorkSpaces lets you use the recent protocol performance and feature improvements such as webcam support and smart card authentication Previously changing a WorkSpaces protocol from PCoIP to WSP required … 2023-01-18 17:02:04
js JavaScriptタグが付けられた新着投稿 - Qiita 逆算的に考えて作品を作る(最近の勉強方法)w https://qiita.com/2424go/items/c4bdcdaf5089a90c99a9 逆算 2023-01-19 02:34:52
海外TECH Ars Technica Twitter says third-party apps broke “long-standing API rules,” won’t name rules https://arstechnica.com/?p=1910770 developers 2023-01-18 17:02:09
海外TECH DEV Community Full-Stack Development Has Changed In 2023 https://dev.to/mikehtmlallthethings/full-stack-development-has-changed-in-2023-g4i Full Stack Development Has Changed In What is HTML All The Things HTML All The Things is a web development podcast and discord community which was started by Matt and Mike developers based in Ontario Canada The podcast speaks to web development topics as well as running a small business self employment and time management You can join them for both their successes and their struggles as they try to manage expanding their Web Development business without stretching themselves too thin What s This One About Full stack development demands both frontend and backend development skills meaning one individual can spin up a website from the hosting through the database management and even the user interface Recently some people in the developer community have voiced their observations on how complex both frontend and backend development are on their own stating that it s not really possible to be a full stack developer if you want to maintain a high level of skill in all the technologies involved In this episode Mike breaks down a stack that he has recently started using that should allow him to provide a full stack s worth of work through Show notes Next js Nuxt js SvelteKitThese technologies are built upon React Vue and Svelte respectively and allow you to build full stack applications in one repositoryThey are packaged and served by a nodeJS server which allows you to tap into the node side and create node Express API s right from the save projectThis also allows the server to render all the content and serve it as static files if applicable Routing can also be file based like a regular static project running on Apache or Nginx Prisma TRPC TypeScriptOne thing majorly lacking from the full stack web dev setup has been Types for your data flow TypeScript is a way for JavaScript to have strong type declaration which essentially means right in your IDE VSCode you can assign a variable any time Number String Object etc and wherever you use that variable again if you are trying to use for example a number as a String the IDE will catch that and underline it in red If you hover over it will tell you what is wrong and where to fix it It also allows you to have some crazy strong autocompletionA typical setup is a database communicated by a backend think all typical CRUD operations Then the Front end communicates with the backend to send and receive the exact data it needsThe thing missing from all this is that the Front end never knows what data is stored in the backend so you just kind of have to try it and see if it fails Now imagine you have separate teams working on both this can lead to major confusion and even production problemsEx If the backend team removes an attribute in the schema without letting the front end team knowTo solve this problem we can combine an ORM like PrismaA ORM is a database abstraction layer that allows easier communication with a databaseImagine just writing simple JavaScript functions to fetch data instead of SQL queriesAnd an API helper library like TRPCWhich maps frontend requests to the backend APIsAll using TypeScriptWith this stack Next js TRPC Prisma you can start to build TypeSafe data connections without a ton of custom work Checkout Create T App for examplesTRPC allows for a lot of Type inference from the ORM Schema Prisma So whatever data types you declare in your schema those types will flow all the way up to your Front end without much custom work Thank you If you re enjoying the podcast consider giving us a review on Apple Podcasts or checking out our Patreon to get a shoutout on the podcast Support us on PatreonYou can find us on all the podcast platforms out there as well asInstagram htmlallthethings Twitter htmleverything TikTok 2023-01-18 17:22:32
海外TECH DEV Community Improving Your Development Documentation Project (1 of 3) https://dev.to/javierhf/improving-your-development-documentation-project-1-of-3-48cn Improving Your Development Documentation Project of What this article coversFirst steps on how to improve an existing documentation project ToolsConfluence GitHub web and desktop version and MarkdownPad IntroductionDeveloper Documentation is a curated set of files describing all the active workflows setups tools conventions best practices and How tos of your software development product Through this article I will refer to it as documentation or docs Documentation supports your team members in their daily and future developments It also helps new joiners to reach cruise speed during the onboarding period But to do so your documentation must be up to date and well structured Keeping the docs up to date and in good shape requires resources and dedicated time Yet often our project time or budget constraints prevent us from taking care of our docs properly This series of articles aims to serve as a documentation improvement guide Know Your Ground Step Organize Your Improvement ProjectDeveloper documentation has to be visible to increase the chances of success and to find collaborators to improve it To do so you need a space to visualize your project describe it and track your progress Use your teams company collaboration tool for that purpose For this article we ll be using Confluence Space StructureThe structure of an improvement project may differ from one project to another Take the following space structure as a reference that you can adapt to your needs then iterate Space NamePage NameChild PageDescription Your Documentation Project´s Name Name of your documentation project OverviewExplain briefly the What Why and How of the documentation DashboardCentralized page to easily access all project pages AnalysisMedia and results of documentation analysis RoadmapVisualization of the estimated dates to implement each improvement Improvement ProjectCommunication GridContact person by topic Improvement PlanImplementation phases and items Coordination MeetingsGrid to align with your manager or collaborators Optional Once your improvement project space is set up you are ready to Present it to all your team members including Product Owners and Scrum Masters Track and show your progress Visualize documentation issues blocking points Access all your project resources Tip Explain how documentation issues negatively impact teams´performance It will help Product Owners and Scrum Masters to understand and provide your project with the resources you need Step Identify Your Documentation IssuesIdentifying your documentation issues means spotting all the types of issues living among your docs Some documentation issues are Grammar spelling and syntax errors Confusing Not logical page structure Unclear Verbose text In the following table you can learn a little more about the main documentation issues Documentation IssueFix strategyGrammar spelling syntaxUse a text checker to support your writing Some good options are Grammarly Hemingway or QuillBot Page structureReview your page structure It shows the logical flow of the information contained according to the objective of the page for example Introduction Prerequisites First Step Working with Available Features NamingDefine a naming strategy for page titles sections and subsections Page elementsStandardize the use of the following elements lists tables tabs notes collapsible elements and images Text unclear or too verboseBe concise Random text formattingStandardize the use of bold and italics for files folder names code snippets and code elements functions objects methods parameters API names etc Too many topics on a single pageStick to One topic per page Unnecessary screenshotsUse screenshots or images ONLY when strictly necessary If you can explain it briefly do not use screenshots Type of notesStandardize each type of use case for notes Info Help Warning etc Now we can start to target and record the issues of our documentation The following table will help you to perform that task Nav OptionPageSectionSubsectionIssueLinkAdd nav option namePage numberSection nameSubsection nameIssue nameDepending on the size and complexity of your documentation targeting these basic issues may take a while Take the chance and join me on the journey to better documentation and improve your documentation project now To Be Continued… What s Next In the next article we will describe how to run a user survey to gather useful feedback from your users readers This invaluable feedback will help us prioritize the documentation issues to fix first 2023-01-18 17:10:20
Apple AppleInsider - Frontpage News Apple Card is a drag on Goldman Sachs, says CEO https://appleinsider.com/articles/23/01/18/apple-card-is-a-drag-on-goldman-sachs-says-ceo?utm_medium=rss Apple Card is a drag on Goldman Sachs says CEOAt Davos Goldman Sachs CEO David Solomon said his bank was too ambitious launching consumer credit after it posted a big loss in the division mostly due to Apple Card in Apple CardGoldman Sachs spent a lot of money to help launch Apple Card and its other consumer services A report from January revealed the bank s consumer credit division lost billion in nine months last year and the losses were primarily related to the Apple Card Read more 2023-01-18 17:36:55
Apple AppleInsider - Frontpage News Logitech MX Keys Review: Smart choice for multi-device users https://appleinsider.com/articles/23/01/18/logitech-mx-keys-review-smart-choice-for-multi-device-users?utm_medium=rss Logitech MX Keys Review Smart choice for multi device usersThe Logitech MX Keys is a Mac compatible keyboard that rivals the Apple Magic keyboard and is a noteworthy option for users looking for a cheaper solution without sacrificing function and durability Logitech MX Keys ReviewThe Apple Magic Keyboard is good but Logitech MX Keys is an excellent choice for users who need a budget alternative Logitech MX Keys is a flat laptop style chiclet keyboard We like its customizations and stable wireless connection but the initial setup for Mac Studio was tricky Read more 2023-01-18 17:07:39
海外TECH Engadget 'Returnal' will arrive on PC on February 15th https://www.engadget.com/returnal-pc-release-date-ps-5-playstation-sony-housemarque-170504605.html?src=rss x Returnal x will arrive on PC on February thThe next former PS exclusive that Sony is bringing to PC is Returnal as the bullet hell roguelike will hit Steam and the Epic Games Store on February th That s just a couple weeks before The Last of Us Part I lands on PC on March rd nbsp Alongside the release date Sony owned Housemarque revealed more details about the PC version There s support for NVIDIA DLSS and AMD FSR upscaling as well as NVIDIA s image scaling tech Climax Studios which supported development of Returnal added support for ray traced reflections to go along with the existing RT shadows Returnal has two new wide resolution formats on PC Ultrawide and Super Ultrawide On the audio side you can expect Dolby Atmos two D audio options and or surround sound You can plug in a DualSense controller for haptic feedback and adaptive trigger support or you might prefer to try and survive the deadly alien planet of Atropos using a mouse and keyboard To play Returnal on PC you ll need at least an NVIDIA GeForce GTX GB or AMD Radeon RX GB GPU Intel Core i four core GHz or AMD Ryzen X four core GHz processor GB of DDR memory and GB of storage Naturally you ll need a more powerful rig to get the full impact of Returnal s impressive visuals and neon bullets The PlayStation Blog has more details on the specs 2023-01-18 17:05:04
海外科学 NYT > Science Bomb Cyclone? Or Just Windy with a Chance of Hyperbole? https://www.nytimes.com/2023/01/18/science/weather-forecasts-language.html meteorologists 2023-01-18 17:08:48
海外科学 NYT > Science K. Alex Müller, Innovator in Ceramic Superconductors, Dies at 95 https://www.nytimes.com/2023/01/18/science/alex-muller-dead.html K Alex Müller Innovator in Ceramic Superconductors Dies at His and a colleague s breakthroughs in high temperature superconductors were honored with a Nobel Prize in Physics and opened up a world of scientific possibilities 2023-01-18 17:44:42
海外科学 NYT > Science California Sues Companies Over Insulin Prices, Joining Other States https://www.nytimes.com/2023/01/18/health/insulin-drug-prices-california.html California Sues Companies Over Insulin Prices Joining Other StatesThe state is taking action against three major drug companies and the big pharmacy benefit managers in an effort to temper costs for people with diabetes 2023-01-18 17:16:35
ニュース BBC News - Home Ukraine interior ministry leadership killed in helicopter crash https://www.bbc.co.uk/news/world-europe-64315594?at_medium=RSS&at_campaign=KARANGA minister 2023-01-18 17:48:13
ニュース BBC News - Home Father of missing newborn is registered sex offender https://www.bbc.co.uk/news/uk-64320904?at_medium=RSS&at_campaign=KARANGA january 2023-01-18 17:05:14
ニュース BBC News - Home Keep cake away from office, suggests food watchdog head https://www.bbc.co.uk/news/uk-64315384?at_medium=RSS&at_campaign=KARANGA standards 2023-01-18 17:05:40
ニュース BBC News - Home Ambulance staff and nurses to strike on same day https://www.bbc.co.uk/news/health-64308935?at_medium=RSS&at_campaign=KARANGA ambulance 2023-01-18 17:47:06
ニュース BBC News - Home Ian Kirwan: Boy guilty of Redditch Asda stabbing murder https://www.bbc.co.uk/news/uk-england-hereford-worcester-64235272?at_medium=RSS&at_campaign=KARANGA supermarket 2023-01-18 17:27:33
ニュース BBC News - Home Microsoft to cut 10,000 jobs as spending slows https://www.bbc.co.uk/news/technology-64317078?at_medium=RSS&at_campaign=KARANGA firms 2023-01-18 17:51:50
ニュース BBC News - Home US pro wrestling star Jay Briscoe dies aged 38 https://www.bbc.co.uk/news/world-us-canada-64312111?at_medium=RSS&at_campaign=KARANGA delaware 2023-01-18 17:03:45
ニュース BBC News - Home VAR decisions to be explained to fans but temporary sub trial ruled out https://www.bbc.co.uk/sport/football/64322063?at_medium=RSS&at_campaign=KARANGA VAR decisions to be explained to fans but temporary sub trial ruled outDecisions made by the Video Assistant Referee are set to be explained to television viewers and those in the stadium at next month s Club World Cup 2023-01-18 17:27:17
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 心が折れたとき、どうすればいいのか? 意外にして最善の対処法 - 精神科医Tomyが教える 心の執着の手放し方 https://diamond.jp/articles/-/315485 【精神科医が教える】心が折れたとき、どうすればいいのか意外にして最善の対処法精神科医Tomyが教える心の執着の手放し方誰しも悩みや不安は尽きない。 2023-01-19 03:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 年収300万円で貯金できる人、年収1000万円でも貯金ゼロの人。2人を分かつ「たった1つの特徴」 - 99%はバイアス https://diamond.jp/articles/-/316007 人を分かつ「たったつの特徴」はバイアス年収万円で貯金できる人、年収万円でも貯金ゼロの人。 2023-01-19 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 【3000社の会社を見てきてわかった】ダメな若手社員が「MVPを取るエース級」になるまでの共通点 - 数値化の鬼 https://diamond.jp/articles/-/314357 2023-01-19 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 おかしい人は100%「人との距離の取り方」おかしい【書籍オンライン編集部セレクション】 - 会って、話すこと。 https://diamond.jp/articles/-/315972 おかしい人は「人との距離の取り方」おかしい【書籍オンライン編集部セレクション】会って、話すこと。 2023-01-19 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 「パプアニューギニアってどんな国?」2分で学ぶ国際社会 - 読むだけで世界地図が頭に入る本 https://diamond.jp/articles/-/315553 2023-01-19 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 口数が少ないのにコミュ力の高い人がやっているたった1つの習慣とは? - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/316274 2023-01-19 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【制限時間20秒】「(2÷2+2×2×2×2)×(2×2×2×2-2)」を暗算できる? - 小学生がたった1日で19×19までかんぺきに暗算できる本 https://diamond.jp/articles/-/316215 暗算 2023-01-19 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【神様】は見ている! 運がいい人、お金持ちの人が、大寒にしておく開運行動ベスト2 - 旬のカレンダー https://diamond.jp/articles/-/316046 【神様】は見ている運がいい人、お金持ちの人が、大寒にしておく開運行動ベスト旬のカレンダー「今日、何する」「どこ行く」「何食べる」と思ったとき、開くと必ず答えが見つかる書籍、『旬のカレンダー』。 2023-01-19 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 “何十億年も前の地球の歴史”を学んでどんな意味があるのか? “世界の知性”からの納得の回答 - 超圧縮 地球生物全史 https://diamond.jp/articles/-/315994 「地球の誕生」から「サピエンスの絶滅、生命の絶滅」まで全歴史を一冊に凝縮した『超圧縮地球生物全史』は、その奇跡の物語を描き出す。 2023-01-19 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 米マイクロソフト、1万人削減へ - WSJ発 https://diamond.jp/articles/-/316330 削減 2023-01-19 02:05:00
Azure Azure の更新情報 Public Preview: Container insights support for AKS hybrid clusters https://azure.microsoft.com/ja-jp/updates/public-preview-container-insights-support-for-aks-hybrid-clusters/ clusters 2023-01-18 18:00:29

コメント

このブログの人気の投稿

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