AWS |
AWS |
Ounass: Building a Scalable Recommender Architecture Powered by the Word2vec Algorithm |
https://www.youtube.com/watch?v=asZIXK7V-U4
|
Ounass Building a Scalable Recommender Architecture Powered by the Wordvec AlgorithmIn this episode we present a scalable architecture that utilizes multiple AWS compute storage and orchestration services to continuously deploy a recommender system based on the Wordvec and Nearest Neighbours algorithms Check out more resources for architecting in the AWScloud AWS AmazonWebServices CloudComputing ThisIsMyArchitecture |
2021-11-01 16:44:47 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
pythonのfind()について |
https://teratail.com/questions/367309?rss=all
|
abcde |
2021-11-02 01:29:47 |
Git |
Gitタグが付けられた新着投稿 - Qiita |
Github don't ask certification but cannot push to remote repo |
https://qiita.com/ystgs/items/6cbea4e292073b715e6e
|
cache |
2021-11-02 01:51:56 |
海外TECH |
Ars Technica |
Starlink exits beta, but SpaceX says orders are delayed due to chip shortage |
https://arstechnica.com/?p=1809226
|
starlink |
2021-11-01 16:37:27 |
海外TECH |
MakeUseOf |
The 9 Best Alternatives to Thunderbird Mail |
https://www.makeuseof.com/best-thunderbird-mail-alternatives/
|
thunderbird |
2021-11-01 16:31:52 |
海外TECH |
MakeUseOf |
The 7 Best Laptops for Zoom |
https://www.makeuseof.com/best-laptops-for-zoom/
|
conferences |
2021-11-01 16:11:55 |
海外TECH |
MakeUseOf |
11 Air Conditioner Blunders to Avoid on Hot Summer Days |
https://www.makeuseof.com/tag/air-conditioner-blunders-avoid-summer/
|
great |
2021-11-01 16:07:12 |
海外TECH |
MakeUseOf |
iPhone or iPad Won't Connect to Wi-Fi? 8 Fixes |
https://www.makeuseof.com/iphone-ipad-wont-connect-to-wi-fi/
|
connect |
2021-11-01 16:01:50 |
海外TECH |
DEV Community |
This little known javascript physics library blew my mind! |
https://dev.to/jerzakm/this-little-known-javascript-physics-library-blew-my-mind-57oo
|
This little known javascript physics library blew my mind In my previous game dev attempts with javascript I always struggled with physics engine performance I always defaulted to matter js it s good documentation and plentiful examples outweighed the performance gains of other available libraries I was very excited when I first learned about WASM and near native performance it provides but for the longest time BoxD was the only viable choice in that area and I truely hated using it It had poor documentation and felt very archaic to use Now it seems like my woes might be over In comes a new contender Rapier rs Rapier homeRapier rs is a rust physics library compiled to WASM with javscript bindings and good documentation I was able to set it up in around minutes and it provided an massive instant boost to app performance Rapier remained more stable and allowed me to add thousands of more active physics bodies to the world Links Example from my last article with Rapier rs instead of matter performance LIVEGithub repoActive bodiesMatter FPSRapier FPS crashed crashed crashed crashed Why you need to consider Rapier for your js physics needs PerformanceJavascript can t compare to an optimized Rust library compiled to WASMWASM is just this fast DocumentationRapier page provides a good overview of the key features information how to get started and an in depth API documentation All of this for Rust Rust bevy and Javascript Modern developer experienceI found Rapier API very intuitive to work with imho making it by far the best choice out of the few performant It comes with typescript support Resulting code is readable and easy to reason with import dimforge rapierd then RAPIER gt Use the RAPIER module here let gravity x y let world new RAPIER World gravity Create the ground let groundColliderDesc RAPIER ColliderDesc cuboid world createCollider groundColliderDesc Create a dynamic rigid body let rigidBodyDesc RAPIER RigidBodyDesc newDynamic setTranslation let rigidBody world createRigidBody rigidBodyDesc Create a cuboid collider attached to the dynamic rigidBody let colliderDesc RAPIER ColliderDesc cuboid let collider world createCollider colliderDesc rigidBody handle Game loop Replace by your own game loop system let gameLoop gt Step the simulation forward world step Get and print the rigid body s position let position rigidBody translation console log Rigid body position position x position y setTimeout gameLoop gameLoop Cross platform determinism amp snapshottingRunning the same simulation with the same initial conditions on different machines or distributions of Rapier rust bevy js will yield the same result Easy data saving and restoring It is possible to take a snapshot of the whole physics world with world takeSnapshot This results in a byte array of type UintArray that may be saved on the disk sent through the network etc The snapshot can then be restored with let world World restoreSnapshot snapshot What s next I am excited to keep working with Rapier but in the meanwhile I think a proper physics benchmark is in order The ones I ve found while doing research were a bit dated Other Vite usage errorsI ve ran into some issues adding Rapier to my Vite project the solution can be found here |
2021-11-01 16:48:37 |
海外TECH |
DEV Community |
Server-Side Rendering (SSR) Vs Client-Side Rendering (CSR) |
https://dev.to/codewithtee/server-side-rendering-ssr-vs-client-side-rendering-csr-3m24
|
Server Side Rendering SSR Vs Client Side Rendering CSR Hey Coders We all can agree that new age Javascript has changed modern websites structure and the user experience drastically Websites these days are built more like an application pretending to be a website capable of sending emails notifications chat shop payments etc Today s websites are so advanced interactive but earlier the websites and web applications had a common strategy to follow They prepared HTML content to be sent to the browsers at the server side this content was then rendered as HTML with CSS styling in the browser Traditionally the browser receives HTML from the server and renders it When the user navigates to another URL a full page refresh is required and the server sends fresh new HTML for the new page This is called server side rendering Fast forward to today When websites have s of lines of code to render and with much more complex structures Today websites are more than just static pages The downfall of SSR came when the websites were not all about allowing the user to perform actions and receive a response for their action That is why developers shifted the ever growing method of rendering web pages on the client side But here are the questions Is SSR still relevant If yes where to use it the best approach for you Server Side RenderingIn SSR when the user makes a request to the webpage the server prepares the HTML page by fetching the required data from the database and sends to the user s machine over the internet Then the browser presents all the requested actions on the user UI All these processes of fetching data from the database to creating an HTML page and sending it to the client are done in mere milliseconds This method is viable if all your website need is to display images texts links to click and is more on the static side In server side rendered pages it is common to use snippets of jQuery to add user interactivity to each page However when building large apps just jQuery is insufficient After all jQuery is primarily a library for DOM manipulation and it s not a framework it does not define a clear structure and organization for your app Client Side RenderingDevelopers are approaching CSR as modern day development is mostly about JS libraries and frameworks The popularity of modern age JS shifted all the attention to CSR Client side rendering means that a website s JavaScript is rendered in your browser rather than on the website s server So now instead of getting all the content from the HTML doc only the required HTML with the JS files will be rendered The rendering time for the first upload is a bit slow However the next page loads will be very fast as we don t have to wait for every page render Moreover there is no need to reload the entire UI after every call to the server The client side framework manages to update UI with changed data by re rendering only that particular DOM element Also a clear client server separation scales better for larger engineering teams as the client and server code can be developed and released independently This is especially so at Grab when we have multiple client apps hitting the same API server For more clear view let s see some benefits and downside of both rendering methods Benefits of SSR The initial page of the website load is faster as there are fewer codes to render Good for minimal and static sites Search engines can crawl the site for better SEO Downsides of SSR the site interactions are less Slow page rendering Full UI reloads Frequent server requests Benefits of CSR The app feels more responsive and users do not see the flash between page navigations due to full page refreshes Fewer HTTP requests are made to the server as the same assets do not have to be downloaded again for each page load Clear separation of the concerns between the client and the server you can easily build new clients for different platforms e g mobile chatbots smartwatches without having to modify the server code You can also modify the technology stack on the client and server independently as long as the API contract is not broken Downsides of CSR Heavier initial page load due to loading of the framework app code and assets required for multiple pages There s an additional step to be done on your server which is to configure it to route all requests to a single entry point and allow client side routing to take over from there In most cases requires an external library All search engines execute JavaScript during crawling and they may see empty content on your page This inadvertently hurts the Search Engine Optimization SEO of your app However most of the time when you are building apps SEO is not the most important factor as not all the content needs to be indexable by search engines To overcome this you can either server side render your app or use services such as Prerender to render your javascript in a browser save the static HTML and return that to the crawlers When to use server side renderingAn application has a very simple UI with fewer pages featuresAn application has less dynamic dataRead preference of the site is more than writeThe focus is not on rich sites and has few users When to use client side renderingAn application has a very complex UI with many pages featuresAn application has large and dynamic dataWrite preference of the site is more than readingThe focus is on rich sites and a huge number of usersThe rendering method totally depends on the requirements and the UX plan of the client The final call is yours whether to use SSR or CSR I hope this article helped you to understand the basic concepts of rendering practice Thank You for reading till the end |
2021-11-01 16:47:11 |
海外TECH |
DEV Community |
convert html & css & js code to android app for free in a few minutes |
https://dev.to/amreldessouki/-js-code-to-android-app-for-free-in-a-few-minutes-4him
|
convert html amp css amp js code to android app for free in a few minutescheck it now Today we present HTMLgApp a tool designed to convert your HTML CSS JS Code into an Android app HTMLgApp is a website web tool to convert your code to an android app with app bundle amp apk with your own key store valid for days on google play storeFeatures that we provideApk amp App bundleGoogle play KeyMedia permissionDialog Ask to exit appInternet connection error native pageAndroid native spinnerDo you have any example for this tool in google play yes we have you can download it from hereit s very simple appwhy you add a media permission HTMLgApp doesn t know what type of website it you but if your user upload or download any file without any permission google play will remove your app from store so we have added it by default to make sure your app is safe on google playIf you have any question feel free to ask check it now |
2021-11-01 16:35:14 |
海外TECH |
DEV Community |
Backend Developer Learning Path 2021 [Beginners-Advance] |
https://dev.to/jdkj/backend-developer-learning-path-2021-beginners-advance-33a9
|
Backend Developer Learning Path Beginners Advance Who is a Backend Web Developer backend developer roadmap Unlike the frontend developer who takes care of the visible part of a site or app the backend developer is a computer scientist who instead builds everything that is not seen but serves to make that site or application work If we were to use the metaphor …Read More Backend Developers Roadmap |
2021-11-01 16:17:13 |
海外TECH |
DEV Community |
AI Projects for Beginners – Easy Ideas to Get Started Coding JS [Beginners - Advance |
https://dev.to/jdkj/ai-projects-for-beginners-easy-ideas-to-get-started-coding-js-beginners-advance-15fm
|
AI Projects for Beginners Easy Ideas to Get Started Coding JS Beginners AdvanceArtificial Intelligence has made a significant impact on our daily lives Every time you scroll through social media open Spotify or do a quick Google search you are using an application of AI The AI industry has expanded massively in the past few years and is predicted to grow even further reaching around billion U S dollars by Multinational companies like IBM Accenture and Apple are actively hiring AI practitioners The median salary of an AI engineer as of is that can go over The field of AI is vast and there are many areas within the industry that you can choose to specialise Say if you are intrigued by facial recognition systems and image generation you can choose to work in the field of computer vision If you d like to build models that can converse with people and learn human language you can work in the field of NLP Natural Language Processing There is a lot of work being done today for the advancement of Artificial Intelligence Companies need AI specialists who can build and deploy scalable models to meet growing industry demands It isn t tough to get started in the field of AI While there is the complexity involved in building machine learning models from scratch most AI jobs in the industry today don t require you to know the math behind these models Many companies require individuals who can build AI solutions scale them and deploy them for the end user Many high level libraries and frameworks can help you do this without an in depth knowledge of how the models work Read More AI Projects for Beginners Easy Ideas to Get Started Coding JS Beginners Advance |
2021-11-01 16:07:28 |
Apple |
AppleInsider - Frontpage News |
On its second anniversary, Apple TV+ is in a good place |
https://appleinsider.com/articles/21/11/01/on-its-second-anniversary-apple-tv-is-in-a-good-place?utm_medium=rss
|
On its second anniversary Apple TV is in a good placeOne massive hit a handful of smaller ones and a promising slate signal good things are in store for the Apple TV streaming service Some current AppleTV shows Before it launched on November there was skepticism from various quarters about the prospects of the Apple TV streaming service Some questioned what Apple knew about producing TV shows while a scathing piece in Gizmodo denounced the service as expensive NBC Read more |
2021-11-01 16:19:00 |
海外TECH |
Engadget |
The Chinese version of 'Fortnite' will shut down on November 15th |
https://www.engadget.com/fortnite-china-shut-down-tencent-epic-games-165016195.html?src=rss
|
The Chinese version of x Fortnite x will shut down on November thEpic Games and Tencent are shutting down the Chinese version of Fortnite Would be players are no longer able to register or download the game and the servers will be closed on November th according to an announcement on the battle royale s Chinese website quot The test of Fortress Night has come to an end quot the message reads via Google Translate quot We will shut down the server in the near future quot No reason was given for the game s closure Players who dropped into that version of Fortnite had a different experience to those elsewhere as PC Gamer nbsp notes There was a separate health bar for damage sustained in the storm and several players could earn a Victory Royale if they survived for long enough Though it s not clear how many Fortnite players there were in China it never officially launched in the country according to analyst Daniel Ahmad Fortnite s nbsp Chinese incarnation was in beta testing for over two years and the government didn t grant Tencent which published the game there a license As such Tencent was unable to monetize Fortnite with in app transactions Engadget has contacted Epic and Tencent for comment Ahmad also pointed out that battle royale titles are quot strictly regulated quot in China The original version of PlayerUnknown s Battlegrounds nbsp had no monetization functions in the country Tencent launched a more patriotic gore free replacement in called Game for Peace to which regulators gave the green light |
2021-11-01 16:50:16 |
海外科学 |
NYT > Science |
Dr. Aaron T. Beck, Developer of Cognitive Therapy, Dies at 100 |
https://www.nytimes.com/2021/11/01/health/dr-aaron-t-beck-dead.html
|
Dr Aaron T Beck Developer of Cognitive Therapy Dies at It was an answer to Freudian analysis a pragmatic thought monitoring approach to treating anxiety depression and other mental disorders and it changed psychiatry |
2021-11-01 16:43:28 |
金融 |
◇◇ 保険デイリーニュース ◇◇(損保担当者必携!) |
保険デイリーニュース(11/02) |
http://www.yanaharu.com/ins/?p=4757
|
金融サービス |
2021-11-01 16:01:45 |
金融 |
金融庁ホームページ |
認定金融サービス仲介業協会の認定について公表しました。 |
https://www.fsa.go.jp/news/r3/kinsa/20211101.html
|
金融サービス |
2021-11-01 17:00:00 |
金融 |
金融庁ホームページ |
金融活動作業部会(FATF)による 「暗号資産及び暗号資産交換業者に対するリスクベース・アプローチに関するガイダンス」改訂版について掲載しました。 |
https://www.fsa.go.jp/inter/etc/20211101/20211101.html
|
金融活動作業部会 |
2021-11-01 17:00:00 |
金融 |
金融庁ホームページ |
「トランジション・ファイナンス環境整備検討会(第4回)」を開催します。 |
https://www.fsa.go.jp/news/r3/singi/20211101.html
|
環境 |
2021-11-01 17:00:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
送電業者RTE、脱炭素に向け原発新設を提示 |
https://www.jetro.go.jp/biznews/2021/11/aa9525e0769ddca5.html
|
送電 |
2021-11-01 16:50:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
化学大手ソルベイ、2050年までのカーボンニュートラル実現へ投資計画発表 |
https://www.jetro.go.jp/biznews/2021/11/1d88e4e4019aec33.html
|
計画 |
2021-11-01 16:40:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
米ロサンゼルス市、ベーシックインカム実証実験開始、約3,200世帯に毎月1,000ドル支給 |
https://www.jetro.go.jp/biznews/2021/11/c4aea7e99893bd89.html
|
実証実験 |
2021-11-01 16:30:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
世界銀行、アフリカの2021年の経済成長見通しを3.3%に引き上げ |
https://www.jetro.go.jp/biznews/2021/11/73b366edef948d1f.html
|
引き上げ |
2021-11-01 16:20:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
LGエレクトロニクス、第3四半期の売上高が過去最大に |
https://www.jetro.go.jp/biznews/2021/11/76e321f371f018bc.html
|
過去 |
2021-11-01 16:10:00 |
ニュース |
BBC News - Home |
David Fuller: Double murder accused abused corpses, court told |
https://www.bbc.co.uk/news/uk-england-kent-59102068?at_medium=RSS&at_campaign=KARANGA
|
murder |
2021-11-01 16:26:35 |
ニュース |
BBC News - Home |
COP26: David Attenborough says world is looking to leaders |
https://www.bbc.co.uk/news/world-59125138?at_medium=RSS&at_campaign=KARANGA
|
people |
2021-11-01 16:45:52 |
ニュース |
BBC News - Home |
COP26: Thunberg tells Glasgow protest politicians are pretending |
https://www.bbc.co.uk/news/uk-scotland-glasgow-west-59116611?at_medium=RSS&at_campaign=KARANGA
|
leaders |
2021-11-01 16:41:01 |
ニュース |
BBC News - Home |
Treorchy Chinese takeaway death: Man admits killing but denies murder |
https://www.bbc.co.uk/news/uk-wales-59119113?at_medium=RSS&at_campaign=KARANGA
|
jiang |
2021-11-01 16:02:30 |
ニュース |
BBC News - Home |
T20 World Cup - England v Sri Lanka: Watch best shots of Jos Buttler century |
https://www.bbc.co.uk/sport/av/cricket/59123489?at_medium=RSS&at_campaign=KARANGA
|
T World Cup England v Sri Lanka Watch best shots of Jos Buttler centuryWatch the best shots of Jos Buttler s maiden international T century for England as he hits an unbeaten from deliveries against Sri Lanka in the T World Cup in Sharjah |
2021-11-01 16:26:13 |
北海道 |
北海道新聞 |
笹生優花6位、渋野日向子35位 女子ゴルフ世界ランキング |
https://www.hokkaido-np.co.jp/article/607004/
|
世界ランキング |
2021-11-02 01:12:00 |
コメント
コメントを投稿