投稿時間:2022-04-13 01:36:36 RSSフィード2022-04-13 01:00 分まとめ(39件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Big Data Blog Accelerate Snowflake to Amazon Redshift migration using AWS Schema Conversion Tool https://aws.amazon.com/blogs/big-data/accelerate-snowflake-to-amazon-redshift-migration-using-aws-schema-conversion-tool/ Accelerate Snowflake to Amazon Redshift migration using AWS Schema Conversion ToolAmazon Redshift is a fully managed petabyte scale data warehouse service in the cloud You can start with just a few hundred gigabytes of data and scale to a petabyte or more This enables you to use your data to acquire new insights for your business and customers Today tens of thousands of AWS customersーfrom Fortune … 2022-04-12 15:39:06
python Pythonタグが付けられた新着投稿 - Qiita 15byteより小さいファイルをゴミとして特定のディレクトリへ移動する。 https://qiita.com/akkiii/items/9915c0207732b4cd0dd5 urnospathgetsizefileltfor 2022-04-13 00:42:43
js JavaScriptタグが付けられた新着投稿 - Qiita TypeScriptの基本の型 https://qiita.com/suguru-3u/items/58a19bd70866dba871c1 typescript 2022-04-13 00:02:51
Git Gitタグが付けられた新着投稿 - Qiita Gitリポジトリに誰がコミットしているか調べる https://qiita.com/ichylinux/items/44a77c9b660369a2b028 gitshortlogsne 2022-04-13 00:13:19
海外TECH MakeUseOf How to Add a Keyboard Shortcut to Turn Dark Mode On and Off in Windows 11 https://www.makeuseof.com/windows-11-enable-disable-dark-mode-keyboard-shortcut/ How to Add a Keyboard Shortcut to Turn Dark Mode On and Off in Windows Want to quickly swap between light and dark mode on Windows Here s how to create a keyboard shortcut that does just that 2022-04-12 15:15:14
海外TECH DEV Community 3 amazing developer tools you have not been using yet https://dev.to/kavyargb/3-amazing-developer-tools-you-have-not-been-using-yet-4ef7 amazing developer tools you have not been using yetOne of the most important lessons I ve ever learnt as a developer is to work smarter and and not harder and one of the best ways to live by that rule is to use tools that make you more productive and simplify your life today we ll look at three different tools that I use There are some tools which I use in my day to day life that I really Enjoy Bundle PhobiaThis is an web application that allows you to determine how much an NPM Package will add to your total bundle size if you re working with modern front end framework you want to try and keep the bundle size as low as possible to optimize the initial page loading speed for new users Bundle Phobia makes it very easy to analyse the addition of a new dependency to your project Just Enter The Package Name then it would tell you the bundle size and download time You can even upload your own package It also has JSON to see all of your dependencies ranked by size CloudcraftAnother web app that will help you design and budget your cloud infrastructure called cloud craft it s currently only available for AWS but even though I mostly use GCP I still find it useful it provides a very intuitive drag and drop interface that allows you to connect different cloud infrastructure services together not only is this great for planning but it s also great for budgeting once you have your infrastructure in place you can go to the budget tab and it will give you an estimated breakdown of your total cost and because all the major clouds have similar pricing models the actual results will translate pretty well to Azure and GCP Figmawhich is probably the most well known app on this list but I m a longtime Adobe Illustrator user so for me to switch to figma means it has to offer at least times more value than illustrator and it actually delivers on that in a variety of ways first of all figma is a design tool that allows you to draw graphics create mock ups for your apps and while it provides a desktop app it also provides a web app that s just as good and it achieves such amazing performance by using webassembly it seems kind of crazy but I m Way more productive in the figma web app than I am in the adobe illustrator desktop app and it s completely free for my graphic design needs and because it s web based can open up my project on any machine and all my files will be there immediately without any effort but aside from that It s also just a really well designed piece of software it s similar to sketch in the sense that it gives you all the things that you need and want and none of the crap that you don t and it has some superpowers if you re an app developer for example you can lock up different events that happen on the elements and then you can even export your styles as CSS or as Android or iOS styles I ve been consistently impressed with figma across the board and I really feel like I should be paying them more than zero dollars a month to be using this thing but there are times when a full blown design tool is more than you actually need 2022-04-12 15:52:46
海外TECH DEV Community Build a Map Application on AWS in 10 Steps https://dev.to/aspittel/build-a-map-application-on-aws-in-10-steps-3ofa Build a Map Application on AWS in StepsLast week the team I work on at AWS Amplify launched new map UI components I wanted to take this opportunity to show what you can build using Amplify Geo and Amplify Studio together I m an avid hiker and AllTrails is one of my favorite sites I duplicated a very very small portion of their UI for this tutorial Create a new Studio InstanceHead to the Amplify Console and select build a new app Once your Studio instance is deployed click Launch Studio Create your data modelOnce you re in Studio click Data under Set up on the lefthand navigation Add one model Hike Add the fields name difficulty location lat long length time and coverImage lat long and length should be floats all other fields should be strings Once you ve implemented your data model click Save and Deploy Now go to the Content tab under Manage and add a few hikes You can find the latitude and longitude by Googling trail name lat and long Enable authOnce your data model is done deploying go to Authentication under Set up Then deploy the default authentication mode We won t implement a full sign in flow though you can learn about how to here we will just need auth enabled to enable mapping Change UI components in FigmaHead to the AWS Amplify UI Kit Duplicate the Figma file to your account and then head to the My Components page You ll see a CardB card which we will modify for our app Round the card corners by adding a border radius to the card and the top corners of the image Copy a small button from the Primitives page and paste it onto the card Change what s currently an address into three separate text fields the middle one being a dot character When you re done your card should look similar to the above I also deleted the components I m not using Figma to CodeThen back in Studio head to the UI Library page Click Get Started and paste in the link to your Figma file Then accept all of your components Then click on the CardB component on the UI Library page Then click Configure Once here we ll bind data to our component Click the image then set the src to the hike coverImage Then click the USD and set the label to hike name Set the information about the beds baths sqft to the name of the hike location Set the button label to hike difficulty I also want this element to be a div instead of a button so I ll set the as prop to div I ll set the first text field under that to a concatenated property hike length miles I set the second one to the hike time My final card looks like this I want to display all my hikes in a list so I ll create a collection Click the Create a collection button on the right side I called my collection Hikes Add margin as needed on the right side and I added search and pagination I kept the dataset as is though you can add sorts or filters as desired Setup Local CodeNow we re ready to integrate this list into our app First create a React app npx create react app amplify mapsInstall the Amplify libraries and React components npm i aws amplify aws amplify ui reactRun Amplify pull for your project In Studio on the top right corner you ll see a Local setup instructions link with a unique command for your app Run this in your command line amplify pull appId your app id envName stagingThen configure Amplify within your index js file Add needed importsimport Amplify from aws amplify import config from aws exports import AmplifyProvider from aws amplify ui react import aws amplify ui react styles css Configure AmplifyAmplify configure config use the Amplify Provider component to intialize CSSReactDOM render lt AmplifyProvider gt lt App gt lt AmplifyProvider gt document getElementById root Now go to your App js file and import the Hikes component import Hikes from ui components Replace the body of your App js file with the following function App return lt div className container gt lt Hikes gt lt div gt Now if you run your React server you ll see your list of hikes on the page Add GeoLet s add the map to our application First we ll need to initialize Amplify Geo Run amplify add geo from your command line Answer the ensuing questions with the following Select which capability you want to add Map visualize the geospatial data Provide a name for the Map enter for default Who can access this Map · Authorized and Guest usersAvailable advanced settings Map style amp Map data provider default Streets provided by Esri Do you want to configure advanced settings y N · noNow run amplify push in order to deploy your changes Add a map to your UINow we ll use the Amplify Geo UI components to add a map to the page I ll use Denver s latitude and longitude as the center of my map You also may want to play around with the initial Zoom level import MapView from aws amplify ui react function App return lt div className container gt lt Hikes gt lt MapView initialViewState latitude longitude zoom gt lt div gt Now let s add markers to the map for each hike I ll add a useEffect to query for all of my Hikes Add needed importsimport useEffect useState from react import Hike from models import DataStore from aws amplify at the top of App js pull all the hikes and store them in stateconst hikes setHikes useState useEffect gt const getHikes async gt const hikes await DataStore query Hike setHikes hikes getHikes Now let s loop through the hikes and add a Marker instance for each with its latitude and longitude import Marker from react map gl function App return lt div className container gt lt Hikes gt lt MapView initialViewState latitude longitude zoom gt hikes map hike gt lt Marker latitude hike lat longitude hike long key hike id gt lt MapView gt lt div gt Now your map should look something like this Add popupsNow we have a map with markers on it let s add popups when a marker is clicked on so you can see more info about the hike I ll render the CardB component if the popup is open Import the Popupimport Marker Popup from react map gl function MarkerWithPopup hike latitude longitude const showPopup setShowPopup useState false event listener that toggles whether the popup is displayed const handleMarkerClick originalEvent gt originalEvent stopPropagation setShowPopup true render the marker and the popup render the CardB again within the popup return lt gt lt Marker latitude latitude longitude longitude onClick handleMarkerClick gt showPopup amp amp lt Popup latitude latitude longitude longitude offset bottom onClose gt setShowPopup false maxWidth closeOnMove gt lt CardB hike hike gt lt Popup gt lt gt Change the application to display the MarkerWithPopup instead of just the original marker hikes map hike gt lt MarkerWithPopup latitude hike lat longitude hike long hike hike key hike id gt Add StylingI also added the following CSS to my index css file please forgive the importants They were needed to override the existing styling on the popups import url slnt wght amp display swap container display flex maplibregl popup content mapboxgl popup content background color transparent important box shadow none important border radius none important z index important max width important maplibregl popup close button mapboxgl popup close button color white important font size px important font weight bold Now your app should have working popups when you click on a marker ConclusionIn this tutorial we used Amplify Studio the Amplify CLI and Amplify UI components to build out a map interface If you want to delete the resources used in this tutorial run amplify delete in your CLI I would love to hear your feedback as you build with Amplify especially since Studio is still in developer preview at the time of this writing 2022-04-12 15:52:32
海外TECH DEV Community 28 Free HTML Bootstrap 5 Landing Page Templates for Education, Real Estate, Web Agency and more https://dev.to/rarestoma/28-free-html-bootstrap-5-landing-page-templates-for-education-real-estate-web-agency-and-more-1434 Free HTML Bootstrap Landing Page Templates for Education Real Estate Web Agency and moreHi everyone In the past month I created free landing page templates using Loopple editor These templates include real life examples such as Trip Planner Website Fashion Retailer Website Food Delivery Landing Page and so on All examples are fully responsive on any device and can be edited easily using the Loopple builder See Templates ️See Github Repo Here is a list with the templates categories EducationBloggingClassifieds AdsCoachingCorporate BusinessBasicE commerceFarm and AgricultureHospitalMedicalMobile AppPersonal WebsiteReal EstateWeb AgencyWeb ElementsWeb HostingWeddingPlease let me know what you think Also if you have any idea of a template that you would like to see feel free to comment here 2022-04-12 15:45:24
海外TECH DEV Community Thoroughly understand Events in Kubernetes https://dev.to/zhangjintao/thoroughly-understand-events-in-kubernetes-29lj Thoroughly understand Events in KubernetesHi everyone this is Jintao Zhang Before I wrote an article A More Elegant Kubernetes Cluster Event Measurement Scheme using Jaeger to use tracing to collect events in the Kubernetes cluster and display it The final effect is as follows When I wrote that article I set up a flag to introduce the principles in detail I have been pigeoning for a long time Now it s the end of the year and it s time to send it out Eents overviewLet s first make a simple example to see what events in a Kubernetes cluster are Create a new namespace called moelove and then create a deployment called redis in it Next look at all events in this namespace MoeLove ➜kubectl create ns moelovenamespace moelove created MoeLove ➜kubectl n moelove create deployment redis image ghcr io moelove redis alpine deployment apps redis created MoeLove ➜kubectl n moelove get deployNAME READY UP TO DATE AVAILABLE AGEredis s MoeLove ➜kubectl n moelove get eventsLAST SEEN TYPE REASON OBJECT MESSAGEs Normal Scheduled pod redis dbc vmr Successfully assigned moelove redis dbc vmr to kind workers Normal Pulling pod redis dbc vmr Pulling image ghcr io moelove redis alpine s Normal Pulled pod redis dbc vmr Successfully pulled image ghcr io moelove redis alpine in ss Normal Created pod redis dbc vmr Created container rediss Normal Started pod redis dbc vmr Started container rediss Normal SuccessfulCreate replicaset redis dbc Created pod redis dbc vmrs Normal ScalingReplicaSet deployment redis Scaled up replica set redis dbc to But we will find that by default kubectl get events is not arranged in the order in which the events occur so we often need to add the sort by metadata creationTimestamp parameter to it so that its output can be arranged in time This is why Kubernetes adds kubectl alpha events command in v version I have made a detailed introduction in the previous article so I won t expand it here After sorting by time you can see the following results MoeLove ➜kubectl n moelove get events sort by metadata creationTimestamp LAST SEEN TYPE REASON OBJECT MESSAGEms Normal Scheduled pod redis dbc vmr Successfully assigned moelove redis dbc vmr to kind workerms Normal SuccessfulCreate replicaset redis dbc Created pod redis dbc vmrms Normal ScalingReplicaSet deployment redis Scaled up replica set redis dbc to ms Normal Pulling pod redis dbc vmr Pulling image ghcr io moelove redis alpine ms Normal Pulled pod redis dbc vmr Successfully pulled image ghcr io moelove redis alpine in sms Normal Created pod redis dbc vmr Created container redisms Normal Started pod redis dbc vmr Started container redisThrough the above operations we can find that events is actually a resource in the Kubernetes cluster When the resource status in the Kubernetes cluster changes new events can be generated In depth Events Single Event objectSince events is a resource in a Kubernetes cluster its metadata name should contain its name under normal circumstances for individual operations So we can use the following command to output its name MoeLove ➜kubectl n moelove get events sort by metadata creationTimestamp o jsonpath range items metadata name n end redis dbc vmr cfbbdecdredis dbccfbbdebcredis cfbbdebfredis dbc vmr cfbbfaabredis dbc vmr cfbdecaeffredis dbc vmr cfbddaredis dbc vmr cfbdbecSelect any one of the event records and output it in YAML format for viewing MoeLove ➜kubectl n moelove get events redis dbc vmr cfbbdecd o yamlaction BindingapiVersion veventTime T Z firstTimestamp nullinvolvedObject apiVersion v kind Pod name redis dbc vmr namespace moelove resourceVersion uid b b cc bfcaakind EventlastTimestamp nullmessage Successfully assigned moelove redis dbc vmr to kind workermetadata creationTimestamp T Z name redis dbc vmr cfbbdecd namespace moelove resourceVersion uid ec b eadcdbreason ScheduledreportingComponent default schedulerreportingInstance default scheduler kind control planesource type NormalYou can see that it contains a lot of information we will not expand it here Let s look at another example Events in kubectl describedescribe on the Deployment object and the Pod object respectively and the following results can be obtained the intermediate output is omitted Operations on Deployment MoeLove ➜kubectl n moelove describe deploy redis Name redisNamespace moelove Events Type Reason Age From Message Normal ScalingReplicaSet m deployment controller Scaled up replica set redis dbc to Operate on Pod MoeLove ➜kubectl n moelove describe pods redis dbc vmrName redis dbc vmr Namespace moelovePriority Events Type Reason Age From Message Normal Scheduled m default scheduler Successfully assigned moelove redis dbc vmr to kind worker Normal Pulling m kubelet Pulling image ghcr io moelove redis alpine Normal Pulled m kubelet Successfully pulled image ghcr io moelove redis alpine in s Normal Created m kubelet Created container redis Normal Started m kubelet Started container redisWe can find that when describes different resource objects the contents of events that can be seen are directly related to itself When you describe Deployment you cannot see Pod related Events This shows that Event object that contains information about the resource objects it describes they are directly linked Combining the single Event object we saw earlier we found involvedObject of the resource object associated with the Event Learn more about EventsLet s take a look at the following example creating a Deployment but using a non existing image MoeLove ➜kubectl n moelove create deployment non exist image ghcr io moelove non existdeployment apps non exist created MoeLove ➜kubectl n moelove get podsNAME READY STATUS RESTARTS AGEnon exist dddbdd tnrhd ErrImagePull sredis dbc vmr Running mWe can see that the current Pod is in a state of ErrImagePull View the events in the current namespace I omitted the record of deploy redis before MoeLove ➜kubectl n moelove get events sort by metadata creationTimestamp LAST SEEN TYPE REASON OBJECT MESSAGEs Normal SuccessfulCreate replicaset non exist dddbdd Created pod non exist dddbdd tnrhds Normal ScalingReplicaSet deployment non exist Scaled up replica set non exist dddbdd to s Normal Scheduled pod non exist dddbdd tnrhd Successfully assigned moelove non exist dddbdd tnrhd to kind workers Warning Failed pod non exist dddbdd tnrhd Error ErrImagePulls Warning Failed pod non exist dddbdd tnrhd Failed to pull image ghcr io moelove non exist rpc error code Unknown desc failed to pull and unpack image ghcr io moelove non exist latest failed to resolve reference ghcr io moelove non exist latest failed to authorize failed to fetch anonymous token unexpected status Forbiddens Normal Pulling pod non exist dddbdd tnrhd Pulling image ghcr io moelove non exist s Warning Failed pod non exist dddbdd tnrhd Error ImagePullBackOffs Normal BackOff pod non exist dddbdd tnrhd Back off pulling image ghcr io moelove non exist describe operation on this Pod MoeLove ➜kubectl n moelove describe pods non exist dddbdd tnrhd Events Type Reason Age From Message Normal Scheduled m default scheduler Successfully assigned moelove non exist dddbdd tnrhd to kind worker Normal Pulling ms x over ms kubelet Pulling image ghcr io moelove non exist Warning Failed ms x over ms kubelet Failed to pull image ghcr io moelove non exist rpc error code Unknown desc failed to pull and unpack image ghcr io moelove non exist latest failed to resolve reference ghcr io moelove non exist latest failed to authorize failed to fetch anonymous token unexpected status Forbidden Warning Failed ms x over ms kubelet Error ErrImagePull Warning Failed ms x over ms kubelet Error ImagePullBackOff Normal BackOff s x over ms kubelet Back off pulling image ghcr io moelove non exist We can find that the output here is different from the previous Pod running correctly The main difference is in the column Age Here we see output s x over ms Its meaning means This type of event has occurred times in ms and the most recent one occurred beforeBut when we went to kubectl get events directly we did not see repeated events This shows that Kubernetes will automatically merge duplicate events into Select the last Event the method has been described in the previous content and output its content in YAML format MoeLove ➜kubectl n moelove get events non exist dddbdd tnrhd cfcecfba o yamlapiVersion vcount eventTime nullfirstTimestamp T Z involvedObject apiVersion v fieldPath spec containers non exist kind Pod name non exist dddbdd tnrhd namespace moelove resourceVersion uid e b fecaakind EventlastTimestamp T Z message Back off pulling image ghcr io moelove non exist metadata creationTimestamp T Z name non exist dddbdd tnrhd cfcecfba namespace moelove resourceVersion uid be b b a ddfeddreason BackOffreportingComponent reportingInstance source component kubelet host kind workertype NormalHere we can see that the field includes a count field which indicates how many times the event of the same type has occurred And firstTimestamp and lastTimestamp respectively represent the time of the last occurrence of this event for the first time This also explains the duration of the events in the previous output Understand Events thoroughlyThe following content is a random selection from Events we can see some of the field information it contains apiVersion vcount eventTime nullfirstTimestamp T Z involvedObject apiVersion apps v kind ReplicaSet name redis dbc namespace moelove resourceVersion uid ead ccb cb fccdcdkind EventlastTimestamp T Z message Created pod redis dbc vmr metadata creationTimestamp T Z name redis dbccfbbdebc namespace moelove resourceVersion uid eece ba c d bbcreason SuccessfulCreatereportingComponent reportingInstance source component replicaset controllertype NormalThe meanings of the main fields are as follows count Indicates how many times the current similar event has occurred described earlier involvedObject The resource object directly related to this event introduced above the structure is as follows type ObjectReference struct Kind string Namespace string Name string UID types UID APIVersion string ResourceVersion string FieldPath string source directly related components the structure is as follows type EventSource struct Component string Host string Reason A simple summary or a fixed code which is more suitable for filtering conditions mainly for machine readable There are currently more than such codes message give a detailed description that is easier for people to understandtype Currently there are only Normal and Warning and their meanings are also written in the source code staging src ks io api core v types goconst Information only and will not cause any problems EventTypeNormal string Normal These events are to warn that something might go wrong EventTypeWarning string Warning Therefore when we collect these Events as tracing source we can classify them involvedObject and sort them by time Summarizen this article I mainly use two examples a properly deployed Deploy and a Deploy that uses a non existent image deployment to introduce the actual function of the Events object and the meaning of each field in depth For Kubernetes Events contain a lot of useful information but this information does not have any impact on Kubernetes and they are not actual Kubernetes logs By default the logs in Kubernetes will be cleaned up after hour in order to release the resource occupation of etcd So in order to better let the cluster administrator know what happened in the production environment we usually collect the events of the Kubernetes cluster The tool I personally recommend is Of course you can also follow my previous article A More Elegant Kubernetes Cluster Event Measurement Scheme using Jaeger to use tracing to collect events in the Kubernetes cluster and display them Welcome to subscribe to my article【MoeLove】 2022-04-12 15:42:35
海外TECH DEV Community Shorten The Console.log https://dev.to/shamgurav96/shorten-the-consolelog-25h8 Shorten The Console logTired of writing console log again and again the the following JS tip is for you You can shorten the log function with the help of Function prototype bind Since ES all functions have a bind method that allows one to create a new function specifying the context Use bind method to pre define the context execution to always point to console This way no matter how the function is invoked we are instructing the JavaScript engine to always set the context execution to console const C console log bind console C Downloaded Successfully Downloaded Successfully C Code Executed Successfully Code Executed Successfully 2022-04-12 15:04:19
海外TECH DEV Community 3 Steps To Faster Serverless Development https://dev.to/serverless_inc/3-steps-to-faster-serverless-development-1d6f Steps To Faster Serverless DevelopmentOriginally posted at Serverless on Jun One of the biggest pain points we hear from developers moving into the serverless world is the slower feedback loop while developing In this post I m going to walk through some of the ways I speed up building and deploying live serverless services The Serverless Framework has a ton of hidden gems to speed up your dev cycle Let s explore Deploy changes faster with sls deploy functionMany users aren t aware of the serverless deploy function command and instead use serverless deploy each time their code has changed What is the difference sls deploy re deploys the entire stack through cloud formation and can be noticeably slooowww On the flip side sls deploy function only zips up the code amp any dependencies and updates the lambda function only This is much much faster than waiting for an entire stack update So when developing you can use sls deploy function f myFuncName for speedier code changes in your live AWS account One note If you make any changes to serverless yml config like changing endpoint paths or updating custom resources etc that will require a full sls deploy to update the entire stack If you have only make changes to your function code sls deploy function f myFuncName will work just fine and be much snappier Tail your live service logsDebugging remote code in the serverless world can be tricky Luckily console log and lambda functions go together like peanut butter and jelly One of my favorite serverless framework commands is the sls logs command It will pull the logs from your remote function directly into the terminal This is handy for debugging errors or inspecting what the event or context args contain It s even more useful when you tail the logs and get a live update as you are pinging your live functions I will pop open a new terminal window and run sls logs f funcName t and then ping my lambda function with Postman or my UI and live debug the function Having terminal windows open and combining sls deploy function f funcName for quicker code changes and watching the live logs with sls logs f funcName t is super easy to do and speeds up my feedback loop Offline EmulationNow you might be asking what about offline emulation It s absolutely a way to speed up dev cycles without having to re deploy anything With the serverless offline plugin you can speed up local dev is by emulating AWS lambda and API Gateway locally when developing your Serverless project Install the plugin Then add the plugins key in serverless yml Now you should have the serverless offline commands available when running serverless helpServerless has a lot of useful plugins to test code locally before deploying to a remote environment This helps developers save time of unnecessary deploys Additional emulation resources Emulate AWS Lambdas and API Gateway locallyEmulate DynamoDB locallyLocal StackPS How do you speed up your dev flow Image creditOriginally published at 2022-04-12 15:02:15
Apple AppleInsider - Frontpage News Nomad Base One Max review: Magnetic chargers for your iPhone & Apple Watch https://appleinsider.com/articles/22/04/12/nomad-base-one-max-review-magnetic-chargers-for-your-iphone-apple-watch?utm_medium=rss Nomad Base One Max review Magnetic chargers for your iPhone amp Apple WatchAnnounced on Tuesday Nomad s new Base One Max is a two in one desktop charger that will power up your Apple Watch as well as iPhone the latter via Apple s MagSafe Nomad s Base One MaxThis new combo charger is arriving just over a month after Nomad s first ever MagSafe device The Base One was released as a solo charger but carried a particularly high price tag Read more 2022-04-12 16:00:08
Apple AppleInsider - Frontpage News Apple TV+ lands new untitled comedy starring Noel Fielding https://appleinsider.com/articles/22/04/12/apple-tv-lands-new-untitled-comedy-starring-noel-fielding?utm_medium=rss Apple TV lands new untitled comedy starring Noel FieldingApple TV has announced a new ーand currently untitled ーcomedy adventure series that will star Noel Fielding as legendary British highwayman Dick Turpin Credit Apple TV The untitled series will feature Fielding known for The Great British Bake Off and The Mighty Boosh as Dick Turpin Turpin was an actual English highwayman whose exploits have been romanticized over the decades Read more 2022-04-12 15:06:02
Apple AppleInsider - Frontpage News Daily deals April 12: $200 off Samsung Galaxy Z Flip 3 5G, $500 off Microsoft Surface Duo 2 5G, $180 off eufy RoboVac X8 Robot Vacuum, more https://appleinsider.com/articles/22/04/12/daily-deals-april-12-200-off-samsung-galaxy-z-flip-3-5g-500-off-microsoft-surface-duo-2-5g-180-off-eufy-robovac-x8-robot-vacuum-more?utm_medium=rss Daily deals April off Samsung Galaxy Z Flip G off Microsoft Surface Duo G off eufy RoboVac X Robot Vacuum moreTuesday s top deals include discounts on two folding smartphones and a robot vacuum that ll help you stay on top of your spring cleaning Save on the Samsung Galaxy Z Flip G and on the Microsoft Surface Duo G Anker chargers are also up to off today only Samsung Galaxy Z Flip G Microsoft Surface Duo G and eufy RoboVac X Robot Vacuum are on sale today Every single day we spread out and search the internet for some of the best tech deals we can find That includes discounts on Apple products smartphones tax software and plenty of other tech products all so you can save some cash If an item is out of stock you may still be able to order it for delivery at a later date Many of the discounts are likely to expire soon though so act fast Read more 2022-04-12 15:21:20
海外TECH Engadget Tesla will release a cheaper Model Y with bigger batteries soon https://www.engadget.com/tesla-model-y-standard-range-awd-new-battery-152038143.html?src=rss Tesla will release a cheaper Model Y with bigger batteries soonIf you ve been pining for a Tesla EV using one of the company s higher capacity battery cells it s finally here ーthough you ll probably have to wait a short while Electrek has learned Tesla is selling the Model Y in a new Standard Range AWD variant that uses the cells to offer miles of range and a five second MPH time for less than the Long Range AWD but only to employees at present A version for everyday buyers will be available in the weeks ahead according to Electrek s sources at the company This Model Y also includes a few features not seen on any previous trim level such as a magnetic center armrest and a parcel shelf Tesla reportedly delivered a handful of these EVs to workers at its quot Giga Rodeo quot event in Texas last week The cells are twice as large as Tesla s existing units but they have five times the capacity That lets Tesla either extend the range of its vehicles or use fewer batteries to maintain the same range potentially shrinking costs In the new Model Y version they re implemented in a structural battery pack that should reduce complexity and weight further improving efficiency As such this Model Y isn t so much an expansion of the lineup as an important step in Tesla s product strategy While it may take a while before you see the new battery tech reach every Tesla EV it should help keep prices in check improve range and eventually lead to the fabled car 2022-04-12 15:20:38
海外TECH Engadget Apple Watch Series 8 could include a body temperature sensor https://www.engadget.com/apple-watch-series-8-body-temperature-monitor-low-power-mode-watchos-9-151141297.html?src=rss Apple Watch Series could include a body temperature sensorIf Apple sticks to its usual calendar we should get our first look at Apple Watch Series in September We ll likely see watchOS for the first time at WWDC in June as well Both events are months away but the Watch update rumors are ramping up Apple is expected to reveal up to three watch models this year according to Bloomberg s Mark Gurman Along with the Series and a revamped Watch SE there may be a version with a rugged design That one would be geared toward extreme athletes With watchOS Apple may introduce an upgraded low power mode Beyond only letting users see the time in low power mode their watch could run some apps and other features Health has been a big focus for Apple Watch from the jump and Series could add a body temperature sensor to the mix At the outset it seems the plan is to help users with fertility planning It may later be used to tell wearers if their body temperature is running high though you may not see a numerical measurement In addition Apple is expected to build on atrial fibrillation AFib monitoring with a new quot burden quot feature for watchOS that detects how often a person is in a state of AFib over a period of time On top of that more workout types and running metrics could be available in the Workout app As for health features users shouldn t expect to see in Apple Watch Series the long mooted blood pressure monitor isn t likely to arrive this year Gurman says Apple has run into some issues with the tech which is expected to look for signs of hypertension and it likely won t be ready for another couple years Another long rumored feature that probably won t be in Series devices is noninvasive blood sugar monitoring That s not expected for several more years according to Gurman The report also touches on some iPhone features that may arrive in the medium term The Health app could have improved sleep detection along with a feature that allows users to scan medication bottles and reminds them when to take pills The latest smartphone lineup could have satellite connectivity too which could enable users to text emergency personnel and report incidents via satellite networks Apple s said to be working on similar features for future generations of Apple Watch 2022-04-12 15:11:41
Cisco Cisco Blog Powering healthcare with hybrid work https://blogs.cisco.com/healthcare/powering-healthcare-with-hybrid-work hybrid 2022-04-12 15:49:40
海外科学 NYT > Science Most Active Hurricane Season Was Also Wetter Because of Climate Change https://www.nytimes.com/2022/04/12/climate/climate-change-hurricane-rain.html Most Active Hurricane Season Was Also Wetter Because of Climate ChangeDuring the record setting Atlantic storm season the most extreme three hour rainfall rates were percent higher than they would have been without climate change a new study found 2022-04-12 15:38:05
金融 RSS FILE - 日本証券業協会 諸外国における国民ID制度に関する調査 https://www.jsda.or.jp/anshin/mynumber/idtyousa.html 外国 2022-04-12 16:07:00
金融 金融庁ホームページ 「保険業法施行規則の一部を改正する内閣府令(案)」及び「保険会社向けの総合的な監督指針」の一部改正(案)について公表しました。 https://www.fsa.go.jp/news/r3/hoken/20220412/20220412.html 保険会社 2022-04-12 17:00:00
金融 金融庁ホームページ 「気候変動関連リスクに係るシナリオ分析に関する調査」報告書について公表しました。 https://www.fsa.go.jp/common/about/research/20220412/20220412.html 気候変動 2022-04-12 17:00:00
金融 金融庁ホームページ 株式会社エーエムアイに対する行政処分について公表しました。 https://www.fsa.go.jp/news/r3/shouken/20220412.html 株式会社 2022-04-12 16:00:00
ニュース @日本経済新聞 電子版 NY地下鉄で乱射か、13人負傷 ガスマスク男逃走と報道 https://t.co/xjiRxI1FWU https://twitter.com/nikkei/statuses/1513896134464323585 逃走 2022-04-12 15:05:39
ニュース ジェトロ ビジネスニュース(通商弘報) ADB、コロナ感染拡大やウクライナ情勢など踏まえ、中国の成長率を下方修正 https://www.jetro.go.jp/biznews/2022/04/05680c41796ab692.html 下方修正 2022-04-12 15:40:00
ニュース ジェトロ ビジネスニュース(通商弘報) 二輪車の通行制限、ハノイ市など5都市に検討を指示 https://www.jetro.go.jp/biznews/2022/04/00384b5fe70e2331.html 都市 2022-04-12 15:30:00
ニュース ジェトロ ビジネスニュース(通商弘報) スペースXがフィリピンへ進出、衛星通信サービスを展開へ https://www.jetro.go.jp/biznews/2022/04/6e03c9560900421d.html 進出 2022-04-12 15:20:00
ニュース ジェトロ ビジネスニュース(通商弘報) 2022年のラオス経済成長率は3.4%の見通し https://www.jetro.go.jp/biznews/2022/04/d91e08527e07728b.html 経済成長 2022-04-12 15:10:00
ニュース BBC News - Home Boris Johnson and Rishi Sunak to be fined over lockdown parties https://www.bbc.co.uk/news/uk-politics-61083402?at_medium=RSS&at_campaign=KARANGA covid 2022-04-12 15:32:30
ニュース BBC News - Home Brooklyn shooting: Several people shot in New York City subway https://www.bbc.co.uk/news/world-us-canada-61082792?at_medium=RSS&at_campaign=KARANGA scene 2022-04-12 15:34:21
ニュース BBC News - Home Zika virus may be one step away from explosive outbreak https://www.bbc.co.uk/news/health-61078867?at_medium=RSS&at_campaign=KARANGA major 2022-04-12 15:30:29
ニュース BBC News - Home Partygate fines: Are Boris Johnson and Rishi Sunak finished? https://www.bbc.co.uk/news/uk-politics-61079172?at_medium=RSS&at_campaign=KARANGA partygate 2022-04-12 15:24:22
ニュース BBC News - Home Why do so few rape cases go to court? https://www.bbc.co.uk/news/uk-48095118?at_medium=RSS&at_campaign=KARANGA wales 2022-04-12 15:46:35
北海道 北海道新聞 NY地下鉄駅で乱射か13人負傷 ガスマスク男が逃走の情報も https://www.hokkaido-np.co.jp/article/668789/ 地下鉄駅 2022-04-13 00:03:37
北海道 北海道新聞 NY州副知事を収賄容疑で逮捕 就任前の選挙資金巡り https://www.hokkaido-np.co.jp/article/668808/ 収賄容疑 2022-04-13 00:12:00
北海道 北海道新聞 ぽかぽか後志雪解け早め 9地点の積雪量 平年下回る 冬型の気圧配置続かず https://www.hokkaido-np.co.jp/article/668725/ 冬型の気圧配置 2022-04-13 00:12:15
北海道 北海道新聞 淡麗グリーンラベルがリニューアル キリンビール https://www.hokkaido-np.co.jp/article/668787/ 淡麗グリーンラベル 2022-04-13 00:02:18
GCP Cloud Blog Top 5 Takeaways from Data Cloud Summit ‘22 https://cloud.google.com/blog/products/data-analytics/top-5-things-to-catch-up-on-from-data-cloud-summit-2022/ Top Takeaways from Data Cloud Summit To compete in a fast moving transforming and increasingly digital world every team business process and individual needs to level up the way they think about data Which is why this year at our Data Cloud Summit we saw record turnout both in volume and diversity of attendance Our thanks go out to all the customers partners and data community who made it such a great success Did you miss out on the live sessions Not to worry all the content is now available on demand  Here are the five biggest areas to catch up on from Data Cloud Summit Product announcements to level up your data skillsData is no longer solely the realm of the analyst Every team customer and partner needs to be able to interact with the data they need to achieve their goals To help them do so we announced new products capabilities and initiatives that help remove limits for our users Here are some highlights BigLake allows companies to unify data warehouses and lakes to analyze data without worrying about the underlying storage format or system  Spanner change streams tracks Spanner inserts updates deletes and streams the changes in real time across the entire Spanner database so that users will always have access to the latest data  Cloud SQL Insights for MySQL helps developers quickly understand and resolve database performance issues for MySQLVertex AI Workbench delivers a single interface for data and ML systems  Connected Sheets for Looker and the ability to access Looker data models within Data Studio combine the best of both worlds of BI giving you centralized governed reporting where you need it without inhibiting open ended exploration and analysis More product news announced at Data Cloud Summit can be found here Customers to learn fromCustomers are at the heart of everything we do and that was evident at the Data Cloud Summit Wayfair Walmart Vodafone ING Group Forbes Mayo Clinic Deutsche Bank Exabeam and PayPal all spoke about their use of Google s Data Cloud to accelerate data driven transformation Check out some of their sessions to learn more Unify your data for limitless innovation featuring Wayfair and VodafoneUnlocking innovation with limitless data featuring ExabeamSpotlight Database strategy and product roadmap featuring PaypalWe also heard from you directly Here are some great quotes from the post event survey “This is the first time that I have been exposed to some of these products I am a Google Analytics Data Studio Search Console Ads and YouTube customer so this is all very interesting to me I m excited to learn about BigQuery and try it out “The speakers are very knowledgeable but I appreciate the diversity in speakers at these cloud insights “Great experience because of the content and the way that it is presented “This is definitely useful to new Google Admin Managers like I am “This was a great overview of everything new in such a short time Partners to deliver the best customer experiencesOur partner ecosystem is critical to delivering the best experience possible for our customers With more than partners powering their applications using Google Cloud we are continuously investing in the ecosystem At Data Cloud Summit we announced a new Data Cloud Alliance along with the founding partners Accenture Confluent Databricks Dataiku Deloitte Elastic Fivetran MongoDB Neoj Redis and Starburst to make data more portable and accessible across disparate business systems platforms and environmentsーwith a goal of ensuring that access to data is never a barrier to digital transformation In addition we announced a new Database Migration Program to accelerate your move to managed database services Many of these partners delivered sessions of their own at Data Cloud Summit Accelerate Enterprise AI adoption by x featuring C AIRise of the Data Lakehouse in Google Cloud featuring DatabricksThe Connected Consumer Experience in Healthcare and Retail featuring DeloitteInvestigate and prevent application exploits with the Elasticsearch platform on Google Cloud Product demos to elevate your product knowledgeExperts from Google Cloud delivered demos giving a hands on look at a few of the latest innovations in Google s Data Cloud Cross cloud analytics and visualization with BigQuery Omni and Looker with Maire Newton and Vidya ShanmugamBuild interactive applications that delight customers with Google s data cloud with Leigha Jarett and Gabe WeissBuild a data mesh on Google Cloud with Dataplex with Prajakta Damie and Diptiman RaichaudhuriAdditional demos are available here on demand Resources to dig intoIf you want to go even deeper than the Summit sessions themselves we ve put together a great list of resources and videos of on demand contentto help you apply these innovations in your own organization Here are some of the highlights Guide to Google Cloud Databases PDF How does Pokémon Go scale to millions of requests video MLOps in BigQuery ML using Vertex AI video Database Engineer Learning Path course Machine Learning Engineer Learning Path course BI and Analytics with Looker course Thanks again for joining us at this year s Data Cloud Summit Join us again at Applied ML Summit June Related ArticleLimitless Data All Workloads For EveryoneRead about the newest innovations in data cloud announced at Google Cloud s Data Cloud Summit Read Article 2022-04-12 16:00:00
GCP Cloud Blog Easy CSV importing into Cloud Bigtable https://cloud.google.com/blog/products/databases/bigtable-command-line-now-supports-csv-file-importing/ Easy CSV importing into Cloud BigtableIf you re trying to learn a new database you ll want to kick the tires by loading in some data and maybe doing a query or two Cloud Bigtable is a powerful database service for scale and throughput and it is quite flexible in how you store data because of its NoSQL nature Because Bigtable works at scale the tools that you use to read and write to it tend to be great for large datasets but not so much for just trying it out for half an hour A few years ago I tried to tackle this by putting together a tutorial on importing CSV files using a Dataflow job but that requires spinning up several VMs which can take some time Here on the Bigtable team we saw that the CSV import tutorial was a really popular example despite the need to create VMs and we heard feedback from people wanting a faster way to dive in So now we are excited to launch a CSV importer for Bigtable in the cbt CLI tool The new importer takes a local file and then uses the Go client library to quickly import the data without the need to spin up any VMs or build any code InstallationIf you already have the gcloud with the cbt tool installed you just need to ensure it is up to date by running gcloud components upgrade Otherwise you can install gcloud which includes the cbt tool If you re unable to install the tools on your machine you can also access them via the cloud shell in the Google Cloud console Importing dataI have a csv file with some time series data in the public Bigtable bucket so I ll use that for the example Feel free to download it yourself to try out the tool too Note that these steps assume that you have created a Google Cloud project and a Cloud Bigtable instance code block StructValue u code u gsutil cp gs cloud bigtable public datasets csv import blog data csv u language u You need to have a table ready for the import so use this command to create one code block StructValue u code u cbt createtable mobile time series families cell data u language u Then to import the data use the new cbt import command code block StructValue u code u cbt import mobile time series csv import blog data csv column family cell data u language u You will see some output indicating that the data is being imported After it s done you can use cbt to read a few rows from your table code block StructValue u code u cbt read mobile time series u language u If you were following along be sure to delete the table once you re done with it code block StructValue u code u cbt deletetable mobile time series u language u CSV formatCSV file without column familiesCSV file with column familiesThe CSV file uses one row of headers specifying the column qualifiers and a blank for the rowkey You can add an additional row of headers for the column families and then remove the column family argument from the import command I hope this tool helps you get comfortable with Bigtable and can let you experiment with it more easily Get started with Bigtable and the cbt command line with the Quickstart guide Related ArticleGoogle Cloud s key investment areas to accelerate your database transformationThis blog focuses on the key database investment areas that help you accelerate your digital transformation journey Read Article 2022-04-12 16:00:00
GCP Cloud Blog How do payments providers keep from getting disrupted? By disrupting themselves first https://cloud.google.com/blog/topics/transformation/payment-providers-disrupt-finance-by-disrupting-themselves/ How do payments providers keep from getting disrupted By disrupting themselves firstThe first time I ever hailed a car with a ridesharing app I went from point A to point B and never once had to think about whether I had enough cash or what credit card to use This magical digital black car service removed the friction of a payment step from the journey and it was fantastic  A decade ago if you wanted to pay for something you needed cash a credit card or even a checkbook remember those Checkout could be a cumbersome experience fumbling for a wallet searching for the right card swiping it and then waiting for the transaction to clearーall steps that stood between you and the door  Today we can text tap or swipe to pay Digital payments are stripping away the need to think about the how of a transaction allowing customers to buy almost instantly without ever reaching for their wallets After all it s been said for years now that people own more phones than they do toothbrushes And herein lies the beauty of the payments industry It s constantly transforming to give customers what they want where and when they need it Perhaps this is why so many of the fastest growing innovators of our time are payment providers and commerce platforms Paypal Square Block Shopify Affirm These companies have become leaders by understanding how and where customers really want to pay in their daily lives and delivering technology solutions that make that possible  By the same token leading payment providers recognize that continuing to win also means continuing to disrupt even if they have to disrupt themselves What works today may fall short tomorrowーand all payment providers must be able to adapt experiences quickly enough to meet changing customer expectations and behaviors To take just one example look at the skyrocketing interest in cryptocurrencies and digital assets and just how quickly tabs began appearing in select payment apps to purchase or transfer these assets Clearly how digital payments companies set up their technology systems now will play a critical role in whether they continue to prosper  The payments industry faces a perfect stormThe payments sector has been in a nearly constant state of disruption for the last years In fact the only certainty at this point is that disruption is constantーand it s speeding up  Recent Accenture research found that modernizing payments is a billion opportunityーroughly trillion cash transactions are predicted to move to cards and digital payments by   Digital wallet payments exceeded cash payments for the first time during according to the FIS Global Payments Report and buy now pay later or BNPL transaction adoption is expected to double by    McKinsey reported that real time payments soared by during alone and are expected to play an increasingly important role in the global payments ecosystem  The changes are everywhere Digital currencies are becoming more reality than dream real time payments and new financing solutions are emerging and more data standard requirements continue to appear Beyond cloud computing technologies like G contactless payments such as NFC and AI and machine learning are maturing fast It s one reason Google Cloud recently established a digital assets team to help companies tackle another fast changing area of finance At the same time consumer demands are accelerating for convenient flexible and seamless payment experiences Customers don t want to be forced to fit into traditional payment ecosystems anymore Understanding who they are where they are in their journey and being able to provide the services they need at that point will be the key to building payments models that can adapt over time  Customer obsession is no longer a branding exercise for financial companies It s about creating real value that will make people s lives better leading payment providers recognize that continuing to win also means continuing to disrupt even if they have to disrupt themselvesAny time a customer has to stop to think about a payment or wait to pay is impeding the intent to buy Think about when you go to the checkout and see a long line of people in front of you If you re like me no matter how much you want to buy something you might just put down your items and leave The next challenge will be making payments even more straightforward and seamless Taken together I believe these advancements and factors are bringing the industry towards a tipping point where transactions will be so deeply embedded into experiences and so frictionless that they become effectively invisible Purchase will no longer interrupt buying and the complexities of processing a transaction will happen in the background With these changes looming large there is growing pressure in the payments industry to build products faster modernize and integrate legacy platforms and extract more value from data to enable better customer experiences However all this must be achieved without losing focus on ensuring strong data security governance and compliance  To thrive in the future payments executives need to build the right underlying technology foundation What they need starts in the cloud  Cloud s solid foundation amid constant disruption There was a time not so long ago that if you asked a payment provider or any financial services institution when they were planning to adopt the cloud they would have answered in one word never The longstanding perception was that cloud was right for some but not for financial services It couldn t deliver the processing speed or resilience required nor would it be capable of addressing risk and compliance at the level needed within such a highly regulated industry a tipping point where transactions will be so deeply embedded into experiences and so frictionless that they become effectively invisibleBut the cloud of is not the same cloud from a decade ago Cloud computing has become the requisite technology foundation across every industry providing better access to data dynamic scale built in security and agile capabilities that drive new features and innovations Traditional solutions simply can t keep up In my experience speaking with Google Cloud s financial services customers there are five key ways cloud platforms help companies deliver differentiated payment experiences   Providing resilient fast infrastructure that can scale at speed Migrating to the cloud puts flexible scalable cloud architectures and technologies such as containers and microservices within reach allowing teams to quickly and securely build new applications quickly Cloud based architectures and data modernization can save millions of dollars annually that would otherwise be spent on on premises hardware software and licensing costs   Unlocking data to identify new opportunities Cloud platforms are helping the payments ecosystem centralize and organize their data facilitating near real time data consumption to identify monetization opportunities such as personalized offers or new product development Transitioning to data cloud platforms can also satisfy critical use cases such as compliance reporting intelligent fraud detection and transaction risk management Gartner predicts that organizations that promote data sharing will outperform their peers on most business value metrics by Applying AI and machine learning Cloud opens the door to advanced analytics and AI that allow payment processors to dive deep into their data and uncover fresh insights Most cloud providers also enable payments firms to leverage cutting edge AI models at speed and scale so they can derive insights and make decisions instantaneously on the enormous amounts of transactional data they process   Managing risk and compliance Providers must strike a balance between faster payment processing and the careful management of data collection data use and mitigation of potential fraud or improper disclosure Data privacy is a service baked into cloud platforms providing rigorous data policies rich compliance reporting and high performance risk simulation It also gives payments companies complete control of their data with transparency around where their data is stored and allows them to operate in both localized and distributed ways depending on data sovereignty requirements    Protecting sensitive customer data Doubts around cloud security are dissipating as trust in service providers very much depends on their ability to deliver the very best security The cloud offers multi layered security with identity management network security and threat detection and response offerings that rival most in house solutions Increasingly cloud capabilities are also helping to drive even more secure payments features such as credit card tokenization to protect data during online transactions  Building the future generation of payments on the cloudUltimately all this boils down to enabling companies to actively drive disruption not fall victim to it Cloud systems for payments offer the flexible architecture and technology solutions needed to continuously iterate improve and respond to customer needs  Revolut a London based neobank is a prime example of how payments providers can disrupt things differently scaling at speed while maintaining stability and security Revolut is one of the fastest growing “money apps in the world gaining million active users and incorporating up to apps on its platform since launching in the UK in But it became obvious its initial cloud infrastructure would eventually be overwhelmed underscoring the need to build a new environment that could deliver the scalability reliability and security to support its rapid growth  Revolut s new core cloud infrastructure built on Google Cloud balanced ease of use automated deployment and most critically control over its security particularly ensuring its multi terabyte databases remain highly secure The cloud has been key to enabling Revolut s success and growth This allowed Revolut to offer customers more innovative ways to manage their money without having to compromise on security  These examples also serve as a reminder that it s not just traditional financial services institutions operating on legacy systems who benefit from embracing new technologies like cloud Even fintech companies who have grown up in physical data centers or newcomers operating partially in the cloud are at risk of falling behind the pace of the payment journey if they don t take steps now  Be the next digital disruptorThe day is coming when waiting in line to pay will become obsolete and payments will be completely seamless Imagine pulling into a gas station and the transaction for you will be filling up the tank In this new reality you ll be able to go to a store grab what you want and walk back out without even carrying your wallet out of the house Your smart fridge already allows you to reorder groceries or even recognize that you need new milk every five daysーand order it for you And there s the question of whether you ll be paying in dollars Euros yen Bitcoin Ethereum or some other alternative currency Is your business ready  Payment providers have an opportunity now that didn t exist in the last decade to predict and anticipate what customers want and simultaneously reinvent themselves Cloud technology and capabilities will enable the payments industry to make decisions and play an active role in reshaping the future of the payment landscape Related ArticleGoogle Cloud launches new dedicated Digital Assets TeamGoogle Cloud launches a new dedicated Digital Assets Team to help underpin the blockchain ecosystems of the future Whether you re imple Read Article 2022-04-12 16:00: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件)