投稿時間:2023-06-29 21:29:14 RSSフィード2023-06-29 21:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Yahoo!検索、2023年上半期の検索急上昇ランキングをクイズ形式で公開 − 総合1位は「???」 https://taisy0.com/2023/06/29/173477.html yahoo 2023-06-29 11:47:38
IT ITmedia 総合記事一覧 [ITmedia News] “パスワードの条件”がテーマの無料ブラウザゲームが話題 ありがちなイライラ要素が満載 https://www.itmedia.co.jp/news/articles/2306/29/news230.html itmedia 2023-06-29 20:20:00
TECH Techable(テッカブル) 『アートが変える社会と経済』〜AI、NFT、メタバース時代のビジネスと投資の未来〜発売開始 https://techable.jp/archives/213341 悟空出版 2023-06-29 11:30:54
TECH Techable(テッカブル) ニシムラ模型、カナダ発Web3企業と提携。地形モデル可視化技術に位置情報とNFT技術を融合 https://techable.jp/archives/212599 continuums 2023-06-29 11:00:37
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScriptの文字列あれこれ https://qiita.com/ulxsth/items/c05ccca50acea74c4cf9 javascript 2023-06-29 20:55:16
js JavaScriptタグが付けられた新着投稿 - Qiita 【Rails】プレビュー機能の実装 https://qiita.com/taki39384/items/691017789c1ca594f308 javascript 2023-06-29 20:06:29
AWS AWSタグが付けられた新着投稿 - Qiita AWS マネージメントコンソールへのプライベートアクセス https://qiita.com/leomaro7/items/8ee513d26d0d68af76a2 awsマネージメントコンソールへのプライベートアクセスawsマネージメントコンソールプライベートアクセスとは 2023-06-29 20:14:02
GCP gcpタグが付けられた新着投稿 - Qiita 【Google Cloud】Terraformで稼働時間チェック(Uptime Checks)による外形監視を設定 https://qiita.com/bosq/items/31b46cc6661957987039 cloud 2023-06-29 20:18:28
Ruby Railsタグが付けられた新着投稿 - Qiita 【Rails】プレビュー機能の実装 https://qiita.com/taki39384/items/691017789c1ca594f308 javascript 2023-06-29 20:06:29
技術ブログ Developers.IO SNS トピックを削除してもそこに関連づけられた SNS サブスクリプションは削除されない https://dev.classmethod.jp/articles/deleting-sns-topic-does-not-delete-sns-subscriptions-associated-with-it/ 千葉幸 2023-06-29 11:17:18
海外TECH MakeUseOf Best Portable Power Station Deals to Get Before Prime Day https://www.makeuseof.com/amazon-prime-day-best-portable-power-station-deals/ portable 2023-06-29 11:37:18
海外TECH MakeUseOf OTF vs. TTF Fonts: Which Is Better? What's the Difference? https://www.makeuseof.com/tag/otf-vs-ttf-fonts-one-better/ difference 2023-06-29 11:15:19
海外TECH DEV Community A real project with CodeCatalyst - Our hackathon gave us a good insight into what works and what doesn't https://dev.to/aws-builders/a-real-project-with-codecatalyst-our-hackathon-gave-us-a-good-insight-into-what-works-and-what-doesnt-1e79 A real project with CodeCatalyst Our hackathon gave us a good insight into what works and what doesn x tAs Matt already wrote in his project introduction post we have been using Amazon CodeCatalyst to handle all of our project activities This gives a very good indication into where CodeCatalyst is already ready for prime time and where further adjustments need to be made in order to develop the service into a fully fledge all or nothing integrated DevOps service The one pushing for using CodeCatalyst was myself as I wanted to try out the new Amazon service that recently went GA after being announced at re invent in a bigger team and in a real project It was great fun and we learned a lot too Let s look at some details How we planned our tasks using issues Our journey with CodeCatalyst started with a very agile and intense planning session using the issues component of CodeCatalyst Given the nature of an hackathon we created roughly the first ten issues in the system Three of us were new users for CodeCatalyst but they were able to quickly interact with the issues component by default this is a simple Kanban board and has a well structured user interface One thing we directly missed was the ability to copy paste images into comments within the issues and to attach files to the issues themselves Linking issues to one another is also only hardly possible right now We used a simple workflow and did a regular planning twice per week and created updated closed more than issues of partly very small scope throught the course of less than four weeks Overall the available functionalities were good enough for our project and supported our project Collaborating source code working with Git repositories and pull requestsThe four of us are Community Builders from the bottom and all we need to be happy is a Git repository that we can push code to Of course this is not currect but CodeCatalyst allows you to host you own private Git repositories You can have multiple repositories per project In our case we had decided to go with a mono repo approach and so we strickly worked in a single repository Working with the source code repository was just fine and working as expected We also decided to merge as early and as often as possible to our main branch The team however struggled in working with setting up Pull Requests and working in the UI when reviewing pull requests The most problematic things UI response time working with comments on pull requests e g threaded comments and creating pull requests The whole UI does not yet feel as structured as in other competitors e g Github examples PR title description proposals when creating a PR link in terminal commandline that allows your to create a PR Another thing we missed is git blame online not to blame each other but to understand what changed and broke our hacked hackathon source code Cool the markdown rendering for files named md Missing here including local images is not possible Working with Workflows Github actions for the rescue We started off building our workflows with natively available actions in Amazon CodeCatalyst using the cdk deploy action to deploy out infrastructure and the s deploy action to deploy our front end but quickly shifted away from that and switched over to using Github Actions within the workflow to allow building our Flutter application as a CDK asset As our Continuous Integration pieces matured within our npm implementation there was less reason to go back to the native actions as the CI part was handled through npm Our current workflow and CI CD pipeline The main preference here is to allow a continuous deployment to our production environment This goes through an intial sandbox deployment promotes to a test environment and then deploys to production The pipeline is prepared to execute integration tests but they are not yet implemented which is the nature of a hack athon This would definately one of the next things to change adding real integration tests and also adding some security verifications Our workflow is as I mentioned pretty basic here an excerpt of it until the deployment to our sandbox environment BuildAndTestCDKApp Identifier aws github actions runner v Compute Type EC Inputs Sources WorkflowSource Variables Name AWS REGION Value us east Name NODE ENV Value sandbox Outputs AutoDiscoverReports Enabled true ReportNamePrefix rpt IncludePaths coverage lcov info Configuration Steps name Flutter Build Web uses subosito flutter action v with channel stable name Java Install uses actions setup java v with distribution zulu java version name Setup Android SDK uses android actions setup android v uses actions setup node v with node version run npm ci run npm run run npm run synth Environment Connections Role CodeCatalystWorkflowDevelopmentRole AWSCommunityBuilders Name community builders sandbox Name speakers sandbox DeploySandboxCDKApp DependsOn BuildAndTestCDKApp Actions DeployBase Identifier aws github actions runner v Compute Type EC Inputs Sources WorkflowSource Variables Name AWS REGION Value us east Name NODE ENV Value sandbox Configuration Steps name Flutter Build Web uses subosito flutter action v with channel stable name Java Install uses actions setup java v with distribution zulu java version name Setup Android SDK uses android actions setup android v uses actions setup node v with node version run npm ci run npm run deploy Environment Connections Role CodeCatalystWorkflowDevelopmentRole AWSCommunityBuilders Name community builders sandbox Name speakers sandbox IntegrationTestSandbox Identifier aws build v Inputs Sources WorkflowSource Configuration Steps Run ls al Compute Type Lambda DependsOn DeploySandboxCDKAppAs you can see a lot of the CD and also the deployment runs within the corresponding task definitions in package json No Open Source or Readonly viewWe would really love to open source our whole projet to give you the possibility to get involved and learn from what we build but unfortunately Amazon CodeCatalyst does currrently not offer an Open Source or a Readonly view and forces you to create an account for CodeCatalyst these are things that make it difficult for us as we cannot link to our sources If you are an AWS Community Builder please reach out to either of us in Slack and we can give you access to the project What did we really miss in the workflow componentmanual approvals before promotion to our production environmentNotifications from workflows could have been done through this implementation but we did not take time to implement thatIntegration of actions deployed through npm cdk deploy with making the changes in infrastructure visibleimporting existing pipelines or render CDK pipelines to CodeCatalyst workflowsThe killer feature of the workflows at least as far as we see it is the possibility to use Github actions as part of the workflow With only minor adjustmends an existing Github workflow can be transformed to a CodeCatalyst workflow If either of you know about an existing tool that converts existing Github workflows to CodeCatalyst workflows in an automated way please let me know The hidden gem Development EnvironmentsOne of the hidden gems of CodeCatalyst are the Dev Environments also known as Development Enviroments Essentially its a service in the service similar to Gitpod where you can host your IDE or the environment that you develop on In our project we all didn t use it as the architecture was small and we only had this single project Also we were developing mainly on our main machines without switching between machines too often That s why we all did not consider really using the DevEnvironments for this project Last but not least Flutter is not natively supported on the Dev Environments which would have forced us to prepare a devfile that includes the Flutter dependencies and thats something that would have taken too much time out of the project Still the De Environments within CodeCatalyst are hidden gems that I believe should get more traction than they are getting until now A summary of what we think works and what doesn t and our biggest wishesFor a hackathon like this weeks working time CodeCatalyst seems to be a very good choice for a project that starts with a new or fresh codebase The tool has most of the minimal requirements implemented to allow simple project management and good integration with AWS It also allowed us to quickly get started and to collaborate on our sources We really missed workflow notifications as well as manual approvals in the workflows As the tool matures I personally hope that more and more AWS internal teams will be using CodeCatalyst to develop plan and deploy out their internal AWS services and with that the flow in the User Interface will definately be improved too as today there are some hickups in a real developers workflow And last but not least we would love to share this project with you but given CodeCatalyst does not allow to Open Source a project that s not possible Maybe something for the next hackathon If you would like to get involved in this project and help us to shape and build our AWS Speakers directory to make it easier for AWS User Group Leaders to find speakers please reach out to either of us four about collaborating Who to reach out to Danielle Matt Julian or myself 2023-06-29 11:45:55
海外TECH DEV Community Amplify SDK for Flutter - Developer experience and challenges in a hackathon https://dev.to/aws-builders/amplify-sdk-for-flutter-developer-experience-and-challenges-in-a-hackathon-2e15 Amplify SDK for Flutter Developer experience and challenges in a hackathon Background of this postThis blog post is part of a a series of posts that explains details and technical challenges that we Danielle Matt Julian and myself faced during an hackathon that was focused on the Transformers Huggingface tools please read Matt s article for additional information and details In this post we are focusing on the experiences we made in the project using the Amplify SDK for Flutter Project Setup architecture dependencies for project set upInitially our project is targetting to be available to all AWS User Group Leaders on the web from any browser As we mature the project at least I am hoping to be able to also publish this application as an Android and iOS application using cross platform capabilities Here is a birds eyes view to our UI architecture Why did we choose Flutter as UI Flutter is a trending cross platform development toolkit altough it is mainly sponsored by Google there is a vibrant open source community I personally have had some exposure to Flutter in the past and I liked the developer experience and the short iteration cycles Also the AWS Amplify Team has been investing into making their SDK available to developers so we thought this is a good possibility to try out our use case and implement the Web app in Flutter using the Amplify SDK for Flutter to connect to the backend resources which we were planning to implement using the AWS CDK With this approach we also want to draw some attention on the fact that the Amplify SDKs can be used without an Amplify owned backend This is cool and opens up a lot of possibilities but also challenges as we will see later I convinced Danielle Matt and Julian to also use Flutter for our frontend They also saw this as a good opportunity to learn a bit of Flutter by themselves Amplify SDK for Flutter Developer experience and challengesThe Amplify SDK for Flutter recently announced the GA for Web and Desktop which is a milestone for the team to reach As we outlined in Matt s blog post we are using Typescript in the backend Amplify Flutter has native support for AppSync GraphQL we needed to connect the Flutter App to existing AppSync endpoints The AppSync schema however was written manually No we needed to use amplify codegen to generate the Dart models for the GraphQL types but we also needed to write a type model in Typescript to be able to work with the same objects on the backend This turned out to be more difficult than expected the amplify codegen shared schema modified elsewhere eg console or team workflows functionality is available for Flutter too but it was difficult to get this to work We ended up creating a new Flutter application using amplify init and then copy pasted our schema s into the expected location Then we needed to manually copy the generated models into our project Oh I neqarly forgot When using amplify codegen you need to ensure that your schema is anotated correctly types e g need to have an model annotation but if you have this annotation in the schema when trying to deploy to AppSync that deployment failed so we needed to also manually adjust the schema before we were able to execute amplify codegen Using the Amplify SDK for FlutterIn our use case all of the backend infrastructure is created using the AWS CDK We are not using Amplify to create backend resources and this use case has until recently not really been promoted by the Amplify team Thanks to one of my last blog posts around the same topic this new documentation page has been added which simplifies the setup of your amplifyconfiguration dart but we were missing the same documentation for the Authentication library One again we workarounded this problem by using a temporary Amplify Flutter project That allowed us to copy paste the configuration and adjust it to our needs Environment aware connectionsIn our current setup we have at least three environments to test and promote our application In order to be able to execute and test the Flutter application on all environments without code changes we needed to make the maplifyconfiguration dart environment aware class EnvironmentConfig static const WEB URL String fromEnvironment WEB URL static const API URL String fromEnvironment API URL static const CLIENT ID String fromEnvironment CLIENT ID static const POOL ID String fromEnvironment POOL ID These environment variables are then used in our configuration object const amplifyconfig UserAgent aws amplify cli Version api plugins awsAPIPlugin frontend endpointType GraphQL endpoint EnvironmentConfig API URL region us east authorizationType AMAZON COGNITO USER POOLS auth plugins awsCognitoAuthPlugin UserAgent aws amplify cli Version IdentityManager Default CognitoUserPool Default PoolId EnvironmentConfig POOL ID AppClientId EnvironmentConfig CLIENT ID Region us east Auth Default authenticationFlowType USER PASSWORD AUTH socialProviders usernameAttributes EMAIL signupAttributes BIRTHDATE EMAIL FAMILY NAME NAME NICKNAME PREFERRED USERNAME WEBSITE ZONEINFO passwordProtectionSettings passwordPolicyMinLength passwordPolicyCharacters mfaConfiguration OFF mfaTypes SMS verificationMechanisms EMAIL Within our CI CD workflow we then pass the correct values for the variables and during the flutter build web they are backed into the application After solving these challenges using the Amplify Flutter library worked without noteworthy problems or hickups Using the Amplify Flutter Library to authenticate a user with CognitoThe documentation for Amplify Flutter is really good and we decided to also use the Authenticator Widget at the end this project was born through a hackathon and we did not have much time to implement the authentication flow ourselves In our main dart we needed to include the Amplify configuration Future lt void gt configureAmplify async final api AmplifyAPI modelProvider ModelProvider instance await Amplify addPlugin api Add any Amplify plugins you want to use final authPlugin AmplifyAuthCognito await Amplify addPlugin authPlugin try await Amplify configure amplifyconfig on AmplifyAlreadyConfiguredException safePrint Tried to reconfigure Amplify this can occur when your app restarts on Android and then we only needed to adjust the build method to distinguish betwen AuthenticatedViews and normal views Widget build BuildContext context final GoRouter router GoRouter routes lt RouteBase gt GoRoute path builder BuildContext context GoRouterState state return HomeScreen GoRoute path profile builder BuildContext context GoRouterState state return AuthenticatedView child ProfileScreen GoRoute path imprint builder BuildContext context GoRouterState state return ImprintScreen GoRoute path privacy builder BuildContext context GoRouterState state return PrivacyScreen GoRoute path in builder BuildContext context GoRouterState state return AuthenticatedView child LoggedInHomepage title AWS Speakers Directory return Authenticator initialStep AuthenticatorStep signIn signUpForm SignUpForm custom fields SignUpFormField username SignUpFormField password SignUpFormField passwordConfirmation SignUpFormField email SignUpFormField custom title First name attributeKey CognitoUserAttributeKey givenName SignUpFormField custom title Last name attributeKey CognitoUserAttributeKey familyName SignUpFormField custom title City attributeKey CognitoUserAttributeKey custom city SignUpFormField custom title Country attributeKey CognitoUserAttributeKey custom country SignUpFormField birthdate SignUpFormField gender child MaterialApp router title AWS Speakers Directory routerConfig router We would have loved to open source our code but unfortunately that option is currently not available in Amazon CodeCatalst If you re an experienced Flutter developer and don t like the code you see above that s fine the four of us have been learning Flutter iwth this project approach us and tell us how to do this better Using the Amplify Flutter Library to execute AppSync GraphQL queriesAccessing AppSync was also really easy by following the Amplify Flutter documentation Here is our code for retrieving events from the backend Future lt List lt EventRow gt gt listEvents async try String graphQLDocument query GetEvents listEvents pk sk title description tags length var operation Amplify API query request GraphQLRequest lt String gt document graphQLDocument List lt EventRow gt events var response await operation response var data response data if data null Map lt String dynamic gt userMap jsonDecode data print Query result data toString List lt dynamic gt matches userMap listEvents null userMap listEvents matches forEach element if element null if element id null element id rnd id var event Event fromJson element events add EventRow event context return events on ApiException catch e print Query failed e return lt EventRow gt This uses the previously generated models All of the queries are authenticated using the Cognito Authentication and this is the identity that we can also use in the backend to authorize access The Amplify documentation is pretty good hence I will not be adding more details into this post Please ask if you have any specific questions Wishes for the Amplify SDK for FlutterWe already mentioned most of them better amplify codegen support including the option to generate both Flutter and Typescript models at the same time better documentation or support for setting up the Amplify configuration completely without an Amplify backend Another thing we did not talk about here but Julian mentions in his blog post are the AppSync merged APIs which are currently not supported thus we needed to execute amplify codegen for each of our microservices schemas and then for the merged APi and then manually needed to bring the models into a usable structure e g copy pasting from the different ModelProviders What s next for our projectSo what s next After the hackathon we are thinking about making this a kind of OpenSource collaborative project Here we are looking for contributors please contact us if you are interested Besides that Matt covers a godd bunch of roadmap items already and we definately need someone with more Flutter experience to review our UI code to e g introduce the BloC pattern for cleaner programming adding some styling and to expand existing functionalities And we still need to play the cross platform card we need a build step to generate iOS and Android versions of our application and need to make sure that the apps land in the Appstore s Please reach out to us if you would like to get involved Who to reach out to Danielle Matt Julian or myself 2023-06-29 11:43:48
Apple AppleInsider - Frontpage News Apple to defend itself against Spotify complaint with EU https://appleinsider.com/articles/23/06/29/apple-to-defend-itself-against-spotify-complaint-with-eu?utm_medium=rss Apple to defend itself against Spotify complaint with EUThe European Union is to hear Apple s argument on Friday against an anti steering accusation that was initiated by Spotify and could lead to an almost billion fine Spotify s App Store icon left Apple Music right Back in Spotify complained to the EU that Apple was abusing its monopoly by forcing developers to use the App Store s payment system At the same time the music streamer claimed that Apple was also unfairly denying it the ability to inform users of lower prices on its website Read more 2023-06-29 11:17:05
海外TECH Engadget The best PlayStation 5 games for 2023 https://www.engadget.com/best-games-for-ps5-playstation-5-171511880.html?src=rss The best PlayStation games for Welcome to our first update to Engadget s best games list for PlayStation As always we have looked for games that generally offer meaningful improvements over their last gen counterparts when played on PS or are exclusive to the system Our update sees two third party titles Deathloop and Final Fantasy VII Remake join the overwhelmingly Sony fray We ll be updating this periodically so if a game s just been released and you don t see it chances are that the reason for its absence is that we haven t played through it yet Either that or we hate it StrayStray a perfectly contained adventure game that has you embodying a cat in a post apocalyptic world humans have left behind It has plenty of fresh ideas each one pared down to its purest form Plenty of actions in Stray exist simply because they make sense for a cat protagonist and probably because they re cute as hell There s a discrete button to meow and the robots the cat shares its world with react with shock and frustration when you cut across their board game throwing pieces to the floor It s possible to curl up and sleep basically any time anywhere even directly on top of a robot stranger When the cat gets pets and cuddles from the robots it purrs and the DualSense s haptics fire up in response The environmental puzzles take advantage of this cat level perspective inviting players to look at the world with different light reflective eyes As well as puzzle solving ledge leaping and blob dodging Stray introduces a world of lighthearted dystopia where robots don t hate the humans that came before them Instead they attempt to cultivate plants that can survive in the dark just because people would have liked that Compared with most dystopian cyberpunk games Stray is downright joyful Dead SpaceThe nbsp Dead Space remake feels like a warm juicy hug from a murderous necromorph and we mean that in the best way possible The version of Dead Space spit shines the mechanics that made the original game so magically horrific back in and it doesn t add any unnecessary modern bloat The remake features full voice acting new puzzles and expanded storylines and it introduces a zero gravity ability that allows the protagonist Isaac Clarke to fly through sections of the game in an ultra satisfying way None of these additions outshine the game s core loop stasis shoot stomp Isaac gains the ability to temporarily freeze enemies and he picks up a variety of weapons but he never feels overpowered he s always in danger Mutilated corpse monsters appear suddenly in the cramped corridors of the space station charging at Isaac from the shadows limbs akimbo and begging to be shot off The first Dead Space popularized the idea that headshots don t matter and the remake stays true to this ethos yet its combat rhythm still feels fresh The version of Dead Space proves that innovative game design is timeless and so are plasma cutters Gran Turismo If you enjoy sim style racing games Gran Turismo is the PS s only real choice The main tenets that ve made Gran Turismo a gaming staple are still here a handling and physics model that demands precision but isn t so realistic that you need a wheel or intense skill to play the intensity of learning how a specific car meshes with a specific track truly stunning visuals that odd mix of rock jazz and orchestral music in the soundtrack Most of all there remains a deep love of the automobile from sexy speed demons to unwieldy boxes from years ago More than this Gran Turismo is romantic about cars not just for how they look but how they represent years of collective labor and passion There s a singular style and voice here that just doesn t exist in most sports games There was lots of anger around Gran Turismo s microtransactions amount of content and event payouts around launch just look at that Metacritic user score and the fact that it s effectively always online is still a major detraction But if you re starting today you ll have hundreds of hours of things to do and you shouldn t feel the need to grind for credits until far down the road And that s assuming you aren t interested in racing against other players online which is where the game should be most lively for years to come Elden RingDid you think this list would not include Elden Ring The strengths of FromSoftware s latest action RPG are many but what s most impressive about the game is how hand crafted it feels despite its scale Elden Ring is big but it never feels like it s wasting your time Far from it FromSoftware has created a rich open world with something surprising delightful or utterly terrifying around every corner I ll never forget the moment I found a chest that teleported my character to a cave full of Eldritch monsters Elden Ring is full of those kinds of discoveries And if you re worried about hitting a brick wall with Elden Ring s difficulty don t be Sure it can be tough as nails but it s also From s most accessible game to date as well If you find combat overly punishing go for a mage build and blast your enemies from afar And if all else fails one of the rewards for exploring Elden Ring s world is experience that you can use to make your character stronger God of War Ragnarök s God of War was a brilliant reinvention for a franchise that was in desperate need of a reboot For an encore all Sony s Santa Monica Studio did was every single stake they could God of War Ragnarök is a massive adventure taking protagonist Kratos and his son Atreus all over the nine Norse realms as they prepare for Ragnarök a mythical event essentially meant to bring about the end of the world Along the way Kratos and Atreus get up close and personal with even more of the Norse gods including stunning encounters with the drunken but deadly Thor and of course Odin himself The combat in Ragnarök remains one of the most satisfying gaming experiences I can think of it s fluid and extremely customizable And once you get into a groove and power up Kratos it s truly a god like experience There s also a much greater variety of enemies this time out from the smaller grunts you mow through to bigger and more intense boss battles There are more realms to visit more sidequests than ever and an endgame sequence that s up there with the biggest battles any God of War game has ever put to screen The backdrop for all this is some of the most beautifully detailed and varied environments you can find from the swampy confines of Vanaheim and the fiery to the frozen tundra of Midgard On the PS you can choose between native K visuals or high frame rates up to Hz provided your TV can handle it The Last of UsThe Last of Us and its sequel may have originally come out for the PS and PS respectively but they also provide two excellent PS experiences The Last of Us Part I is a complete visual remake for the PS of the original with massively improved character models and environments along with native K visuals or frame rates up to fps The Last of Us Part II originally launched for the PS in and developer Naughty Dog released a patch for it last year unlocking fps gameplay on the PS There weren t any other major updates but the game already looked amazing on the PS so there wasn t a ton to change here Either way the PS is the best place to experience these two games Both games feature a sprawling post pandemic adventure story following survivors Joel and Ellie through a gorgeously rendered but terrifying world where zombie like Infected and regular humans alike are out for your blood You ll never really feel like you have enough supplies to survive so you need to make every shot count or figure out how to sneak around enemies or craft tools that ll get you out of tight spots There s an ever present sense of danger in these games while the stories focus on human connection in all its messy glory the tone is often extremely grim but there are moments of levity humor and hope sprinkled throughout the ruined world The Last of Us Part I and Part II both put you through an intense violent and emotional experience but they remain a journey worth taking RollerdromeRollerdrome is lush It s incredibly stylish taking cues from s Hollywood sci fi but with an attractive cel shaded filter over every scene Even better than its stunning visuals Rollerdrome has smooth precise mechanics that allow players to fall into a flow in every level The game is all about gliding through the environments on rollerblades picking up speed and doing tricks while dodging and shooting enemies managing weapons and controlling time and it all comes together in a thrilling dystopian bloodsport It s a joy to dodge dodge dodge and then leap into the air slow down time and take out the people shooting at you refilling ammo and collecting health in the process Meanwhile an unsettling story of corporate greed unfolds naturally beneath the rollerblading bloodshed keeping the stakes high Rollerdrome was a sleeper hit of so if you ve been napping on this one now s the time to wake up and play Overwatch Even though Blizzard has improved the onramp for new players this time around Overwatch still has a steep learning curve Stick with it though and you ll get to indulge in perhaps the best team shooter around Overwatch has a deceptively simple goal ーstand on or near an objective and keep the other team away long enough to win It s much more complex in practice To the untrained eye matches may seem like colorful chaos but Overwatch has a deceptively simple goal ーstand on or near an objective and keep the other team away long enough to win It s much more complex in practice Blizzard reduced the number of players on each team from six to five That along with across the board character tweaks has made gameplay faster paced and more enjoyable compared with the original Overwatch There s a greater emphasis on individual impact but you ll still need to work well with your teammates to secure a victory Now featuring a cast of more than heroes each with distinct abilities and playstyles you ll surely find a few Overwatch characters that you can connect with The first batch of new heroes are all a blast to play There are many great though often fairly expensive new skins to kit them out with too The game looks and sounds terrific too thanks to Blizzard s trademark level of polish At least until you figure out how to play Overwatch you can marvel at how good it looks Astro s PlayroomIt s odd to start a best games list with a title that comes free with the console but if you re anything like my son who swiftly deleted Astro s Playroom to make space for various Call of Duty titles I m here to tell you to give the pack in title another shot Astro s Playroom is a love letter to both D platformers and the PlayStation itself It s also to date the title that makes the best use of Sony s DualSense controller with incredible haptic feedback and clever usage of the pad s adaptive triggers Although eight years on I m still not convinced anyone has found a compelling reason for that touch pad It s a game that even completionists can finish within six hours or so but those six hours were among the most fun I ve had with the PS so far Final Fantasy VII Remake IntergradeWe thought it would never happen Final Fantasy VII was an iconic JRPG that s credited with opening up the genre to the west It peppered the Top lists of the best games of all time and introduced the long running Japanese RPG series to polygons D maps and countless other innovations of bit consoles years later and three PlayStation iterations later Square Enix dared to remake not remaster the game It would be contentiously episodic expanding out the story of Midgar and the opening part of the game into a single game It s all very different It s also gorgeous with a modern battle system that no longer focuses on static characters and menu choices Somehow and we were ready to be underwhelmed the battle system works FFR s fights are slicker and more enjoyable than those in Final Fantasy XV the latest entry in the series Each character from iconic mercenary Cloud through to eco terrorist Barret and flower girl Aerith play in entirely different ways using the space between themselves and enemies in very different ways Some sub missions and distractions feel like they re there solely to eke some more hours out of your playthrough but the world of the original has been thoughtfully reimagined so it s a minor complaint For anyone that bought the PS iteration the upgrade to PS is free However it costs money to gain access to the PS exclusive DLC chapter featuring ninja Yuffie Offering another battle style to experiment with and master two new extra chapters run alongside the events of the first installment of this remake Moments of the game feel like they were built to tease how capable the newest PlayStation is with Yuffie zipping down poles through vertiginous levels wall running and mixing up long range and short range attacks in a completely different way to Cloud Aerith and the rest It suffers a little from trying to tie in FF lore from old spin off titles but it s a satisfying distraction as we wait for the second part Final Fantasy VII Rebirth to arrive in Demon s SoulsBluepoint s Demon s Souls remake won t be for everyone ーno Souls game is The original Demon s Souls was a sleeper hit in on the PS establishing the basic formula that would later be cemented with Dark Souls and then aped by an entire industry to the point where we now essentially have a “Soulslike genre Today that means challenging difficulty grinding enemies for souls to level up the retrieval of your corpse to collect said souls a labyrinthine map to explore and if you re doing Soulslike right some show stopping boss fights to contend with As a progenitor to the genre Demon s Souls has most of those in abundance But rather than a huge sprawling map it uses a portal system with mini labyrinths to work through Its bosses are also not quite on the level of impressiveness or difficulty of a more modern Dark Souls game Bluepoint has been faithful to the original then but graphically Demon s Souls is a true showcase of what the PS can do with gorgeous high resolution visuals smooth frame rates and swift loading While the graphics certainly catch your eye it s the smoothness and loading times that are the most impactful The original ran at p and…depending on what you were doing to fps while the remake lets you pick between a locked or fps at K or p And in a game that will likely kill you hundreds of times waiting two seconds to respawn instead of thirty is transformative God of WarSony s God of War series had laid dormant for half a decade when its latest incarnation hit stores in early and for good reason Antiquated gameplay and troubling themes had made it an ill fit for the modern gaming landscape No more SIE Santa Monica Studio s God of War manages to successfully reboot the series while turning the previous games narrative weaknesses into its strengths Kratos is now a dad the camera is now essentially strapped to his shoulder and Sony has what is sure to become a new series on its hands The first outright PS game on this collection God of War has at least been patched for better performance on PS allowing it to output at K For those subscribed to PS Plus this one s available for free as part of the PlayStation Plus Collection on PS Ghost of Tsushima The Director s CutThis tale of samurai vengeance is like Japanese cinema come to life There are multiple betrayals the sad deaths of several close allies tense sword fights villages and castles under siege and even a Kurosawa mode black and white filter you employ for the entire game The world of feudal Japan with some creative liberties is gorgeous with fields of grass and bullrushes to race through on your faithful steed temple puzzles to navigate around and fortresses to assess and attack As you make your way through the main story quest and more than enough side quests and challenges you unlock more powerful sword techniques and stances as well as new weapons and forbidden techniques that are neatly woven in the story of a samurai pushed to the edge It still suffers from one too many fetch quests artifacts scattered across Japan s prefectures but the sheer beauty of Ghost of Tsushima tricks you into believing this is the greatest open world game on PlayStation Don t get me wrong ーit s up there With the new Director s Cut edition on the PS you also get dynamic frame rates up to FPS ensuring the game looks and feels even more like a tribute to Japanese cinematic auteurs of the past There are also DualSense tricks like a bow that tangibly tightens as you pull on trigger buttons and subtle rumble as you ride across the lands of Tsushima Director s Cut adds a new surprisingly compelling DLC chapter As you explore the Iki isle the game adds a few more tricks to Jin s arsenal and deepens the relationship and history between the game s hero and his father Without spoiling what happens the game smartly threads the original story into the DLC ensuring it feels solidly connected to the main game despite DLC status DeathloopDeathloop from the studio that brought you the Dishonored series is easy enough to explain You re trapped in a day that repeats itself If you die then you go back to the morning to repeat the day again If you last until the end of the day you still repeat it again Colt must “break the loop by efficiently murdering seven main characters who are inconveniently are never in the same place at the same time It s also stylish accessible and fun While you try to figure out your escape from this time anomaly you ll also be hunted down by Julianna another island resident who like you is able to remember everything that happens in each loop She ll also lock you out of escaping an area and generally interfere with your plans to escape the time loop The online multiplayer is also addictive flipping the roles around You play as Julianna hunting down Colt and foiling his plans for murder As you play through the areas again and again you ll equip yourself with slabs that add supernatural powers as well as more potent weapons and trinkets to embed into both guns and yourself It s through this that you re able to customize your playstyle or equip yourself in the best way to survive Julianna and nail that assassination Each time period and area rewards repeat exploration with secret guns hidden conversations with NPCs and lots of world building lore to discover for yourself Marvel s Spider Man Ultimate EditionFinally you don t have to pick up Spider Man on the GameCube to get your web slinging fix anymore For almost years that game was held as the gold standard for a Spider Man game and I ll let you into a secret It wasn t actually that good Marvel s Spider Man on the other hand is a tour de force Featuring the best representation of what it s like to swing through New York City well ever Insomniac s PlayStation exclusive also borrows liberally from the Batman Arkham series combat and throws in a story that although it takes a while to get going ends up in a jaw dropping place With the launch of the PS Insomniac released a Miles Morales spin off game which follows the eponymous character as he attempts to protect NYC in Peter Parker s absence Both parts are available packaged together as Spider Man Ultimate Editionーit has a longer name than that but let s not ーand benefit from improved framerates resolution and ray tracing although not necessarily all at the same time With the full graphical package enabled you ll be playing at frames per second in K or you can pick between a pair of performance options K with no ray tracing or p with ray tracing Whatever mode you pick you ll benefit from loading times that finally make the game s fast travel system…fast Resident Evil VillageResident Evil Village is delightful It s a gothic fairy tale masquerading as a survival horror game and while this represents a fresh vibe for the franchise it s not an unwelcome evolution The characters and enemies in Village are full of life ーeven when they re decidedly undead ーand Capcom has put a delicious twist on the idea of vampires werewolves sea creatures giants and creepy dolls The game retains its horror puzzle and action roots and it has Umbrella Corporation s fingerprints all over it On PS the game is gorgeous and it plays nicely with the DualSense controller adding haptic feedback to weapons and terrifying situations alike It simply feels like developers had fun with this one and so will you ReturnalReturnal nbsp is a third person action game a roguelite a bullet hell shooter and very hard perhaps not in that order The setup is basically that you re stuck in a death loop but you re aware of it and must learn the patterns and weaknesses of enemies ーand master your own ーin order to progress As Devindra Hardwar explains it leans heavily on the dark sci fi of Alien Edge of Tomorrow and Event Horizon but makes something new and unique in the process It s made by the team behind Resogun Nex Machina and Super Stardust HD and you can tell for better or worse As you d expect from a team that s spent the past decades making shooters the movement gunplay and enemy attack patterns are incredibly well tuned But on the flipside from a studio used to smaller productions the complexity and ambition of Returnal leads to a lack of polish that some may find unacceptable in a game If you can look past that there s a hell of a game waiting for you here Sekiro Shadows Die TwiceSekiro Shadows Die Twice isn t just another Dark Souls game FromSoftware s samurai adventure is a departure from that well established formula replacing slow weighty combat and gothic despair for stealth grappling hooks and swift swordplay Oh and while it s still a difficult game it s a lot more accessible than Souls games ーyou can even pause it The result of all these changes is something that s still instantly recognizable as a FromSoftware title but it s its own thing and it s very good While the game has yet to receive a proper PS upgrade the extra grunt of Sony s next gen console does allow the game to finally run at a locked fps ーsomething the PS Pro couldn t handle This article originally appeared on Engadget at 2023-06-29 11:48:19
海外TECH Engadget The Morning After: Google stops plans to build its own augmented reality glasses https://www.engadget.com/the-morning-after-google-stops-plans-to-build-its-own-augmented-reality-glasses-111515325.html?src=rss The Morning After Google stops plans to build its own augmented reality glassesWith Google Glass the company was the major player to push augmented reality wearables into the world After shelving that early hardware the company moved onto new internal projects including Iris AR glasses These were supposed to look like a pair of ordinary glasses with early versions reportedly resembling a product called quot Focals quot by North a Canadian startup that Google acquired in Google even demoed a newer version in a video showing a real time AR translation feature The company has now reportedly shelved Iris following waves of layoffs and company reshuffles Another event that factored into Google s decision was the departure of Clay Bavor the company s former chief of augmented and virtual reality Now instead of building its own hardware Google has apparently chosen to focus on creating an quot Android for AR quot ecosystem instead Currently that includes working on Android XR for Samsung s quot extended reality quot wearable device If we take Google s approach to Android as a template add another five years and maybe we ll see Pixel XR glasses Mat SmithYou can get these reports delivered daily direct to your inbox Subscribe right here The biggest stories you might have missedFilm director Roland Emmerich is creating a shared universe of TV gaming and Web tomfooleryDoorDash will start offering couriers an hourly rate while they re fulfilling orders Final Fantasy XVI has already sold over million copies The best music streaming services in Shokz OpenFit delivers open ear audio without bone conduction Bloober Team is done making psychological horror gamesKia EV first drive Adding a third row to the EV marketNorth America s first hydrogen powered train debuts in CanadaIt s a three month loaner designed to encourage adoption across the continent AlstomThis summer North America s first hydrogen powered train began traveling across the Canadian countryside The French passenger train the Coradia iLint is a short term demonstration running through the end of September that aims to spark adoption in Canada and the US The Coradia iLint uses roughly “about kilograms of hydrogen a day says Serge Harnois CEO of Hanois Énergies the train s hydrogen fuel supplier The same journey using a standard engine would burn around liters of diesel fuel It only emits water vapor along its journey as a byproduct of combining hydrogen with oxygen Sounds good right Well there are caveats It requires a diesel powered truck to transport the hydrogen to the train every time it refuels and let s not forget about the emissions made by the train s trip from Europe to Canada for a mere three month demo Continue reading The Password Game might break youA game where you have to jump through hoops to make a new password AlstomThe goal of the game is to create a password no one hacker could possibly crack and the experience starts out simple enough “Your password must be at least characters states rule one while rule four asks that all the digits in your password add up to Then things start to become progressively more unhinged Rule seven demands you include a Roman numeral only for rule nine to demand that a handful of Roman numerals must multiply to make If you want to test your mental resilience you can try it out here Continue reading Microsoft is already offering a generative AI certification programIt includes free courses from LinkedIn Microsoft has announced a new program to train workers on generative AI Microsoft s AI Skills Initiative will include free courses created by Microsoft owned LinkedIn offering learners “the first Professional Certificate on Generative AI in the online learning market The company says the courses will cover introductory AI concepts and “responsible AI frameworks culminating in certification Given that generative AI is so simple to use it ll be interesting to see what the courses entail They could still provide tips for composing the most effective prompts and we all know someone at work that struggles with even basic software functions Continue reading This article originally appeared on Engadget at 2023-06-29 11:15:15
海外科学 BBC News - Science & Environment Government heat pump scheme misses first year target https://www.bbc.co.uk/news/science-environment-66033199?at_medium=RSS&at_campaign=KARANGA hinder 2023-06-29 11:25:29
医療系 医療介護 CBnews 後発薬の政府目標「金額ベース」に、年度内に見直し-さらなる使用促進へ https://www.cbnews.jp/news/entry/20230629203631 厚生労働省 2023-06-29 20:45:00
医療系 医療介護 CBnews 自殺対策、かかりつけ医と精神科医の連携体制整備-島根県が計画案を公表 https://www.cbnews.jp/news/entry/20230629200409 精神科医 2023-06-29 20:30:00
医療系 医療介護 CBnews システム不具合なら「資格情報不詳」のまま請求-転職後などは「保険証持参を」患者にも呼び掛け https://www.cbnews.jp/news/entry/20230629200057 医療保険 2023-06-29 20:20:00
金融 金融庁ホームページ 入札公告等を更新しました。 https://www.fsa.go.jp/choutatu/choutatu_j/nyusatu_menu.html 公告 2023-06-29 12:00:00
ニュース BBC News - Home Government to appeal asylum ruling in Supreme Court https://www.bbc.co.uk/news/uk-66051292?at_medium=RSS&at_campaign=KARANGA seekers 2023-06-29 11:45:15
ニュース BBC News - Home Undercover policing unit tactics not justified, says report https://www.bbc.co.uk/news/uk-66020767?at_medium=RSS&at_campaign=KARANGA inquiry 2023-06-29 11:50:36
ニュース BBC News - Home Tory MPs tried to interfere with Johnson probe - report https://www.bbc.co.uk/news/uk-66051280?at_medium=RSS&at_campaign=KARANGA dorries 2023-06-29 11:17:03
ニュース BBC News - Home Madonna: Famous friends send best wishes to hospitalised star https://www.bbc.co.uk/news/entertainment-arts-66052406?at_medium=RSS&at_campaign=KARANGA rachel 2023-06-29 11:02:54
ニュース BBC News - Home Sweden Quran burning sparks anger across Muslim world https://www.bbc.co.uk/news/world-europe-66052670?at_medium=RSS&at_campaign=KARANGA stockholm 2023-06-29 11:17:18
ニュース BBC News - Home Government heat pump scheme misses first year target https://www.bbc.co.uk/news/science-environment-66033199?at_medium=RSS&at_campaign=KARANGA hinder 2023-06-29 11:25:29
ニュース BBC News - Home What is the UK's plan to send asylum seekers to Rwanda? https://www.bbc.co.uk/news/explainers-61782866?at_medium=RSS&at_campaign=KARANGA rwanda 2023-06-29 11:45:30
ニュース BBC News - Home Thames Water: Customers' bills will not be affected, says minister https://www.bbc.co.uk/news/business-66050962?at_medium=RSS&at_campaign=KARANGA brien 2023-06-29 11:03:31
ニュース BBC News - Home The Ashes: Steve Smith removed by Josh Tongue for 110 https://www.bbc.co.uk/sport/av/cricket/66054117?at_medium=RSS&at_campaign=KARANGA ashes 2023-06-29 11:26:06
ニュース BBC News - Home Unrest spreads over police killing of teen https://www.bbc.co.uk/news/world-europe-66049705?at_medium=RSS&at_campaign=KARANGA check 2023-06-29 11:01:40
ニュース Newsweek 「会社が赤字!」事業撤退はどのタイミングですべきか? 弁護士が解説 https://www.newsweekjapan.jp/stories/business/2023/06/post-102042.php それなりにうまく利益を出しているような企業もあり、筆者も感心したこともあります。 2023-06-29 20:10:37
IT 週刊アスキー 21年間の歴史を体感したい、「FINAL FANTASY XI ヴァナ・ディールの秘蔵展」有楽町マルイで開催 https://weekly.ascii.jp/elem/000/004/143/4143108/ finalfantasyxi 2023-06-29 20:40: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件)