投稿時間:2020-05-13 07:20:52 RSSフィード2020-05-13 07:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese PS4『マーベル アイアンマンVR』は7月3日発売。棒2本でトニー・スタークなりきりアクション https://japanese.engadget.com/iron-man-vr-211428710.html 年月の発表当初は年後半発売予定でしたが、その後に公表された発売日は後ろ倒しの年月。 2020-05-12 21:14:28
TECH Engadget Japanese 小気味よさがクセになる切削アクション『ソープ◇カット』:発掘!スマホゲーム https://japanese.engadget.com/jp-2020-05-12-soapcutting.html 小気味よさがクセになる切削アクション『ソープカット』発掘スマホゲーム【連載発掘スマホゲーム】星の数ほどあるスマホゲームの中から、話題になっているもの、気になったもの、何か面白そう、そんなタイトルをひたすらご紹介していきます今回ご紹介するのは『ソープカット』です。 2020-05-12 21:05:00
TECH Techable(テッカブル) YouTubeが英語学習ツールに、Chrome拡張機能「Language Learning with YouTube」 https://techable.jp/archives/124072 chrome 2020-05-12 21:00:57
Google カグア!Google Analytics 活用塾:事例や使い方 2020年最新フックおすすめ7選は片付けに鬼便利 https://www.kagua.biz/review/interior/hucksaishin.html 片付け 2020-05-12 21:00:31
python Pythonタグが付けられた新着投稿 - Qiita 【前回記事の補足】Pythonのline-bot-sdkで作ったBotが、Webhook URLのVerifyに失敗する件を調査した https://qiita.com/hiro0236/items/c1d41be73817d0ad5cec ちなみに、私は今から数年前にもJavaのSpringBootでLINEBotを作成しているのですがその際にはこのようにverifyが失敗するというようなことは起こらなかったと記憶しています。 2020-05-13 06:24:49
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) iPadでのtranslate3dが意図しない動きをする. https://teratail.com/questions/261098?rss=all translated 2020-05-13 06:53:35
海外TECH Ars Technica COVID-19 resurges in reopened countries; Wuhan sees first cluster in a month https://arstechnica.com/?p=1675319 covid 2020-05-12 21:22:58
海外TECH DEV Community Writing to Airtable from a Twilio serverless function https://dev.to/twilio/writing-to-airtable-from-a-twilio-serverless-function-52c1 Writing to Airtable from a Twilio serverless functionAirtable is an awesome product It s like a cross between a spreadsheet and a database but with a lot more flexibility for creating dynamic views of your data In this post you ll learn how to write to Airtable from a Twilio application The advantages of doing so are as follows Rapid prototyping If you need to persistently store data it s easier to create an Airtable base than to set up a proper database Maintenance flexibility Folks who don t know how to code can easily maintain and extend the data Seamless authentication Sure you could use Google Sheets as a lightweight database but authenticating with Google Sheets API can be tricky Today we ll be building a Net Promoter Score NPS app that writes data from SMS messages to Airtable NPS is a calculated value summarizing how a group of people feel about something a brand an event whatever That said this code is just a starting point Feel free to customize it for whatever your use case might be PrerequisitesA Twilio account sign up for a free one here and receive an extra when you upgrade your accountA free Airtable accountA Twilio phone number with SMS capabilities Airtable In order to use Airtable you need to be familiar with a few key concepts If you re already an Airtable whiz feel free to skip to the “Writing to Airtable with a serverless function section Bases According to Airtable documentation “A base is a database that contains all of the information you need for a specific project Bases are made up of one or more tables If we re going with the spreadsheet metaphor tables are like different tabs Records are units of data analogous to a row on a spreadsheet Information in records is stored in fields which are kind of like a column on a spreadsheet Workspaces are folders where you can organize your bases so that other folks can collaborate with you To create a new base you can Choose one of Airtable s many official templatesChoose a template created by the Airtable communityStart from scratchI ve created a base called “Net Promoter Score that we ll be working with today You can view it here and create your own copy with the “Copy base button on the right hand side This base contains an “Input table that has fields Number a unique automatically incremented field type The first field in a base is the primary field and must be unique It s kind of like a relational database s primary key Score a number field representing how good or bad the survey responders feel Reason a long text field allowing the survey responders to provide more context on why they feel that way Promoter or Detractor a formula field performing an intermediate calculation that helps us get to our final NPS score A rollup calculation at the bottom of this field gives us our final NPS score Writing to Airtable with a serverless functionFor this project we ll use a Twilio Function for writing data to the Airtable base Open the Functions configuration dashboard Generate an Airtable API key and add it as an environment variable named AIRTABLE API KEY Be careful not to commit your Airtable API key to code that s going up on GitHub or share it with anybody If you do they can gain full access to your Airtable account Go to the Airtable API landing page You ll see links to all your bases Click through on the link to the “Net Promoter Score base On this page you ll see some nifty auto generated API documentation We ll need the unique ID of the Net Promoter Score base so copy that to your clipboard Go back to the Twilio functions dashboard Add the Airtable base ID as an environment variable called AIRTABLE BASE ID While you re at it add the Airtable Node js SDK to the Dependencies section of the Functions configuration dashboard Here we re using version Let s write a Function that given a string and a number writes a new row to our NPS base Using the “Blank template create a new Function called writeNPS Give it a path write nps Copy the following code into it const airtable require airtable const twilio require twilio exports handler function context event callback const base new airtable apiKey context AIRTABLE API KEY base context AIRTABLE BASE ID base Input create fields Reason event reason Score parseInt event numericalScore function error records if error console error error callback error return else callback null Success Uncheck the box that says “Check for valid Twilio signature so we can test this function by running local commands Copy your function URL into the code below and run it from from the command line curl request POST reason You had impeccable can C Apes header Content Type application x www form urlencoded Success What is even happening in this function Let s break it down First we instantiate the Airtable base Then we call the create method to create a new row Although we re only creating one row here this method accepts a list of objects if you want to bulk create The second argument to create is a function allowing us to do some error handling and call the callback to let Twilio know our function is done executing Warning as I found out the hard way Airtable creates empty rows for failed requests me makes an error during Airtable API requestAirtable HEY EVERYONE LOOK AT THIS FAILED REQUESTType issues are another gotcha In the previous code sample we needed to convert strings to numbers for the Score field If not the request will fail because the Score field uses the “Number data type Airtable offers automatic type coercion that you can enable if you want to live dangerously Then again we re using JavaScript here which already has a bunch of weird type coercion edge cases so YOLO To enable type conversion pass the typecast parameter in to the create method like so base Input create fields Reason event reason Score event numericalScore typecast true function error records To test this you can run the same cURL command you ran previously since the inputs to the function haven t changed Airtable also has methods for updating and deleting records though they aren t super applicable for our use case Check out the Airtable API documentation for details Adding a Twilio Studio flow for Net Promoter ScoreTwilio Studio is the fastest way to get multi step messaging flows up and running To save time you can copy my flow by importing the following JSON into Studio Before importing you ll need to replace the example com URL with the URL of the function you just wrote description NPS Survey states name Trigger type trigger transitions next NPS Numerical Score event incomingMessage event incomingCall event incomingRequest properties offset x y name NPS Numerical Score type send and wait for reply transitions next NPS Text Reason event incomingMessage event timeout event deliveryFailure properties offset x y service trigger message InstanceSid channel trigger message ChannelSid from flow channel address body On a scale of how likely are you to recommend this event to a friend timeout name send thanks type send message transitions event sent event failed properties offset x y service trigger message InstanceSid channel trigger message ChannelSid from flow channel address to contact channel address body Thank you so much for the feedback and most importantly for participating in the event name NPS Text Reason type send and wait for reply transitions next write data event incomingMessage event timeout event deliveryFailure properties offset x y service trigger message InstanceSid channel trigger message ChannelSid from flow channel address body What s your primary reason for giving that score timeout name write data type make http request transitions next send thanks event success event failed properties offset x y method POST content type application x www form urlencoded charset utf parameters value widgets NPS Numerical Score inbound Body key numericalScore value widgets NPS Text Reason inbound Body key reason url initial state Trigger flags allow concurrent calls true After you ve imported the Studio flow hook it up to your Twilio phone number Conclusion writing to an Airtable base from your Twilio appIn this post you ve learned to Write data to an Airtable base with a serverless functionImport a Twilio Studio flow that performs a NPS surveyIf you want to learn more about Airtable check out this post about how to read Airtable data from a Twilio Function In the meantime hit me up on Twitter or over email tthurium at twilio dot com if you have any questions 2020-05-12 21:25:44
Apple AppleInsider - Frontpage News Sofia Coppola to adapt novel 'The Custom of the Country' for Apple TV+ https://appleinsider.com/articles/20/05/12/sofia-coppola-to-adapt-novel-the-custom-of-the-country-for-apple-tv Sofia Coppola to adapt novel x The Custom of the Country x for Apple TV Screenwriter director and producer Sofia Coppola is reportedly developing an adaptation of the Edith Wharton novel quot The Custom of the Country quot for Apple TV 2020-05-12 21:56:04
Apple AppleInsider - Frontpage News Lawsuit alleges unauthorized use of song in Apple TV+ series 'Amazing Stories' https://appleinsider.com/articles/20/05/12/lawsuit-alleges-unauthorized-use-of-song-in-apple-tv-series-amazing-stories Lawsuit alleges unauthorized use of song in Apple TV series x Amazing Stories x Apple and its Apple TV production partners have been hit with a lawsuit alleging that the group used a copyrighted song in an original series without first obtaining proper permissions from the rights holder 2020-05-12 21:47:35
海外TECH Engadget Facebook will pay content moderators $52 million in PTSD settlement https://www.engadget.com/facebook-content-moderators-lawsuit-settlement-212601146.html Facebook will pay content moderators million in PTSD settlementFacebook has agreed to pay current and former content moderators in the US at least each as part of a million settlement The Verge reports The moderators who are based in the US will receive the payments as compensation for ment 2020-05-12 21:26:01
海外TECH Engadget Google's whole-home Nest Aware subscription is available now https://www.engadget.com/google-whole-home-nest-aware-available-210050437.html Google x s whole home Nest Aware subscription is available nowGoogle s streamlined Nest Aware service is finally rolling out in markets several months after it was first announced As of this week you can now pay per year or per month to provide days of event video history for all your Nest secu 2020-05-12 21:00:50
海外TECH Network World COVID-19: Weekly health check of ISPs, cloud providers and conferencing services https://www.networkworld.com/article/3534130/covid-19-weekly-health-check-of-isps-cloud-providers-and-conferencing-services.html#tk.rss_all COVID Weekly health check of ISPs cloud providers and conferencing services As COVID continues to spread forcing employees to work from home the services of ISPs cloud providers and conferencing services a k a unified communications as a service UCaaS providers are experiencing increased traffic ThousandEyes is monitoring how these increases affect outages and the performance challenges these providers undergo It will provide Network World a roundup of interesting events of the week in the delivery of these services and Network World will provide a summary here Stop back next week for another update and see more details here To read this article in full please click here 2020-05-12 21:39:00
海外科学 NYT > Science Coronavirus Live News: Updates and Analysis https://www.nytimes.com/2020/05/12/us/coronavirus-live-news-updates.html fauci 2020-05-12 21:53:52
海外科学 NYT > Science Global Coronavirus Tracker: India, Germany, U.K. https://www.nytimes.com/2020/05/12/world/coronavirus-global-live-news.html Global Coronavirus Tracker India Germany U K Nations are loosening rules but new clusters in places that seemed to have tamed the virus show how hard success is to sustain In Wuhan a seemingly small cluster led to a giant response ーtests for the entire city 2020-05-12 21:50:54
ニュース BBC News - Home Maria Branyas: 'Oldest woman in Spain' beats coronavirus at 113 https://www.bbc.co.uk/news/world-europe-52641659 symptoms 2020-05-12 21:11:43
TECH ロイター: テクノロジー 米ツイッター、一部従業員の無期限在宅業務を容認 http://feeds.reuters.com/~r/reuters/JPTechnologyNews/~3/Jm_2-6JXy2I/health-coronavirus-twitter-idJPKBN22O36L 発表 2020-05-13 06:23:52
LifeHuck ライフハッカー[日本版] 老後破産が確実な人は意外に多い。フリーで働くためのお金の超基本 https://www.lifehacker.jp/2020/05/book_to_read-533.html 横山光昭 2020-05-13 06:30:00
サブカルネタ ラーブロ ラーメン二郎 京急川崎店 〜超久二郎〜 http://feedproxy.google.com/~r/rablo/~3/cKw3memMc_I/single_feed.php 二郎さん 2020-05-12 22:33:00
北海道 北海道新聞 NY円、107円前半 https://www.hokkaido-np.co.jp/article/420403/ 外国為替市場 2020-05-13 06:40:00
北海道 北海道新聞 「コロナ乗じ中国が台湾に圧力」 米議会の諮問機関が報告書公表 https://www.hokkaido-np.co.jp/article/420402/ 調査委員会 2020-05-13 06:40:00
北海道 北海道新聞 米大統領の財務記録開示を審理 連邦最高裁、選挙戦中に判断 https://www.hokkaido-np.co.jp/article/420401/ 米大統領 2020-05-13 06:39:00
北海道 北海道新聞 新型コロナ死者、29万人超す 増加ペース、依然衰えず https://www.hokkaido-np.co.jp/article/420399/ 集計 2020-05-13 06:09:00
北海道 北海道新聞 河井前法相、買収容疑で立件へ 検察、1千万円前後配布 https://www.hokkaido-np.co.jp/article/420398/ 広島選挙区 2020-05-13 06:09:00
ビジネス 東洋経済オンライン 新自由主義は「上から下への階級闘争」だった 「2つの階級の分断」をあらわにしたコロナ禍 | リーダーシップ・教養・資格・スキル | 東洋経済オンライン https://toyokeizai.net/articles/-/346023?utm_source=rss&utm_medium=http&utm_campaign=link_back 新自由主義 2020-05-13 06:20:00
ビジネス 東洋経済オンライン パレスホテル、トップが語る「脱・丸の内」の秘策 新ブランド展開しM&Aも視野、非丸の内50%へ | コロナショック、企業の針路 | 東洋経済オンライン https://toyokeizai.net/articles/-/349142?utm_source=rss&utm_medium=http&utm_campaign=link_back 東京都内 2020-05-13 06:15:00
ビジネス 東洋経済オンライン グローバル経済から中国を分離すべき根本理由 コロナ危機後に「世界最高の知性」が訴える | 外交・国際政治 | 東洋経済オンライン https://toyokeizai.net/articles/-/347402?utm_source=rss&utm_medium=http&utm_campaign=link_back 国際秩序 2020-05-13 06:10:00
Azure Azure の更新情報 Azure Monitor Logs Agent for Linux May 2020 release now available https://azure.microsoft.com/ja-jp/updates/log-analytics-agent-for-linux-may-2020-release-now-available/ linux 2020-05-12 21:00:24

コメント

このブログの人気の投稿

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

投稿時間:2024-02-12 22:08:06 RSSフィード2024-02-12 22:00分まとめ(7件)