投稿時間:2020-05-29 05:37:48 RSSフィード2020-05-29 05:00 分まとめ(37件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS News Blog Single Sign-On between Okta Universal Directory and AWS https://aws.amazon.com/blogs/aws/single-sign-on-between-okta-universal-directory-and-aws/ Single Sign On between Okta Universal Directory and AWSEnterprises adopting the AWS Cloud want to effectively manage identities Having one central place to manage identities makes it easier to enforce policies to manage access permissions and to reduce the overhead by removing the need to duplicate users and user permissions across multiple identity silos Having a unique identity also simplifies access for all … 2020-05-28 19:32:57
AWS AWS Dominik Safaric, Head of Infrastructure, Styria.AI on Benefits of Using AWS as a Platform https://www.youtube.com/watch?v=vg1CxKTWkcs Dominik Safaric Head of Infrastructure Styria AI on Benefits of Using AWS as a PlatformDominik Safaric Head of Engineering and Infrastructure Styria AI Croatian Media News and Marketplace Solution Provider on benefits of using AWS as a platform and also on why and how serverless and AI ML solutions are important for their business Learn more about AWS at Subscribe More AWS videos More AWS events videos AWS AWSCustomer 2020-05-28 19:56:38
AWS AWS Mark Dekan, Ringier Axel Springer CEO on Benefits of Using AWS as a Platform https://www.youtube.com/watch?v=dbKdFB59YWE Mark Dekan Ringier Axel Springer CEO on Benefits of Using AWS as a PlatformMark Dekan Ringier Axel Springer CEO leading digital publisher in Central and Eastern Europe on how technology impacts media on why they have decided to go all in on AWS and on the benefits of using AWS as a platform Learn more about AWS at Subscribe More AWS videos More AWS events videos AWS AWSCustomer 2020-05-28 19:55:22
AWS AWS - Webinar Channel Build and Collaborate Faster Using Amazon SageMaker Notebooks - AWS Online Tech Talks https://www.youtube.com/watch?v=Sh6pDAKDPgw Build and Collaborate Faster Using Amazon SageMaker Notebooks AWS Online Tech TalksManaging compute instances to view run or share a notebook is very tedious To overcome this challenge you can use Amazon SageMaker Notebooks Amazon SageMaker Notebooks provide one click Jupyter notebooks that can be spun up quickly and since the underlying compute resources are fully elastic so you can easily dial up or down the available resources Compute resources are provisioned automatically in the background so your work is not interrupted Also SageMaker enables you to easily share notebooks with others Your colleagues will get the exact same notebook saved in the same place Join us for this tech talk as we explain these features in detail Plus watch a demo so you can start building models faster Learning Objectives Understand how to use Amazon SageMaker Notebooks See how to use pre built notebooks Learn how you can bring your own notebook to SageMaker To learn more about the services featured in this talk please visit 2020-05-28 19:28:16
Ruby Rubyタグが付けられた新着投稿 - Qiita type: :mailer以外のrspecだとActionMailer::Base.deliveriesが空っぽ https://qiita.com/rh_taro/items/e723dde6b952e4632487 2020-05-29 04:27:50
Docker dockerタグが付けられた新着投稿 - Qiita Docker for Mac の Mutagen-based cachingを使ったらホスト側のファイルの変更が反映されなくなった https://qiita.com/rh_taro/items/0d5bbd37dccdf5194c2c 2020-05-29 04:12:14
Ruby Railsタグが付けられた新着投稿 - Qiita type: :mailer以外のrspecだとActionMailer::Base.deliveriesが空っぽ https://qiita.com/rh_taro/items/e723dde6b952e4632487 2020-05-29 04:27:50
Ruby Railsタグが付けられた新着投稿 - Qiita Docker for Mac の Mutagen-based cachingを使ったらホスト側のファイルの変更が反映されなくなった https://qiita.com/rh_taro/items/0d5bbd37dccdf5194c2c 2020-05-29 04:12:14
海外TECH DEV Community Destination Heroku https://dev.to/heroku/destination-heroku-48ge Destination HerokuIn the Moving Away From AWS and Onto Heroku article I provided an introduction of the application I wanted to migrate from Amazon s popular AWS solution to Heroku While AWS is certainly meeting the needs of my customer my mother in law I am hoping for a solution that allows my limited time to be focused on providing business solutions instead of getting up to speed with DevOps processes Quick RecapAs a TL DR too long didn t read to the original article I built an Angular client and a Java API for the small business owned by my mother in law After a year of running the application on Elastic Beanstalk and S I wanted to see if there was a better solution that would allow me to focus more on writing features and enhancements and not have to worry about learning understanding and executing DevOps like aspects inherent within the AWS ecosystem Creating a New AccountThe first thing I needed to do was create a new account at Heroku This process was super simple requiring minimal information to get started Once my account was created and I was logged in I was able to use the Create new app button to officially tip my toes into the metaphorical Heroku pool The new application process asks for a name I selected amhs and a region United States Upon single clicking the Create app button I was redirected back to the Heroku home page With the amhs app now created I am now ready to dive deeper into the process Preparing My Local MachineTo prepare my local MacBook Pro to interact with Heroku I went ahead and used Homebrew to install the Heroku CLI using the following command in Terminal brew install heroku brew herokuOnce installed I issued the following command to allow the Heroku CLI to use my information heroku loginThe login command will interact with your default web browser to complete the authentication process heroku Press any key to open up the browser to login or q to exit Opening browser to Once validated a screen similar to what is listed below will appear The terminal session will include text similar to what is noted below Logging in doneLogged in as name example comAs one might expect git is also required when using the Heroku CLI Because of my other development work I already had git installed but here are instructions on how to install git You can also use brew install git too if Homebrew is an option on your local machine Setting Up the amhs ApplicationOpening the amhs application in Heroku provides the ability to further configure the application The first thing I knew I needed was a database For this project I decided I would utilize MySQL Searching for an add on and using the search string of MySQL provided the following options From some quick research I decided I would stick to a standardized database and selected the ClearDB MySQL option I opted to select the Ignite Free option at this point too Please note you will need to have a credit card on file before you can successfully provision an add on which is used as a method to reliably identify and contact the customer in the event of an issue With the MySQL option in place the amhs screen is updated as shown below It is also possible to use the following command to complete these same steps heroku addons create cleardb igniteThe Heroku CLI actually has a utility to make a copy of an existing MySQL database using the following command heroku addons create cleardb ignite fork mysql user password myhostname com databaseIn this case I decided to set up the database manually and insert some test records which is described in the following section Preparing the DatabaseWith an empty MySQL instance created and running in Heroku the next step is to send the necessary DDL to create the tables However I need to determine the database URL The Heroku CLI has the following command to accomplish this task heroku config app amhsIn which the Heroku CLI responds with something like amhs Config VarsCLEARDB DATABASE URL mysql name password somehost cleardb net heroku someId reconnect trueWith this information I was able to utilize DbVisualizer my SQL tool of choice to set up the expected tables and base configuration data On the Java API side I used the connection information to update the spring datasource values Still in a local mode I restarted the Spring Boot Java API and also a local instance of the Angular application Once logged in I was able to access the system configuration to see the test values I had inserted At this point the Java API is running locally but accessing the new ClearDB database in Heroku Getting the Java API Ready for HerokuWith the Java API now using the ClearDB MySQL database the next step is to update the Spring Boot based API to run in Heroku Since the AMHS application is already in a git repository I only needed to execute the following Heroku CLI command to allow the API to push updates into the amhs application created within Heroku heroku git remote a amhsThe Heroku CLI responded with the following output set git remote heroku to I then validated the remote configuration by issuing the following command git remote vThe git CLI responded with the following information heroku fetch heroku push origin git gitlab com my repo amhs api git fetch origin git gitlab com my repo amhs api git push Next I went ahead and created a Procfile and placed the text file in the root of the AMHS repository The contents were simply web java jar target amhs api jarThe important value is to the right of the target which represents the concatenation of the artifactId and version of the POM for my project With everything ready to go the next step was to check in the changes in my project Since I am working in a branch called feature heroku demo I executed the following command to push my code located in the feature hero demo branch into the Heroku git remote targeting the master branch git push heroku feature heroku demo masterThe Heroku CLI responded with the following information Enumerating objects done Counting objects done Delta compression using up to threadsCompressing objects done Writing objects KiB MiB s done Total delta reused delta remote Compressing source files done remote Building source remote remote gt Java app detectedremote gt Installing JDK doneremote gt Installing Maven doneremote gt Executing Mavenremote mvn DskipTests clean dependency list installremote INFO Scanning for projects remote INFO remote INFO BUILD SUCCESSremote INFO remote INFO Total time sremote INFO Finished at T Zremote INFO remote gt Discovering process typesremote Procfile declares types gt webremote remote gt Compressing remote Done Mremote gt Launching remote Released vremote deployed to Herokuremote remote Verifying deploy done To new branch feature heroku demo gt master Validating the APIReviewing the Heroku Overview screen I can see that my build not only succeeded but the code was deployed as well I was then able to use Postman to issue the following GET request sortDirection asc amp status activeWhich returned a HTTP Status code and the following data id firstName Amy lastName Admin nickName role id name Admin manager null active true created T updated T initials AA id firstName Alice lastName Agent nickName role id name Agent manager id firstName Marty lastName Manager nickName role id name Manager manager null active true created T updated T initials MM active true created T updated T initials AA id firstName Marty lastName Manager nickName role id name Manager manager null active true created T updated T initials MM Next I updated the environment ts file within the Angular client to use the same Java API and I was able to see the same data now with my local Spring Boot Java API no longer running Adding Security and Environment VariablesTo make sure I wasn t dealing with a security issue with Okta integration I had removed the security for the Java API Now I wanted to include the necessary updates to make sure the Java API was secure again At the REST controller level I simply had to include the following annotation PreAuthorize hasAuthority AmhsUser oauth hasScope openid Next I setup the necessary key value pairs in the Heroku configuration for the amhs application Finally I just had to reference these variables in the application yml security oauth client clientId CLIENT ID clientSecret CLIENT SECRET resource tokenInfoUri TOKEN INFO URI spring datasource url CLEARDB DATABASE URL server port PORT While the other values for my application yml are suppressed I did want to include the server port reference too since that is important to keep in mind Now looking at the Overview screen in Heroku you can see the updates that were made To see the logs from the Java API the following command simply needs to be issued heroku logs tailWhich produces the following output T app api Build started by user name example com T heroku web Restarting T heroku web State changed from up to starting T app api Deploy d by user name example com T app api Release v created by user name example com T app web Setting JAVA TOOL OPTIONS defaults based on dyno size Custom settings will override them T app web Picked up JAVA TOOL OPTIONS Xmxm Xssk XX CICompilerCount Dfile encoding UTF T app web T app web AMHS API Running Spring Boot RELEASE Port T app web T app api Build succeeded T app web INFO main com amhs Application Starting Application v on db d ae bcabcf with PID app target amhs api jar started by u in app Seeing that I am running on Spring Boot certainly added a Spring Boot update to my to do list A New Way to Deploy the Java APIOne of the primary reasons I wanted to look into Heroku over continuing to utilize AWS was the ability to focus on the business needs of my customer Working a full time job and performing freelance writing projects does not provide a great deal of extra time for me especially with a toddler in the home Basically I wanted to find a solution that doesn t require much effort to deploy changes for my mother in law to utilize With everything in place the deployment to the amhs app has been reduced to the following git command git push heroku masterWhich is really easy to remember since I typically merge my changes into master ConclusionWhen I look back on my prior instructions for AWS the following steps are no longer required manually building the JAR file for use by Elastic Beanstalknavigation to Elastic Beanstalk UImanually locating and uploading the JAR file created in the steps abovevalidating the versions match pom xml and JAR version manually pushing the Deploy buttonWhile these steps were not exactly painful they did require time on my part to execute each time I wanted to release new code for my mother in law to utilize However with Heroku all I needed to do was execute a simple git command that I am already familiar with using There is also the ability to quickly rollback to an earlier version which I will expand upon in a future article Seems like a win to me Not that cost is a core focus of this experiment but I feel that I should point out that everything that was deployed here will not incur any monthly costs Not bad when you consider less work is required for my Heroku solution on a routine basis In the next article I am going to focus on the Angular client and how Heroku can be used instead of AWS S to house the static files used by Angular and the associated libraries Have a really great day 2020-05-28 19:23:42
海外TECH DEV Community Discover content creators using monetized-rss https://dev.to/emma/discover-content-creators-using-monetized-rss-40n1 Discover content creators using monetized rssOne of the recommended ways of approaching web monetization as a content creator is to follow the rule where you create an extra of content that is only viewable to paying users Is it worth investing the time to create that For large well established websites the answer might be yes But for smaller sites your monetized content might be viewed by a very small number of people and it can be hard to justify creating this content at all On the flipside potential users of Coil and in the future other similar services may not yet see the value of spending their money on web monetization Is there enough available content that can justify the price I think both of the above problems are a bit of a chicken and egg situation content creators need Coil users and Coil users need content The solution to this problem is to create a site where users can come to see web monetized content On top of that I wanted to use an existing technology RSS feeds to implement it RSS feeds and web monetization todayRSS feeds are a stripped down version of your site s posts which can be viewable by a third party RSS reader The benefit of this for users is that you can view all the content you want to consume in one place without having to follow a creator s updates on Twitter or refresh their website to see if they ve added a new post Unfortunately today RSS feeds and web monetization don t mix If you re viewing a site s RSS feed you re not going to be able to send micro payments as you do it As a content creator you would also need to take steps to ensure that your monetized content doesn t show up in your site s RSS feed because then you would be giving it away for free The solution put your monetized content on secret RSS feedsFor this hackathon I ve settled on putting web monetized content on a URL that a user would not be able to guess It s not truly private so if someone happens to stumble upon the feed s URL they will be able to view its content The owner of the feed would have to ensure that they keep this URL hidden Content creators use many different services and frameworks to display their content Wordpress Hugo Gatsby and so on and so unfortunately we can t solve this with one plugin alone For this hackathon I have decided to see how we would do this using Gatsby Creating a private RSS feed in GatsbyI web monetized a Gatsby blog and created two RSS feeds a private one with monetized content and a public one without I published a post about it here Setting up web monetization on your Gatsby blog with RSS Emma Goto ・May ・ min read gftwhackathon webmonetization gatsby Creating an RSS readerTo be able to view RSS feeds we re going to need an RSS reader I decided to create a basic one using Blitz js You can read more about how I did that here Building a web monetized RSS reader using Blitz js Emma Goto ・May ・ min read blitzjs gftwhackathon webmonetization Demo Introducing monetized feedHere I ll give a quick run through of how the RSS reader works As this is a very rough proof of concept the UI is fairly minimal and I don t have any sort of account log in system implemented Nonetheless I hope it gets the point across A user would land on the home page and see a list of RSS feeds They would be able to select a feed and see the list of posts If they did not have web monetization set up the posts would not contain any monetized content When a user did have web monetization we would be paying the content creator via their payment pointer and would be showing the monetized content A content creator would be able to submit their public and private RSS URLs to the site plus their payment pointer You can check out the code on Github here emgoto monetized feed monetized feedThis is a demo app to show how we could implement a web monetized RSS reader Getting Startedblitz startOpen http localhost with your browser to see the result Adding a blog with monetized RSS feedsI ve created a test blog at You ll be able to add its two RSS feed on the settings page View on GitHub ConclusionI ve set out to create something during this hackathon that solves three problems Make it more appealing for content creators to create monetized contentMake it more appealing for people to sign up for monetization servicesAllow for viewing of web monetized RSS feedsThe concept of RSS feed monetization is something that we can definitely take a lot further and can be improved upon I d love to hear your thoughts or alternate solutions on how we can solve this problem This is my submission for the Grant For The Web Hackathon for any of the categories Thanks for reading 2020-05-28 19:02:57
Apple AppleInsider - Frontpage News Apple researching audio system that uses speaker airflow for cooling https://appleinsider.com/articles/20/05/28/apple-researching-audio-system-that-uses-speaker-airflow-for-cooling Apple researching audio system that uses speaker airflow for coolingA future version of Apple s HomePod or possibly even a computer could use out of phase speakers for internal component cooling purposes 2020-05-28 19:43:49
Apple AppleInsider - Frontpage News How to upload music to Apple Music with a Mac https://appleinsider.com/articles/20/05/28/how-to-upload-music-to-apple-music-with-a-mac How to upload music to Apple Music with a MacIf you ve ever wondered how to get Apple Music tracks from your Mac to your iPhone iPad or iPod touch or upload your own tracks we ve got a handy guide that teaches you how to do it and sync it to your favorite devices 2020-05-28 19:30:55
海外TECH Engadget Uber sends thousands of Jump e-bikes to the recycling heap https://www.engadget.com/uber-scraps-thousands-of-jump-bikes-193541447.html Uber sends thousands of Jump e bikes to the recycling heapUber has sent thousands of electric bikes to be recycled for scrap as part of handing operations of their Jump e bike division to scooter sharing company Lime The rideshare giant said it would be too difficult to donate these bikes because of safety 2020-05-28 19:35:41
海外TECH Engadget YouTube adds chapters to make video navigation easier https://www.engadget.com/youtube-adds-chapters-make-video-navigation-easier-192029339.html YouTube adds chapters to make video navigation easierYouTube is making it easier to navigate longer videos with its new “chapters feature the video streaming site announced After receiving positive feedback on chapters during a testing period the feature will stay on YouTube permanently as of May 2020-05-28 19:20:29
海外TECH Engadget At last, you can watch early ‘Simpsons’ episodes as intended on Disney+ https://www.engadget.com/disney-plus-simpsons-streaming-4-3-ratio-190542390.html At last you can watch early Simpsons episodes as intended on Disney As promised Simpsons fans can now watch early seasons pre in format on Disney Beginning today users can choose to view those episodes in either or aspect ratios The format won t cut off sight gags like the one above The c 2020-05-28 19:05:42
Cisco Cisco Blog Getting Smart About Smart Net Total Care https://blogs.cisco.com/customerexperience/getting-smart-about-smart-net-total-care Getting Smart About Smart Net Total CareWhether you re new to your role or you re a seasoned IT manager find out how to get the most out of Smart Net Total Care and easily access the resources you need to be successful The post Getting Smart About Smart Net Total Care appeared first on Cisco Blogs 2020-05-28 19:58:12
海外科学 NYT > Science Coronavirus Live Updates: U.S. News on Pandemic https://www.nytimes.com/2020/05/28/us/coronavirus-live-updates.html Coronavirus Live Updates U S News on PandemicMasks become a flash point for businesses with many requiring them ーand a few banning them Cases are still rising in Wisconsin where a court overturned the governor s stay at home order 2020-05-28 19:52:46
海外科学 NYT > Science Live Coronavirus News https://www.nytimes.com/2020/05/28/world/coronavirus-live.html Live Coronavirus NewsAnother infections have been reported in just the last week as the Americas and the Middle East confronted more cases And in Mexico the pandemic is straining a hobbled health care system 2020-05-28 19:30:12
医療系 医療介護 CBnews オープンブック・マネジメントで病院業績を一転-病院経営のための院内データ分析・活用講座(13) https://www.cbnews.jp/news/entry/20200526191717 横浜市立大 2020-05-29 05:00:00
海外ニュース Japan Times latest articles The state of emergency is lifted: What’s next? https://www.japantimes.co.jp/opinion/2020/05/28/editorials/state-emergency-lifted-whats-next/ Detail Nothing 2020-05-29 04:05:13
ニュース BBC News - Home Coronavirus: Lockdown easing to allow groups of six to meet https://www.bbc.co.uk/news/uk-52839182 england 2020-05-28 19:47:48
ニュース BBC News - Home Dominic Cummings 'might have broken lockdown rules' - police https://www.bbc.co.uk/news/uk-politics-52835982 advisers 2020-05-28 19:00:24
ニュース BBC News - Home Coronavirus: UK's tenth - and maybe last - clap for carers https://www.bbc.co.uk/news/uk-52842002 tenth 2020-05-28 19:31:00
ニュース BBC News - Home Coronavirus: Is this the final hurrah for clap for carers? https://www.bbc.co.uk/news/uk-52818869 event 2020-05-28 19:20:02
ビジネス ダイヤモンド・オンライン - 新着記事 新海誠監督の作品にも影響、雑誌『ムー』が40年間愛される理由 - 週末はこれを読め! https://diamond.jp/articles/-/238696 新海誠監督 2020-05-29 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 コロナ後の米国で「ニューディール政策」再来か?大きな政府の向かう先 - みずほ安井のHELP!アメリカ政治経済 https://diamond.jp/articles/-/238792 大きな政府 2020-05-29 04:52:00
ビジネス ダイヤモンド・オンライン - 新着記事 いつの間にか国会で審議中、福祉の責任を住民に押し付ける法案の罠 - 生活保護のリアル~私たちの明日は? みわよしこ https://diamond.jp/articles/-/238695 共生社会 2020-05-29 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 コロナでボーナス減でも慌てない!保険料を猶予してもらえる特別措置とは - 知らないと損する!医療費の裏ワザと落とし穴 https://diamond.jp/articles/-/238694 コロナでボーナス減でも慌てない保険料を猶予してもらえる特別措置とは知らないと損する医療費の裏ワザと落とし穴コロナ感染防止のための外出自粛や施設への休業要請は、日本経済に大打撃を与えた。 2020-05-29 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 PPKを目指すために必要なこと - オヤジの幸福論 https://diamond.jp/articles/-/237006 2020-05-29 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 日本株が避難先に、コロナ危機どう転んでも - WSJ PickUp https://diamond.jp/articles/-/238742 wsjpickup 2020-05-29 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 コロナ禍の就職活動をスムーズに進めるには - 絶対内定 https://diamond.jp/articles/-/238439 コロナ禍の就職活動をスムーズに進めるには絶対内定新型ウイルスの影響で、年卒の就活生を取り巻く環境は激変している。 2020-05-29 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 経済再開する欧州、企業買収は「お断り」 - WSJ PickUp https://diamond.jp/articles/-/238743 wsjpickup 2020-05-29 04:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 HSP専門カウンセラーが教える「刺激過多のサイン」と「アウトプット」 - 「繊細さん」の幸せリスト https://diamond.jp/articles/-/237676 HSP専門カウンセラーが教える「刺激過多のサイン」と「アウトプット」「繊細さん」の幸せリスト『世界一受けたい授業』など多数のメディアで話題のHSPHighlySensitivePersonとても敏感な人専門カウンセラーが「繊細な感性を持つからこそ」深く味わえる幸せを紹介する『今日も明日も「いいこと」がみつかる「繊細さん」の幸せリスト』がついに発売本連載では同書より「繊細さん」が幸せをふやすためのコツをご紹介します。 2020-05-29 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 米国の株価は何度も危機を 乗り越えて上がり続けてきた - 教養としての投資 https://diamond.jp/articles/-/235722 しかしその思想では、もう未来がないのです。 2020-05-29 04:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 安倍内閣の支持率が急落、検察人事で官僚支配にも綻び - 永田町ライヴ! https://diamond.jp/articles/-/238713 安倍内閣 2020-05-29 04:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 僕たちは、「急ぎすぎた世界の過ち」をチャンスに変えられるか?――ポケットマルシェCEO高橋博之氏・特別インタビュー【後編】 - 共感資本社会を生きる https://diamond.jp/articles/-/238371 不確実性 2020-05-29 04:05:00
北海道 北海道新聞 小説版「鬼滅」が1、2位 日販の上半期ランキング https://www.hokkaido-np.co.jp/article/425353/ 出版取次 2020-05-29 04:02: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件)