投稿時間:2021-05-15 03:38:32 RSSフィード2021-05-15 03:00 分まとめ(39件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Big Data Blog How Takeda uses the GraphQL API with AWS AppSync to support data scientists https://aws.amazon.com/blogs/big-data/how-takeda-uses-the-graphql-api-with-aws-appsync-to-support-data-scientists/ How Takeda uses the GraphQL API with AWS AppSync to support data scientistsThis is a guest blog post by Michael Song and Rajesh Mikkilineni at Takeda In their own words “Takeda is a global values based R amp D driven biopharmaceutical leader committed to discover and deliver life transforming treatments guided by our commitment to patients our people and the planet Takeda s R amp D data engineering team aspires to build a robust and … 2021-05-14 17:17:34
AWS AWS - Webinar Channel Problem and Incident Management with Scale and Automation in an Enterprise Cloud Environment https://www.youtube.com/watch?v=JOxGvbjckkI Problem and Incident Management with Scale and Automation in an Enterprise Cloud EnvironmentIf an issue or incident arises operational services and processes must react quickly with as minimal human intervention as possible to resolve it before customers are impacted In this episode you will learn about the services and processes enterprises can use to automate issue and incident detection notifications resolution and reporting to prevent future occurrences Learning Objectives Learn how to trigger incidents create notifications and resolve with automation Learn how to track operational issues and automatically remediate them Learn how to automatically report on issues and incidents including root cause analysis data To learn more about the services featured in this workshop please visit 2021-05-14 17:20:22
python Pythonタグが付けられた新着投稿 - Qiita #2 PowerApps アプリ で撮影した画像を FaceAPI で感情分析してみました https://qiita.com/turupon/items/6f771a14aa011052ac23 第回目は、初回で作成した「FaceEmotionBasepy」ローカルプログラムをAzureFunctionsで動作させ、同様の結果が得られることを確認してみます。 2021-05-15 02:20:33
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) webpackerのコンパイルについて https://teratail.com/questions/338379?rss=all webpackerのコンパイルについて前提・実現したいこと環境railsnbspvuenbspAWSecnbspdockerrailsで使うwebpackerを本番環境で起動させたい。 2021-05-15 02:38:11
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) c言語 リスト構造 コンパイルエラー https://teratail.com/questions/338378?rss=all c言語リスト構造コンパイルエラーリスト構造を用いたプログラミングでのコンパイルエラー画面からquotnquotが入力されるまで名前、点数を入力し続け、quotnquotが入力されたら最高点とその名前、最低点と名前を表示するプログラムを作りました。 2021-05-15 02:20:50
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Ruby on Railsの環境構築でエラーが発生 https://teratail.com/questions/338377?rss=all RubyonRailsの環境構築でエラーが発生前提・実現したいこと最近railsを勉強していて、ローカル上で環境構築を行っていた。 2021-05-15 02:17:17
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) laravel8 jetstream inertiaでの共通レイアウト https://teratail.com/questions/338376?rss=all laraveljetstreaminertiaでの共通レイアウトspaで実装する際に共通レイアウトを作成したい今回私はlaravelnbspvuejsを用いてspaを作成しようと考えています。 2021-05-15 02:09:13
海外TECH DEV Community 🔄 C# 9.0 Features and Expectations of C# 10 https://dev.to/dotnetsafer/c-9-0-features-and-expectations-of-c-10-n7c C Features and Expectations of C The latest version of C was officially released with  NET in November These days there are already rumors of the features of the future version C One of the biggest advantages of open source software is being able to see how the project evolves over time as the days go by With this we want to refer to the same C since we can follow its progress on GitHub and see its main news Let s start with the most important features of C Module InitializersIn this latest version of C the ModuleInitializer attribute is used to specify a method that we can invoke before any code in the module the destination method must be static without any type of parameter and returned empty using system using System Runtime CompilerServices class Program static void Main string args Console WriteLine Data Data public static string Data ModuleInitializer public static void Init Data This static method is invoked before any other method in the module Extension GetEnumeratorThe foreach statement normally operates on a variable of type IEnumerator when it contains a definition of any public extension for GetEnumerator This is how we can see it in this example using system using System Collections Generic IEnumerator lt string gt colors new List lt string gt blue red green GetEnumerator foreach var colors in colors Console WriteLine color is my favorite color public static class Extensions public static IEnumerator lt T gt GetEnumerator lt T gt this IEnumerator lt T gt enumerator gt enumerator Covariant Return TypesIn C the return types of override methods are usually much more specific than the declarations in the base type abstract class Weather public abstract Temperature GetTemperature class Spain Weather public override Celsius GetTemperature gt new Celsius class USA Weather public override Farenheit GetTemperature gt ne Farenheit class Temperature class Celsius class Farenheit The GetTemperature method has the return type Temperature the derived class Spain overrides this method and returns a specific type Celsius It is a feature that makes our code more flexible Init AccessorThe init accessor makes immutable objects easier to create and use Point point new X Y Console WriteLine point ToString public record Point public int X get init public int Y get init The init accessor can be used with Structures Registers and Classes The init accessor can be used with Classes Structures and Registers Point point new X Y Point point point with Y Console WriteLine point ToString public record Point public int X get init public int Y get init RecordsNow we have a new type of reference called record that gives us equal value To better understand it we have this example Point point new Console WriteLine point ToString Point point new Console WriteLine point Equals point public record Point public int X get public int Y get public Point int x int y gt X Y x y As we can see the point record is immutable you can greatly simplify the syntax using init accesor since its properties are read only Lambda Discard ParametersThe next C improvement is being able to use discard as an input parameter of a lambda expression in case that parameter is not used C button Click s e gt Message Box Show Button clicked C button Click gt Message Box Show Button clicked It is a feature that also allows us to read the code in a cleaner and more beautiful way Target Typed newAnother very important feature in this latest version of C is the ability to omit the type of a new expression when the object type is explicitly known Let s see a quick and simple example Point point new X Y Console WriteLine point point X point Y public class Point public int X get set public int Y get set It is a very useful feature since it allows you to read the code in a clean way without having to duplicate the type Point point new Console WriteLine point point X point Y public class Point public int X get public int Y get public Point int x int y gt X Y x y Top Level StatementsIn C it is possible to write a top level program after using declarations Here we can see the example using System Console WriteLine Hello World With top level declarations you wouldn t need to declare any space between names main method or class program This new feature can be very useful for programmers just starting out as the compiler does all of these things for you CompilerGenerated internal static class program private static void main string args Console WriteLine Hello World Seeing the new features in C which help make programming much simpler and more intuitive What can we expect in the future version Okay let s talk about the future version What could bring new What would you like me to have What is the possibility of it being added Note that the upcoming features are still debatable and are not certain to appear in C Keep in mind that they are not simply ideas or contributions from the community These features that I am going to mention are being shuffled by its developers And although they are not implemented in the next version today they are being refined so that they come out in future versions of C Let s start File level namespacesAll of us when we started programming in C we have created a Hello World application Knowing this we also know that C uses a block structure for namespaces namespace HelloWorld class Hello static void Main string args System Console WriteLine Hello World The best thing about this is that namespaces can be overlaid very easily simply by nesting blocks In the same way that a single file can contain types in any combination of namespaces and multiple files can share the same namespace between them If we want to scratch the negative part a bit this system adds a bit of indentation if we compare it with bracket languages such as JavaScript or Java The question we ask ourselves at this point is Is it possible to keep that functionality but at the same time reduce excess indentation Yes How is it possible It simply opened that entering namespaces with file scope this would allow to establish a default namespace that would be applied automatically to the entire file eliminating the indentation namespace HelloWorld public class Hello static void Main string args System Console WriteLine Hello World It is normal to only have one file scoped namespace per file so there would be no problem Likewise most C code files do not include more than one namespace If for example we add a namespace block to a file that uses a file scoped namespace a nested namespace is simply created Let s see a quick example namespace Company Product Company Product Componentnamespace Component It is clear that it is not a very big feature but it is preferable that the more improvements there are the easier and more intuitive the task of programming will be Primary constructorsIn the latest released versions of C the topic of boilerplate code has been reduced considerably with features like automatic properties The main improvement of this is not simply reducing the amount of code that is written but reducing the amount of code that has to be read It makes navigating code bases easier and reduces the most common places where errors can occur Primary constructors are a very good implementation that would again reduce the amount of code that is written We can see it with this simple example that has a class that has a constructor and two read only properties public class DataSlice public string DataLabel get public float DataValue get public DataSlice string dataLabel float dataValue DataLabel dataLabel DataValue dataValue What the statistics tell us is that of its classes have constructors and more than of all of them simply do nothing more than copy parameters into properties If you haven t written any kind of constructor code yet don t worry as we can still create and use the class in the same way var adultData new DataSlice Vaccinated adults By using the main constructor property validation is not excluded In the same way its rules can be enforced in a property setter Let s see an example public class DataSlice string dataLabel float dataValue public string DataLabel get gt dataLabel set if value lt throw new ArgumentOutOfRangeException dataLabel value public float DataValue get gt dataValue Other details are also possible calling the base constructor in a derived class adding constructors The main downside to all of this is that the primary constructors could collide with the position registers Raw string literalsWe already know that the ordinary strings that C has tend to be quite messy since they need quotation marks newlines n and backslashes What C offers before this little problem is the use of special characters For example we can prefix a string with and have free rein to add all these details without any problem string path c path backslashes string path c pathh backslashes What the raw string literal string allows is to create new paths to avoid escaping problems Using the delimiter of a series of quotes followed by a line break to start and a line break followed by the same number of quotes to close To understand it more simply I leave you this example below string xml lt part number gt lt name gt year lt name gt lt description gt this is the actual year lt ref part gt year lt ref gt actual year lt description gt lt part gt If your concern is that there is a possibility of a triple quote sequence within the string you can simply extend the delimiter so that you can use all the quotes you want as long as the beginning and end are respected string xml Now is safe to use in your raw string In the same way as strings newlines and whitespace are preserved in a raw string What happens is that the common white space that is the amount that is used to bleed is cut off Let s see more simply with an example lt part number gt lt name gt year lt name gt lt description gt this is the actual year lt ref part gt year lt ref gt actual year lt description gt lt part gt To this lt part number gt lt name gt year lt name gt lt description gt this is the actual year lt ref part gt year lt ref gt actual year lt description gt lt part gt With this I want to explain to you that the raw strings are not intended to replace the strings that you are using right now Rather they are prepared for the specific moments when you need a marked block or arbitrary code and in turn you need a coding approach that is guaranteed to be safe Conclution To finish this article my conclusion is that C still has many years of travel ahead of it and it still has many things to add to make the task of programming even easier and more optimal What do you think 2021-05-14 17:22:35
海外TECH DEV Community What was your win this week? https://dev.to/devteam/what-was-your-win-this-week-7cj What was your win this week Hey there Looking back on your week ーwhat was something you re proud of All wins count ーbig or small Examples of wins include Starting a new projectFixing a tricky bugExploring a new neighborhood in your town or whatever else might spark joy ️Happy Friday 2021-05-14 17:17:42
海外TECH DEV Community Missing Azure REST APIs. Need not Worry https://dev.to/ilyasit83/missing-azure-rest-apis-need-not-worry-36nb Missing Azure REST APIs Need not WorryToday I came across a situation where I had to automate the process of creating and setting up an Azure IoT Central solution entirely using Azure REST APIs and found they are not available or not documented as of May th However you would definitely find AZ CLI commands available finding the REST APIs for the specific action is very simple Azure IoT Central AZ CLI commandsAzure IoT Central REST API referenceThis gap might be fixed when you read this article in the future so I highly recommend to refer the Azure IoT Central REST API reference to check if the APIs are documented The Solution AZ CLI to the rescueLogin to your AZ CLI and set the default subscription az loginaz account set s lt lt subscription name or id gt gt Next fire the respective AZ CLI command that you didn t find the REST API in my case creating a new Azure IoT Central App with the debug argument az iot central app create name myiotcentral resource group rg iotcentral subdomain myiotcentral debugThis will generate a lot of debugging statements but give your attention to the lines where it makes a call to the REST API Refer to the below screenshot So you know how to find the REST APIs of Azure Happy Azure 2021-05-14 17:10:52
海外TECH Engadget Former HTC designer Scott Croyle is reportedly working on Beats at Apple https://www.engadget.com/apple-beats-scott-croyle-htc-report-170050582.html nextbit 2021-05-14 17:00:50
海外科学 BBC News - Science & Environment China prepares to land its Zhurong rover on Mars https://www.bbc.co.uk/news/science-environment-57122914 planet 2021-05-14 17:05:11
ニュース @日本経済新聞 電子版 欧州の高裁、Facebook申し立て却下 米データ移管禁止 https://t.co/Lxo6btWsOf https://twitter.com/nikkei/statuses/1393253989743923200 facebook 2021-05-14 17:16:51
海外ニュース Japan Times latest articles Japan expands and extends emergency measures as cases rise across the nation https://www.japantimes.co.jp/news/2021/05/14/national/state-emergency-expansion-three-prefectures/ Japan expands and extends emergency measures as cases rise across the nationJapan officially adds Hokkaido Okayama and Hiroshima prefectures to the state of emergency now covering Tokyo Osaka and four other prefectures 2021-05-15 03:34:24
海外ニュース Japan Times latest articles Hideki Matsuyama off to lackluster start in first event since Masters triumph https://www.japantimes.co.jp/sports/2021/05/14/more-sports/golf/matsuyama-lackluster-start/ Hideki Matsuyama off to lackluster start in first event since Masters triumphHideki Matsuyama got a warm reception in his first round since winning this year s Masters but had a lackluster start with a five birdie that 2021-05-15 03:15:52
海外ニュース Japan Times latest articles Promoter says Anthony Joshua and Tyson Fury will fight on Aug. 14 in Saudi Arabia https://www.japantimes.co.jp/sports/2021/05/14/more-sports/boxing-2/joshua-fury-fight/ Promoter says Anthony Joshua and Tyson Fury will fight on Aug in Saudi ArabiaBritish rivals Tyson Fury and Anthony Joshua have agreed to stage their world heavyweight unification title fight on Aug in Saudi Arabia promoter Eddie 2021-05-15 02:24:51
ニュース BBC News - Home Covid: Indian variant could disrupt 21 June easing, PM says https://www.bbc.co.uk/news/uk-57122817 covid 2021-05-14 17:47:11
ニュース BBC News - Home Israel-Gaza: Strike collapses building during live BBC report https://www.bbc.co.uk/news/world-middle-east-57114168 adnan 2021-05-14 17:05:35
ニュース BBC News - Home Covid in Scotland: Glasgow and Moray to remain under level 3 restrictions https://www.bbc.co.uk/news/uk-scotland-57115876 glasgow 2021-05-14 17:37:41
ニュース BBC News - Home Edwin Poots is elected DUP leader https://www.bbc.co.uk/news/uk-northern-ireland-57121825 unionist 2021-05-14 17:53:02
ニュース BBC News - Home Covid-19: Second jabs 'accelerated' and Portugal to allow UK tourists https://www.bbc.co.uk/news/uk-57120761 coronavirus 2021-05-14 17:00:53
ニュース BBC News - Home Covid: What's the roadmap for lifting lockdown? https://www.bbc.co.uk/news/explainers-52530518 wales 2021-05-14 17:12:12
ニュース BBC News - Home What are the India, Brazil, South Africa and UK variants? https://www.bbc.co.uk/news/health-55659820 india 2021-05-14 17:02:16
ビジネス ダイヤモンド・オンライン - 新着記事 「TEDで話題の独学術」が断言! 「学校教育が役に立たない」本当の理由とは?【とても読まれた記事】 - ULTRA LEARNING 超・自習法 https://diamond.jp/articles/-/268791 2021-05-15 03:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 アマゾンの”会議”がすごい!「黙読推奨、パワポ禁止、箇条書き資料NG」 - ワークハック大全 https://diamond.jp/articles/-/269006 アマゾンの会議がすごい「黙読推奨、パワポ禁止、箇条書き資料NG」ワークハック大全イギリスからの翻訳書『Google・YouTube・Twitterで働いた僕がまとめたワークハック大全』は、コロナ禍で働き方が見直される中で、有益なアドバイスが満載な冊だ。 2021-05-15 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 「アウトルック作業」の生産性を下げる5つのムダを知っておこう! - アウトルック最速仕事術 https://diamond.jp/articles/-/268294 「アウトルック作業」の生産性を下げるつのムダを知っておこうアウトルック最速仕事術シリーズ累計万部を突破し「ホワイトカラーの労働生産性を劇的に向上させる冊」と大評判の『アウトルック最速仕事術』ダイヤモンド社。 2021-05-15 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 米国株投資で1億円! 51歳でFIREした元金融マンが教える 「米国株元年」 - 英語力・知識ゼロから始める!【エル式】 米国株投資で1億円 https://diamond.jp/articles/-/269649 2021-05-15 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 株で2億円を稼いだ 現役サラリーマンの教え 「身銭を切れ!」 - 10万円から始める! 割安成長株で2億円 https://diamond.jp/articles/-/269456 低リスク 2021-05-15 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【出口治明学長】 なぜ、今、哲学と宗教を 同時に学ぶ必要があるのか? - 哲学と宗教全史 https://diamond.jp/articles/-/270324 2021-05-15 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【志麻さん休日らくらくレシピ】 「伝説の家政婦」志麻さんが教える あると便利な調理器具、 なくていい調理器具! 驚くほど少ない油で カラッと揚がる メンチカツとコロッケの秘密 - 志麻さんのプレミアムな作りおき https://diamond.jp/articles/-/270148 2021-05-15 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 看取りに接する医師と看護師が伝える、 親を看取る前に知っておいてほしいこと - 後悔しない死の迎え方 https://diamond.jp/articles/-/269936 身近 2021-05-15 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 「箇条書き」を見れば、その人の思考レベルがわかる - 超・箇条書き https://diamond.jp/articles/-/270812 箇条書き 2021-05-15 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 【土日に絶対やせる!】 一カ月の在宅ワークで太った! 自粛太りに効果のあったダイエット方法& 効果のなかったダイエット方法まとめ - 医者が絶賛する歩き方 やせる3拍子ウォーク https://diamond.jp/articles/-/270331 開発者は、ウォーキングスペシャリストとして万人を指導してきた山口マユウ氏だ。 2021-05-15 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 相続の「言った・言わない」トラブルに効く最強ツール - ぶっちゃけ相続 https://diamond.jp/articles/-/271090 証明 2021-05-15 02:10:00
北海道 北海道新聞 三島賞に江別出身・乗代雄介さん 「時間と成果認められ自信」 https://www.hokkaido-np.co.jp/article/544028/ 三島由紀夫賞 2021-05-15 02:10:54
北海道 北海道新聞 道内に緊急事態決定 16~31日 専門家主張、政府一転 https://www.hokkaido-np.co.jp/article/543880/ 新型コロナウイルス 2021-05-15 02:14:18
Azure Azure の更新情報 Action Required: Migrate your Azure Blockchain Service data by 10 September 2021 https://azure.microsoft.com/ja-jp/updates/action-required-migrate-your-azure-blockchain-service-data-by-10-september-2021/ consensys 2021-05-14 17:23:01
Azure Azure の更新情報 Public preview of Azure VPN Client for macOS https://azure.microsoft.com/ja-jp/updates/public-preview-of-azure-vpn-client-for-macos/ Public preview of Azure VPN Client for macOSAzure VPN Client for macOS enables customers to utilize features of Azure AD natively such as multi factor authentication Conditional Access and user based policies for their Mac clients 2021-05-14 17:14:01
GCP Cloud Blog Why embedding financial services into digital experiences can generate new revenue https://cloud.google.com/blog/topics/financial-services/embedded-finance-and-apis-can-help-modernize-banks/ Why embedding financial services into digital experiences can generate new revenueFaced with changing customer behaviors and demands tightening margins and increasing threat from digital competitors financial services institutions FSIs will need to meet customers where they are open up their services and establish new ways to monetize their products Doing so will also enable them to build a better profile of their customers and deliver more personalized user experiences and fast convenient banking and payment services Cloud technology plays a big role in this shift toward digital FSIs  In Asia bank branches now account for just to of monthly transactions in the region with customers turning to digital channels for routine transactions such as peer to peer transfers and bill payments according toMcKinsey amp Company Overall customer engagement has climbed from an average to transactions a month in Asia s developed markets and from to in emerging markets Fueled by growing smartphone adoption the evolving customer behavior and momentum toward digital platforms have enabled digital first players to snag a growing piece of the banking pie  McKinsey estimates that digital banking penetration has grown an average of in Asia s developed markets and in emerging markets with between and of those that have yet to use digital banking likely to do so Consumers now are more than ready to make the switch to neobanks or digital banks In Singapore are open to banking with digital only players according to aVisa study On what will entice them to do so point to bill payments while will use neobank services to make payments at retail outlets Furthermore prefer digital banks for the convenience they offer while like the faster service Among those who are open to digital banks will move some services from their current bank to these new players even if the latter have no prior banking experience One in five of respondents say they are willing to switch all services to a neobank The same is true for small and midsize businesses SMBs in Singapore According to a separatesurvey by Visa of these companies will consider moving some services to digital banks Driven to do so by their frustration over a lack of quality corporate products and control of their banking experience of SMBs believe neobanks will help bring down overall banking costs Another say digital banks offer greater convenience while point to greater ease in paying bills online These stats should worry even established FSIs especially those that have not done quite enough to open up their service ecosystems and drive innovation through APIs An API toward new revenueWhile most banks have active APIs the services that some of them currently provide are just functional they re the means to an end for partners to obtain their targeted products and services Without knowing consumers use these types of APIs indirectly by using their favorite applications every dayーa payment processing API will enable them to purchase their lunch while a loan application API will get them that dream home But while banks do not always own the customer journey they still can find opportunities to sell their products via partners Many leading banks are leveraging key technologies such as API management artificial intelligence AI and data analytics to embed digital banking into consumers everyday lives including groceries travel entertainment healthcare and food delivery  When traditional banks open up their APIs to third parties offering broader services that pull in unique services into their own apps they then become plugged into the broader customer journey This helps boost usage of their services and embeds them in the overall customer experience It also provides aggregated data that will help banks build richer consumer profiles and deliver more personalized products and services APIs also create equal opportunities for smaller participants to be involved in the financial services ecosystem potentially creating micro segments that previously may not have existed With insufficient demand within a closed system to justify the provision of such services some customers in these micro segments have previously been left unserved The APIs which facilitate collaboration between the different micro segments so they can be commercially viable help assuage this problem  Some banks are also opening up APIs to allow access to datasets that enable businesses to trigger automated workflows and enhance their operational efficiencies Others such asBank Rakyat Indonesia Bank BRI have generated new revenue by leveragingGoogle Cloud s Apigee to manage their API lifecycle and identify new revenue opportunities Apigee s monetization feature has helped Bank BRI realize million in revenue and enabled the bank to define its pricing based on API calls and automatically bill based on usage In addition the Indonesian bank uses the data analysis alongside Google Maps Platform to score its customer base of million and identify those who can be recruited as BRILink agents for underbanked areas These agents are customers who maintain a minimum balance of USD and score high on reliability The appointment of branchless agents via the Agent BRILink app has pushed the loan volume from the bank s branchless business to billion in up from billion the year before How banks can get started with APIsClearly there are new revenue opportunities for banks to leverage the data they already have Here are some tips to help FSIs kickstart their API journey Align with internal leadership growth initiatives Leverage executive key performance indicators around growth and cost savings to foster a culture that offers APIs to micro segmented markets with an eye on cultivating a healthy financial services ecosystem Productize APIs with a strong value proposition Starting with an API first approach stock the shelves of your API shop with new services and a strong inventory of APIs that will entice third parties i e retailers telcos etc to start using them This customer first outside in approach will serve as a strong base to build on and enable the addition of more APIs as adoption grows Actively nurture a developer community A properly trained API manager will ensure constant contact with the developer community and that partners are provided with case studies to help them identify viable use cases for your APIs Leverage security as a strategic enabler Security is a key enabler of the API economy and most API security postures are defensive By leveraging deep security tooling together with strong identification of developers banks can better track information and data usage offensively  FSIs also need to avoid some common pitfalls such as overlooking the need to continuously improve their APIs If no one is using it the API clearly is failing to provide any real value to third party developers In addition efforts should be made to market the APIs and let developers know what is available A common mistake FSIs make is assuming their work is done once their APIs are released and neglecting the need to carry out community outreach and marketing to generate awareness about the APIs If you are interested in learning more about this topic don t miss our session at the Google Cloud Financial Services Summit on Embedded Finance The Future of Banking McKinsey amp Company “Asia s digital banking race Giving customers what they want Global Banking Practice April Related ArticleHow FFN accelerated their migration to a fully managed database in the cloudSee how Freedom Financial Network migrated a terabyte of data in just hours to fully managed Cloud SQL database service as part of creati Read Article 2021-05-14 17:30: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件)