投稿時間:2022-08-12 02:20:32 RSSフィード2022-08-12 02:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Developer Blog Introducing Smithy IDL 2.0 https://aws.amazon.com/blogs/developer/introducing-smithy-idl-2-0/ Introducing Smithy IDL The AWS Smithy team is happy to announce the release of the Smithy Interface Definition Language IDL This release focuses on improving the developer experience of authoring Smithy models and using code generated from Smithy models It contains numerous new features such as reduced nulls and optional types in generated code custom default values … 2022-08-11 16:33:12
AWS AWS Consegna: Digital Human Interactions via AI/ML Services https://www.youtube.com/watch?v=aovXn5QDEzU Consegna Digital Human Interactions via AI ML ServicesConsegna is revolutionizing user interaction with Inteso Digital Human How do you build a human like avatar with incredible interaction and resolution ability Shane from Consegna walks through the scalable and innovative combination of AWS Lambda with Amazon Polly and Amazon Lex Digital Human is able to resolve of user queries by searching the answers in Amazon OpenSearch and Amazon Kendra In case when in person interaction is required it uses Amazon Connect to keep all the context and answer even the most detail questions Check out more resources for architecting in the AWS​​​cloud AWS AmazonWebServices CloudComputing ThisIsMyArchitecture 2022-08-11 16:44:06
AWS AWS Kaiser and Kraft transforms its business with SAP on AWS | Amazon Web Services https://www.youtube.com/watch?v=NbCEBT95AEs Kaiser and Kraft transforms its business with SAP on AWS Amazon Web ServicesKAISER KRAFT is a leading BB retailer for production warehouse and office equipment It turned to AWS to transform its web shop from a monolithic on premises installation into a modular highly adaptable flexible cloud native e commerce system Using SAP on AWS it has halved testing time and cut price refresh times from several days to just a few hoursLearn more at Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2022-08-11 16:41:24
AWS AWS How can I connect to my Amazon RDS DB instance using a bastion host from my Linux or macOS machine? https://www.youtube.com/watch?v=XV0McaU_B6I How can I connect to my Amazon RDS DB instance using a bastion host from my Linux or macOS machine For more details see the Knowledge Center article with this video Sharath shows you how to connect to your Amazon RDS DB instance using a bastion host from your Linux or macOS machine Introduction Chapter Chapter Chapter ClosingSubscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2022-08-11 16:11:23
python Pythonタグが付けられた新着投稿 - Qiita 30代未経験エンジニア Django 超入門 https://qiita.com/itakura1984/items/50b8ea34543207b0c371 djangoadminstartprojectd 2022-08-12 01:42:05
Ruby Rubyタグが付けられた新着投稿 - Qiita throughを使ってアソシエーションをスッキリさせる!! https://qiita.com/Rairu_blog/items/03f18f0752dea45a0423 through 2022-08-12 01:41:25
Linux Ubuntuタグが付けられた新着投稿 - Qiita WSL2でNeoVim環境を作るときの個人的まとめ https://qiita.com/Sicut_study/items/abab3846a9679574073f neovim 2022-08-12 01:38:41
Git Gitタグが付けられた新着投稿 - Qiita gitで.git/index.lock: File exists.というのエラーが出た時の対処方法。 https://qiita.com/niceboad2525/items/fa668d87fca7ff0868df gitprocessseemstoberun 2022-08-12 01:28:21
Ruby Railsタグが付けられた新着投稿 - Qiita throughを使ってアソシエーションをスッキリさせる!! https://qiita.com/Rairu_blog/items/03f18f0752dea45a0423 through 2022-08-12 01:41:25
海外TECH DEV Community Nyan Cat or Giga Cat Epic Game https://dev.to/seek4samurai/nyan-cat-or-giga-cat-epic-game-1970 Nyan Cat or Giga Cat Epic Game Nyan Cat GameNyan cat game is actually a music rhythm based game I e you start with a decent difficulty as the music in start is decent and it expect you to pass through it after a few tries at least Once you pass through the first phase of the game you ll enter a Panic event phase where it gets real exciting Panic event can start anytime above the score of pts Screenshots Overview video Here s a short video that explains the project and how it uses Redis How it works When it comes to working of this game it comes down to a web application Here I ve created a Next app using npx create next app Metamask wallet address for user Authentication this app uses Next js framework with Moralis SDK and Redis for querying amp storing data into Redis cloud Here game is rendered using HTML canvas How the data is stored In this application I ve something called Redis om for Node js Here data is stored in the form of JSON where following schema is createdclass Score extends Entity const schema new Schema Score address type string score type number sortable true textSearch true dataStructure JSON export const createScore async data gt await connect const repository client fetchRepository schema client const score repository createEntity score score data score score address data address const id await repository save score const ttlInSeconds await repository expire id ttlInSeconds await client close return id Notice I ve also declared something as const ttlInSeconds and then used it in await repository expire id ttlInSeconds because we don t want to store any data longer than hours Yes your scores will reset after hours Once this is done we can create an API route in our Next js application import createScore from lib redis export default async function handler req res const id await createScore req body res status json id Once we create it in our database it will be stored in our database by giving data from our frontend I ve used javascript s fetch API for this purpose You can check this file where I ve declared such logic How the data is accessed Now if you ve gone through the application there is a section of leaderboard where we have scores and addresses of players with highest pts To access our database and then fetch it from our Redis database we have couple of ways like In our development phase I ve used Redis Insight importing my database using public endpoint amp password But in our application I ve used env local file to store all API keys Once that is done in our redis js file we create a redis instance also called Client like import Client from redis om const client new Client const connect async gt if client isOpen await client open process env NEXT PUBLIC REDIS URL Now once this is setup we use fetch API to query for data const fetchScores async gt const res await fetch api search query const results await res json return results scores To do this we also need to create an index using await repository createIndex and then we can create another API route to call this import createIndex from lib redis export default async function handler req res await createIndex res status send Index is created Then we use a custom function searchScore to get the data of top players with highest scores we used RediSearch for that purpose export const searchScore async gt await connect const repository client fetchRepository schema client const offset const count const scores await repository search sortDesc score return page offset count return scores This will get us the data we want And we can get that data using API route as search jsimport searchScore from lib redis export default async function handler req res const data req query const query Object keys data console log query const scores await searchScore query res status json scores You can check this file where I ve declared such logic Refer to Using RediSearch How to run it locally Requirements Node js Expected version gt If you need help in installing on Linux like me Check out Yarn I used Metamask installed on Browser Download hereYou ll need Metamask account to pass Authentication Follow these steps to run on your device after Cloning the repository and cd project giga cat to enter the root project folder First things first use yarn install to install all the dependencies In root directory of the repo create a file env local and declare env variables But before that go to Moralis io amp Redis and create a free account over both In Moralis dashboard click on Create new Dapp and select the Environment Testnet and under testnets select ETH Goerli testnet Select a region and give a cute name finally proceed with it Now create a subscription in your Redis Cloud and then create a database for yourself Make sure to save their details In your env local create variables as NEXT PUBLIC MORALIS SERVER URL NEXT PUBLIC MORALIS APP ID NEXT PUBLIC REDIS URLand give them their values For Moralis go to settings of your Dapp and copy the Dapp URL for SERVER URL amp Application ID for APP ID For Redis go to your database and from Security section copy the user password and also take the public endpoint from General section Now paste them in the env local file formatted as NEXT PUBLIC REDIS URL redis default password endpoint port Note port should be appended at the last of your public endpoint Now run yarn run dev to run the application Go to http localhost and you ll see the Connect Wallet page Click on Connect wallet and for signing in Metamask should ve popped up And you ll enter the dashboard If you ve find any difficulty in this Check my video If you notice anything unusual try refreshing the page If it doesn t fixes the behavior please create a issue in Github Deployment Deployment is done using Vercel Stuck Feel free to contact me through anywhere LinkedIn Gmail or leave a create a Github issue MITEach Soundtracks completely belongs to the respective artist amp I don t own them at all Hope you liked the project ️ 2022-08-11 16:51:28
Apple AppleInsider - Frontpage News Deal alert: Apple AirPods dip to $99 at Amazon https://appleinsider.com/articles/22/08/11/deal-alert-apple-airpods-dip-down-to-99-at-amazon?utm_medium=rss Deal alert Apple AirPods dip to at AmazonAmazon has Apple AirPods on sale for as low as today with AirPods Pro discounted by Amazon has the best AirPods prices this week AirPods are back Read more 2022-08-11 16:22:45
海外TECH Engadget FTC kicks off efforts to regulate data security and surveillance tech https://www.engadget.com/ftc-surveillance-technology-regulation-165846136.html?src=rss FTC kicks off efforts to regulate data security and surveillance techThe Federal Trade Commission is officially starting its efforts to broadly regulate data security The agency has published an early notice of proposed rulemaking that asks the public to comment on commercial surveillance and data gathering practices such as camera monitoring or protections for sensitive info Officials not only want to understand the harms and benefits of technologies but gauge interest in rules that could require stricter safeguards such as tougher encryption and bans on deceptive security claims The FTC s request for input also touches on specific issues such as biased surveillance systems and algorithmic errors Similarly regulators are interested in whether or not existing data security practices hurt children In explaining the proposal the FTC was concerned that enforcement by itself wasn t enough to protect consumers The Commission can t seek civil penalties for first time violators for instance In theory new rules would encourage stronger security policies provide more relief to hack victims and ensure a more consistent approach to cases On top of the comments you ll have a chance for more direct feedback The FTC is hosting a virtual public forum on September th that will give people two minutes each to share their views The session will also include a panel discussion The FTC is still far from outlining rules let alone putting them into effect Even so there s plenty of pressure to act Governments at multiple levels in the US are increasingly banning or withdrawing at least some uses of surveillance tech and there s a growing backlash against companies that either misuse personal data or are prone to data breaches New regulations could reduce violations and otherwise ensure that data holders show more respect for your privacy 2022-08-11 16:58:46
海外TECH Engadget NBA 2K23's Jordan Challenge revival is all about authenticity https://www.engadget.com/nba-2k23-jordan-challenge-trailer-details-2k-sports-michael-jordan-161531022.html?src=rss NBA K x s Jordan Challenge revival is all about authenticityIn NBA K K Sports is bringing the Jordan Challenge mode from NBA K back with some serious upgrades The publisher has revealed more details about the game mode which features key moments from Michael Jordan s career It includes the NCAA National Championship the quot Flu Game quot and spoiler Jordan s game winning shot at the NBA Finals Developer Visual Concepts seems to have gone all out to make the mode which it rebuilt from scratch as authentic as possible “Our team took everything into consideration when constructing this game mode the arenas the players the uniforms the broadcast and the play style of the era have been accounted for in an effort to give fans a truly authentic and unique playable Jordan experience Visual Concepts VP of NBA development Erick Boenisch said in a statement That goes right down to making sure the on screen graphics were accurate to the era and including filters that try to replicate what it was like to watch these moments many of which were featured in The Last Dance on TV in the s and s Each of the challenges has a pre game interview with someone who was part of that moment such as Kareem Abdul Jabbar Dennis Rodman and Phil Jackson In addition K brought in analyst Mike Fratello to join the commentary team and former Chicago Bulls announcer Ray Clay to make the introductions Of course K had to make sure The Alan Parsons Project s quot Sirius quot was part of the soundtrack too Perhaps even more importantly Visual Concepts sought to match the gameplay to how things were like in the NBA when Jordan was in his pomp K says the mode puts more emphasis on the post and mid range game and aligning transitions with how they were commonly used in the s Certain players such as Magic Johnson and Larry Bird have signature play styles and moves including Johnson s no look passes The action should have an extra layer of physicality with the Detroit Pistons defense in particular trying to muscle Jordan out of taking shots The Jordan Challenge mode will be available on all the many versions of NBA K PC and current gen console players will likely get the best experience if the mode s impressive trailer is anything to judge by 2022-08-11 16:15:31
海外科学 NYT > Science Arctic Warming 4 Times as Fast as the Rest of the Planet, New Analyses Find https://www.nytimes.com/2022/08/11/climate/arctic-global-warming.html Arctic Warming Times as Fast as the Rest of the Planet New Analyses FindThe warming at the top of the globe a sign of climate change is happening much faster than previously described compared with the global average scientists said Thursday 2022-08-11 16:02:30
ニュース BBC News - Home UK heatwave: Soaring temperatures prompt wildfire warnings https://www.bbc.co.uk/news/uk-62499044?at_medium=RSS&at_campaign=KARANGA severity 2022-08-11 16:51:52
ニュース BBC News - Home UN alarm as Ukraine nuclear power plant shelled again https://www.bbc.co.uk/news/world-europe-62505815?at_medium=RSS&at_campaign=KARANGA europe 2022-08-11 16:51:12
ニュース BBC News - Home Legoland: Rollercoaster crash at Germany resort injures 34 https://www.bbc.co.uk/news/world-europe-62512359?at_medium=RSS&at_campaign=KARANGA trains 2022-08-11 16:37:51
ニュース BBC News - Home People can't wait for energy help - Citizens Advice https://www.bbc.co.uk/news/business-62509970?at_medium=RSS&at_campaign=KARANGA energy 2022-08-11 16:36:04
ニュース BBC News - Home Rahimullah Haqqani: Afghan cleric killed by bomb hidden in artificial leg - reports https://www.bbc.co.uk/news/world-asia-62508070?at_medium=RSS&at_campaign=KARANGA education 2022-08-11 16:14:18
ニュース BBC News - Home Man charged with murder and attacks around Skye https://www.bbc.co.uk/news/uk-scotland-highlands-islands-62503691?at_medium=RSS&at_campaign=KARANGA skyethe 2022-08-11 16:28:27
ビジネス ダイヤモンド・オンライン - 新着記事 YouTube、米10代の人気トップ TikTok急上昇 - WSJ発 https://diamond.jp/articles/-/308028 tiktok 2022-08-12 01:23:00
北海道 北海道新聞 ウクライナ支援装ったか 詐欺未遂容疑、26歳男逮捕 https://www.hokkaido-np.co.jp/article/716890/ 詐欺未遂 2022-08-12 01:36:04
北海道 北海道新聞 穀物輸出初便、トルコ入港 次の目的地はエジプト https://www.hokkaido-np.co.jp/article/716914/ 輸出 2022-08-12 01:15:00
北海道 北海道新聞 ママチャリ サーキット疾走 更別で耐久レース https://www.hokkaido-np.co.jp/article/716770/ 耐久レース 2022-08-12 01:07:58

コメント

このブログの人気の投稿

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