投稿時間:2023-07-07 04:22:30 RSSフィード2023-07-07 04:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Modernizing Data Platforms, Accelerating Innovation, and Unlocking Business Value with Data Mesh on AWS https://aws.amazon.com/blogs/apn/modernizing-data-platforms-accelerating-innovation-and-unlocking-business-value-with-data-mesh-on-aws/ Modernizing Data Platforms Accelerating Innovation and Unlocking Business Value with Data Mesh on AWSTo sustain innovation and drive business value organizations are realizing the importance of decentralization of data products using a data mesh architectural design approach Experts from AWS and IBM explain how to set the right balance of business ownership using data mesh to modernize data platform and accelerate innovation We ll also describe referenceable techniques to build data mesh solutions using AWS native services including Amazon DataZone AWS Lake Formation and AWS Glue 2023-07-06 18:24:39
AWS AWS Database Blog Handle conditional write errors in high concurrency scenarios with Amazon DynamoDB https://aws.amazon.com/blogs/database/handle-conditional-write-errors-in-high-concurrency-scenarios-with-amazon-dynamodb/ Handle conditional write errors in high concurrency scenarios with Amazon DynamoDBWe are excited to announce a new feature in nbsp Amazon DynamoDB that enhances the developer experience by simplifying the handling of ConditionalCheckFailedException The new nbsp ReturnValuesOnConditionCheckFailure nbsp parameter for single write operations lets you return a copy of an item as it was during a failed write attempt reducing the need for a read request if you want to investigate … 2023-07-06 18:57:03
AWS AWS Developer Blog Introducing the AWS .NET Distributed Cache Provider for DynamoDB (Preview) https://aws.amazon.com/blogs/developer/introducing-the-aws-net-distributed-cache-provider-for-dynamodb-preview/ Introducing the AWS NET Distributed Cache Provider for DynamoDB Preview We are happy to announce the preview release of the AWS NET Distributed Cache Provider for DynamoDB This library enables Amazon DynamoDB to be used as the storage for ASP NET Core s distributed cache framework A cache can improve the performance of an application an external cache allows the data to be shared across application servers … 2023-07-06 18:12:13
技術ブログ Developers.IO Amazon RDS가 정지된 상태에서도 백업할 수 있는지 확인해 봤습니다. https://dev.classmethod.jp/articles/jw-verify-that-backups-can-still-be-made-while-amazon-rds-is-down/ Amazon RDS가정지된상태에서도백업할수있는지확인해봤습니다 안녕하세요클래스메소드김재욱 Kim Jaewook 입니다 이번에는Amazon RDS가정지된상태에서도백업할수있는지확인해봤습니다 RDS를기동중인상태에서백업RDS를기동중인 2023-07-06 18:27:50
技術ブログ Developers.IO [マルチアカウントTips]AWS Control Towerで大阪リージョンを利用する際の注意事項をまとめてみた https://dev.classmethod.jp/articles/aws-control-tower-osaka-region/ ashissan 2023-07-06 18:06:14
海外TECH MakeUseOf How to Remotely Control Your Android Phone From a PC https://www.makeuseof.com/tag/can-i-control-a-phone-with-my-computer-android/ chrome 2023-07-06 18:45:18
海外TECH DEV Community Build a product information management app with Appwrite Cloud and NextJS https://dev.to/bigsam28/build-a-product-information-management-app-with-appwrite-cloud-and-nextjs-2dd4 Build a product information management app with Appwrite Cloud and NextJSProduct information management PIM apps are that help businesses manage their product information This information can include product descriptions images specifications and pricing Also PIM apps can help businesses improve their product listings by providing accurate and up to date information This can lead to increased sales and improved customer satisfaction This post discusses building a PIM system that allows us to add update and delete our product information in a Next js application and an open source design system Appwrite Pink Design to style the application A custom backend server is not required GitHubThe project s GitHub repository can be found here PrerequisitesTo follow along with this tutorial a working knowledge of the following is required React Next js and CSSYou ll also need an Appwrite Cloud account Request access to Appwrite Cloud here Setting up the projectTo begin let s create a Next js starter project by navigating to the desired directory and running the command below in our terminal npx create next app latest product infoThis will guide us through several prompts to set up the project including selecting a package manager a UI framework and additional features Once we ve set up the project let s navigate to the project directory and start the development server using the following commands cd product infonpm run dev Installing dependenciesInstalling Pink DesignPink Design is an open source system from Appwrite used to build consistent and reusable user interfaces It enhances collaboration development experience and accessibility To install Pink Design let s open the terminal in the project directory and run the following command npm install appwrite io pinkTo use Pink Design in our project we import it into our project s files like so import appwrite io pink import appwrite io pink icons Installing AppwriteAppwrite is a development platform that provides a powerful API and management console for building backend servers for web and mobile applications To install it run the command below npm install appwrite Creating an Appwrite Cloud projectTo get started we need to log into our Appwrite cloud click the Create project button input product info as the name and then click Create Create a database collection and add attributesWith our project created we can set up our application database First navigate to the Database tab click the Create database button input product info management as the name and then click Create Secondly we need to create a collection for storing our products To do this click the Create collection button input productInfo collection as the name and then click Create Thirdly we need to create attributes to represent our database fields To do this we need to navigate to the Attributes tab and create attributes for each of the values shown below Attribute keyAttribute typeSizeRequiredproductNameStringYESproductDescStringYESproductImageStringYESproductPriceIntegermin max YESLastly we need to update our database permission to manage them accordingly Navigate to the Settings tab scroll to the Update Permissions section select Any mark accordingly and then click Update Integrating Appwrite Cloud into the Next js projectTo integrate Appwrite into the UI create a utils web init js file The file should look like this import Client Account from appwrite export const client new Client export const account new Account client client setEndpoint setProject feebbbc The code above Imports the module Client and Account from AppwriteInstantiates the Client and Account objectsUses the client object to set the endpoint and project Building the user interfaceThe user interface for the product information management app will showcase all the products created using an input field and list all of them with an edit and a delete icon To get started first we need to navigate to the src directory and create a components folder and in this folder create a AddProduct js file and add the snippet below In the gist above the code does the following Imports required packages and Appwrite Pink DesignImplements state variables to store the product s name descriptions image price and sizeSets a state variable for the Modal popupNext we import the src components AddProduct js into the src app page js like so import AddProduct from components AddProduct export default function Home return lt main className u main center gt lt div gt lt h className u text center heading level gt Product Information Management lt h gt lt div gt lt AddProduct gt lt main gt At this point our application should look like the following Note We can use any image link for the product information system images In this tutorial however we use images from Cloudinary as it is easier to apply transformations and optimize delivery To learn how to upload images to Cloudinary check out the Cloudinary documentation Creating database documentsNext we need to add new documents to the database collection In the src components AddProduct js file write a createProduct function to create the document const createProduct async e gt e preventDefault await databases createDocument DATABASE ID COLECTION ID ID unique productName productName productDesc productDesc productImage productImage productPrice productPrice productSize productSize then response gt console log response alert product saved successfully function error console log error alert product not saved In the code block above the createProduct function does the following Creates a new document using Appwrite s createDocument function while passing the collection ID and attribute values as parametersMake sure to add a click event to the Save button like so lt div className u flex u main end u gap gt lt button className button type submit onClick createProduct gt lt span className text gt Save lt span gt lt button gt lt div gt Fill out the form and go to the Documents section of our database to see our saved documents Displaying our product informationOur page displays the product information we entered in our form With this logic we want our createProduct function to create the documents to display our product Next we need to navigate to the src directory and create a components folder and in this folder we create a ListProduct js file and add the snippet below lt div className u flex u main end u gap gt lt button className button type submit onClick createProduct gt lt span className text gt Save lt span gt lt button gt lt div gt The getProducts function uses the Appwrite listDocuments API that receives a collection ID parameter The getProducts function finds the collection with that ID Deleting products from our databaseNext in the src components ListProduct js file create a deleteProduct function to handle deleting products that we no longer need in our collection or database const deleteProduct async document id gt console log document id try await databases deleteDocument DATABASE ID COLECTION ID document id alert Item has been deleted successfully await getProduct catch error console log Error deleting product error message alert Item was not deleted The deleteProduct function does the following Finds a document using its DATABASE ID COLECTION ID and DOCUMENT IDDeletes that document using the Appwrite deleteDocument functionAlerts us if the item was successfully deletedRuns the getProduct function to display our updated product list Creating the product information listing interfaceNext we display the products on our product information page Paste this code into the src components ListProduct js file to do so lt div className container gt lt table className table is selected columns mobile gt lt thead className table thead gt lt tr className table row gt lt th className table thead col style p col width gt lt span className eyebrow heading gt Product Name lt span gt lt th gt lt th className table thead col is only desktop style p col width gt lt span className eyebrow heading gt Image lt span gt lt th gt lt th className table thead col is only desktop style p col width gt lt span className eyebrow heading gt Description lt span gt lt th gt lt th className table thead col is only desktop style p col width gt lt span className eyebrow heading gt Price lt span gt lt th gt lt th className table thead col is only desktop style p col width gt lt span className eyebrow heading gt Size lt span gt lt th gt lt th className table thead col style p col width gt lt th gt lt tr gt lt thead gt lt tbody className table tbody gt products map product gt lt tr key product id className table row gt lt td className table col data title Name gt lt div className u inline flex u cross center u gap gt lt span className text u break word u line height gt product productName lt span gt lt div gt lt td gt lt td className table col is only desktop data title Type gt lt div className text gt lt span className image gt lt img className avatar width height src product productImage alt gt lt span gt lt div gt lt td gt lt td className table col is only desktop data title Type gt lt div className text gt lt span className text gt product productDesc lt span gt lt div gt lt td gt lt td className table col is only desktop data title Size gt lt span className tag gt product productPrice lt span gt lt td gt lt td className table col is only desktop data title Created gt lt time className text gt product productSize lt time gt lt td gt lt td className table col u overflow visible gt lt button className button is text is only icon type button aria label more options onClick gt deleteProduct product id gt lt span className icon trash aria hidden true gt lt span gt lt button gt lt td gt lt tr gt lt tbody gt lt table gt lt div gt In the code block above we Loop through the products to render each productDestructure and pass in our productName productDesc productImage productPrice and productSizePass the deleteProduct function we created to the onClick event listener of our buttonUpdating our product informationNext in the src components ListProduct js file we create a updateProduct function to handle updating and correcting our created products in our collection or database In the gist above the following happened The variable showModal populates the modal with a click on the pencil icon The editMode was initialized with an object containing a single property index initially set to nullThe editProduct function initiates the editing mode for a specific product It takes a productId as its parameter Inside the function it searches for the product with the matching productId in the products arrayThe updateProduct function locates the product with the provided productId in the products array creates a copy with the updated values and replaces the old product with the updated onePassed the updateProduct function we created to the onClick event listener of the Update buttonFill out the form to see what the product information looks like ConclusionThis article discussed creating a product information management system using the Appwrite Cloud s Database feature to create retrieve update and delete data on our database It can implement authentication features to make it more secure This PIM can serve as the basis for a full fledged inventory creation system for a store ResourcesAppwrite CloudAppwrite Databases APIWhy Pink Design is the Must Have Tool for your Web Design Arsenal in 2023-07-06 18:33:13
Apple AppleInsider - Frontpage News How to delete your Twitter account on iOS & the web https://appleinsider.com/inside/iphone/tips/how-to-delete-your-twitter-account-on-ios-the-web?utm_medium=rss How to delete your Twitter account on iOS amp the webGiven how things are going on Twitter and the options that have cropped up lately folks are looking for the exit Here s how to delete a Twitter account How to delete Twitter accountSo far Twitter remains a key player in the social media world However some users have been deleting their accounts or moving to other platforms due to changes to Twitter by owner Elon Musk Read more 2023-07-06 18:30:20
海外TECH Engadget ‘The Super Mario Bros. Movie’ is coming to Peacock on August 3rd https://www.engadget.com/the-super-mario-bros-movie-is-coming-to-peacock-on-august-3rd-184942554.html?src=rss The Super Mario Bros Movie is coming to Peacock on August rdThe Super Mario Bros Movie has been available for digital purchase and download from various sources for a little while now The film will be available to rent starting July th on services such as Apple TV and Amazon Video It was even available to watch through Twitter for a short period of time But for those who prefer or already subscribed to a ton of streaming services the movie will be hitting Peacock on August rd according to Deadline nbsp Despite some earlier mixed reviews most fans seemed to like it overall The Super Mario Bros Movie even broke box office records When we checked the movie out our reviewer Devindra Hardwar thought that it was great for all ages with endless references that didn t take you out of the movie if you re not a diehard Nintendo fan Its A List cast includes Jack Black as Bowser Seth Rogen as Donkey Kong Keegan Michael Key as Toad and Chris Pratt as the lovable Mario The movie follows the Mario Bros struggling to get their Brooklyn based plumbing business off the ground Somehow someway you ll have to watch the movie to find out the duo falls into the Mushroom Kingdom and ultimately have to battle it out with the one and only Bowser The success of The Super Mario Bros Movie hopefully sets a precedent for more films from Nintendo It s long been rumored that Nintendo is working on a Legend of Zelda movie or TV series and the success of Mario might give them reason to finally do it This article originally appeared on Engadget at 2023-07-06 18:49:42
海外TECH Engadget ‘Pokémon Sleep’ is coming later this month and there’s a ‘gameplay’ trailer to prove it https://www.engadget.com/pokemon-sleep-is-coming-later-this-month-and-theres-a-gameplay-trailer-to-prove-it-182444048.html?src=rss Pokémon Sleep is coming later this month and there s a gameplay trailer to prove itIt s been a whopping four years since Pokémon Sleep was announced in the wake of the Pokémon Company s success with Pokémon Go For a while everyone thought the bizarre sleep tracking app would disappear into the dustbin of vaporware history but there s a brand new gameplay trailer and an approximate release date of late July We put gameplay in italics because this isn t a game It s a sleep tracking app with a Pokémon skin The app pairs you with the snooze loving Snorlax You increase your bond with the giant oaf by you ll never guess sleeping Getting a good night s sleep increases your score and allows Snorlax to siphon “drowsy power from your poor lifeless husk In return more tired Pokémon visit and gift you rare sleep styles Rinse and repeat until your “Sleep Style Dex is filled to the brim Gotta catch em all You can also moderately increase your bond with Snorlax by feeding it berries and specialized drinks but that won t bring exhausted Pokémon like Slowpoke and Diglett to your “sleep island That requires rest and accurate sleep tracking To that end the sleep tracking capabilities seem fairly robust leveraging your phone s microphone and accelerometer sensors to see how much you toss and turn or if you snore Your personal sleep style seems to inform which pocket monsters come to visit For instance if you toss and turn all night expect Togepi to impart its “Rocking Sleep style If you snore Jigglypuff will offer a song via its signature “Singing Sleep style The company hasn t noted which Pokémon comes to visit if you lay in bed all night staring at your phone surrounded by potato chips nor have they stated why a sleep tracker took over four years to develop The app is a walled garden and doesn t integrate with any fitness tracking or sleep tracking apps It does however pair up with the Pokémon Go Plus bracelet letting users begin sleep tracking by pushing a button on the device Using the bracelet also encourages a rare visit from a nightcap wearing Pikachu A bracelet costs around and the forthcoming Pokémon Sleep is a free app This article originally appeared on Engadget at 2023-07-06 18:24:44
海外TECH Engadget The US is destroying the world's last known chemical weapons stockpile https://www.engadget.com/the-us-is-destroying-the-worlds-last-known-chemical-weapons-stockpile-181026211.html?src=rss The US is destroying the world x s last known chemical weapons stockpileAll of the the world s governments will at least officially be out of the chemical weapons business The US Army tellsThe New York Times it should finish destroying the world s last declared chemical weapons stockpile as soon as tomorrow July th The US and most other nations agreed to completely eliminate their arsenals within years after the Chemical Weapons Convention took effect in but the sheer size of the American collection many of the warheads are several decades old and the complexity of safe disposal left the country running late The current method relies on robots that puncture drain and wash the chemical laden artillery shells and rockets which are then baked to render them harmless The drained gas is diluted in hot water and neutralized either with bacteria for mustard gas or caustic soda for nerve agents The remaining liquid is then incinerated Teams use X rays to check for leaks before destruction starts and they remotely monitor robots to minimize contact with hazardous material nbsp The Army initially wanted to dispose of the weapons by sinking them on ships as it had quietly done before but faced a public backlash over the potential environmental impact Proposals to incinerate chemical agents in the s also met with objections although the military ultimately destroyed a large chunk of the stockpile that way The US last used chemical weapons in World War I but kept producing them for decades as a deterrent Attention to the program first spiked in when strange sheep deaths led to revelations that the Army was storing chemical weapons across the US and even testing them in the open This measure will only wipe out confirmed stockpiles Russia has been accused of secretly making nerve gas despite insisting that it destroyed its last chemical weapons in Pro government Syrian military forces and ISIS extremists used the weapons throughout much of the s This won t stop hostile countries and terrorists from using the toxins Even so this is a major milestone In addition to wiping out an entire category of weapons of mass destruction it represents another step toward reduced lethality in war Drones reduce the exposure for their operators though not the targets and experts like AI researcher Geoffrey Hinton envision an era when robots fight each other While humanity would ideally end war altogether efforts like these at least reduce the casualties This article originally appeared on Engadget at 2023-07-06 18:10:26
海外科学 NYT > Science Nations Aim to Zero Out Shipping Emissions by Midcentury https://www.nytimes.com/2023/07/06/climate/cargo-ship-emissions-agreement.html Nations Aim to Zero Out Shipping Emissions by MidcenturyRegulators reached a provisional deal on how quickly the transition to zero emissions fuels should happen for cargo ships which often burn particularly dirty oil 2023-07-06 18:56:20
海外科学 NYT > Science Heat Records Broken Across Earth https://www.nytimes.com/2023/07/06/climate/climate-change-record-heat.html across 2023-07-06 18:45:44
ニュース BBC News - Home Elle Edwards: Connor Chapman guilty of Christmas Eve pub murder https://www.bbc.co.uk/news/uk-england-merseyside-66108449?at_medium=RSS&at_campaign=KARANGA chapman 2023-07-06 18:12:15
ニュース BBC News - Home Police have got away scot-free, says Doreen Lawrence https://www.bbc.co.uk/news/uk-66127025?at_medium=RSS&at_campaign=KARANGA lawrence 2023-07-06 18:19:28
ニュース BBC News - Home Week of strikes to disrupt Tube services, RMT says https://www.bbc.co.uk/news/business-66127959?at_medium=RSS&at_campaign=KARANGA tube 2023-07-06 18:10:18
ニュース BBC News - Home The Ashes 2023: Mark Wood takes 5-34 but third Test poised after Mitchell Marsh ton https://www.bbc.co.uk/sport/cricket/66125249?at_medium=RSS&at_campaign=KARANGA The Ashes Mark Wood takes but third Test poised after Mitchell Marsh tonA rapid Mark Wood stars for England but Mitchell Marsh s ton means the third Ashes Test is in the balance after a gripping first day 2023-07-06 18:19:27
ニュース BBC News - Home The Ashes: England v Australia - third Test, day one highlights https://www.bbc.co.uk/sport/av/cricket/66126977?at_medium=RSS&at_campaign=KARANGA The Ashes England v Australia third Test day one highlightsMark Wood takes five wickets for England and Mitchell Marsh hits a century for Australia in an enthralling first day of the crucial third Ashes Test at Headingley 2023-07-06 18:06:45
ニュース BBC News - Home Ashes: Jonny Bairstow makes point of waiting in his crease after controversial stumping at Lord's https://www.bbc.co.uk/sport/av/cricket/66126969?at_medium=RSS&at_campaign=KARANGA Ashes Jonny Bairstow makes point of waiting in his crease after controversial stumping at Lord x sJonny Bairstow makes a point of waiting to leave his crease after a ball goes through to Alex Carey clearly hoping to avoid a repeat of his controversial stumping at Lord s 2023-07-06 18:23:45
ビジネス ダイヤモンド・オンライン - 新着記事 【たった5秒】「19×19=361」が超高速で計算できる“最強の暗算法” - 小学生がたった1日で19×19までかんぺきに暗算できる本 https://diamond.jp/articles/-/325485 魅力 2023-07-07 04:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 【日本人の知らない教養】あなたは「キリスト教」がどんな宗教か説明できますか?【書籍オンライン編集部セレクション】 - 上馬キリスト教会ツイッター部の キリスト教って、何なんだ? https://diamond.jp/articles/-/325383 項目 2023-07-07 04:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 自己肯定感が低い人ほど、眠れなくなる理由とは? - 無意識さんの力でぐっすり眠れる本 https://diamond.jp/articles/-/325623 自己肯定感 2023-07-07 03:57:00
ビジネス ダイヤモンド・オンライン - 新着記事 【ウエスト58cmを30年キープで話題】忙しいと体重が増える人に伝えたいこと - 生きてるだけで、自然とやせる! やせる日常動作大図鑑 https://diamond.jp/articles/-/325558 【ウエストcmを年キープで話題】忙しいと体重が増える人に伝えたいこと生きてるだけで、自然とやせるやせる日常動作大図鑑万人以上のダイエットを成功させ、自身もウエストcmを年間キープする健康運動指導士・植森美緒の新刊「生きてるだけで、自然とやせるやせる日常動作大図鑑」。 2023-07-07 03:54:00
ビジネス ダイヤモンド・オンライン - 新着記事 【英語力アップ】「気付く、見つける」を英語でどう言う? - 5分間英単語 https://diamond.jp/articles/-/325543 【英語力アップ】「気付く、見つける」を英語でどう言う分間英単語「たくさん勉強したのに英語を話せない……」。 2023-07-07 03:51:00
ビジネス ダイヤモンド・オンライン - 新着記事 【トラブル防止】子どもが大きくなると直面する6つの注意点 - 勉強しない子に勉強しなさいと言っても、ぜんぜん勉強しないんですけどの処方箋 https://diamond.jp/articles/-/325597 【トラブル防止】子どもが大きくなると直面するつの注意点勉強しない子に勉強しなさいと言っても、ぜんぜん勉強しないんですけどの処方箋万件を超える「幼児から高校生までの保護者の悩み相談」を受け、人以上の小中高校生に勉強を教えてきた教育者・石田勝紀が、子どもを勉強嫌いにしないための『勉強しない子に勉強しなさいと言っても、ぜんぜん勉強しないんですけどの処方箋』を刊行。 2023-07-07 03:48:00
ビジネス ダイヤモンド・オンライン - 新着記事 史上最速で成長するアプリ「ChatGPT」が生まれた背景 - 生成AI https://diamond.jp/articles/-/325763 chatgpt 2023-07-07 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 無意識に他人の意見を優先してしまう人の末路 - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/323996 【精神科医が教える】無意識に他人の意見を優先してしまう人の末路精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-07-07 03:42:00
ビジネス ダイヤモンド・オンライン - 新着記事 火力の弱いコンロやIHでも、中華屋さんのパラパラ炒飯が作れる驚きの方法! - 魔法の万能調味料 料理酒オイル https://diamond.jp/articles/-/325576 2023-07-07 03:39: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件)