投稿時間:2023-04-05 03:20:57 RSSフィード2023-04-05 03:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Machine Learning Blog Boost your forecast accuracy with time series clustering https://aws.amazon.com/blogs/machine-learning/boost-your-forecast-accuracy-with-time-series-clustering/ Boost your forecast accuracy with time series clusteringTime series are sequences of data points that occur in successive order over some period of time We often analyze these data points to make better business decisions or gain competitive advantages An example is Shimamura Music who used Amazon Forecast to improve shortage rates and increase business efficiency Another great example is Arneg who … 2023-04-04 17:42:50
AWS AWS Security Blog Logging strategies for security incident response https://aws.amazon.com/blogs/security/logging-strategies-for-security-incident-response/ Logging strategies for security incident responseEffective security incident response depends on adequate logging as described in the AWS Security Incident Response Guide If you have the proper logs and the ability to query them you can respond more rapidly and effectively to security events If a security event occurs you can use various log sources to validate what occurred and … 2023-04-04 17:09:13
AWS AWS Security Blog Logging strategies for security incident response https://aws.amazon.com/blogs/security/logging-strategies-for-security-incident-response/ Logging strategies for security incident responseEffective security incident response depends on adequate logging as described in the AWS Security Incident Response Guide If you have the proper logs and the ability to query them you can respond more rapidly and effectively to security events If a security event occurs you can use various log sources to validate what occurred and … 2023-04-04 17:09:13
python Pythonタグが付けられた新着投稿 - Qiita PythonでLPC分析・LSP分析・最小位相復元とか https://qiita.com/ryo_he_0/items/25c271291feac478f396 意気込み 2023-04-05 02:39:44
python Pythonタグが付けられた新着投稿 - Qiita 【Python】ChatGPT+Google Custom Search APIでBingのチャットボットを再現してみた https://qiita.com/keisuke-okb/items/3c0f82612dfc38535e53 chatgpt 2023-04-05 02:17:39
海外TECH Ars Technica Microsoft’s new Surface Dock tosses the proprietary port, uses Thunderbolt 4 https://arstechnica.com/?p=1928976 connect 2023-04-04 17:02:48
海外TECH MakeUseOf The Pros and Cons of Buying an Apple HomePod https://www.makeuseof.com/pros-cons-of-apple-homepod/ choice 2023-04-04 17:31:17
海外TECH MakeUseOf 8 New Features We Want to See in Windows 12 https://www.makeuseof.com/new-features-want-to-see-windows-12/ basic 2023-04-04 17:15:16
海外TECH DEV Community Moonly weekly progress update #43 https://dev.to/moonly/moonly-weekly-progress-update-43-2mh9 Moonly weekly progress update Moonly weekly progress update Hello everyone how was your weekend This week Portfolio Tracker and Staking Locking features are being tested and prepared for production Then the real testers will be the holders and other projects who will use these features and they will give us real feedback Weekly developer progress Load NFTs from the databaseFixed the bugs and deployed for custom notificationChecking videos and docs provided for a multi walletFixed the frontend multiple fetching issues for the blogs resolverReviewed multi wallet linking PR added very minor improvements to DB schemaDeployed link multi walletFinished deploying the new five dev serversResolved the historical issue and optimized itShipped PT logs to our other serversStaking Locking Create a resolver for fetching fungible tokensAdded collection Info and Updated color on the staking itemAdded trait count field on Collection Info structureFixed Reward issue at first loadShow admin management section only for super adminAdded stats info on the staking pageFixed a bug with Unstake Button on Authority StakingCreated New UI for the NFT staking page linked the data and made it responsive for all screensTried to fix the current wallet linking issueReduced Nft item card size on Staking PageFixed a bug related to reward count animationRemoved Reward Token field from NFT cardAdded sign before every token symbolShow NAN on the top info section when the reward is disabledAdded Unstaked filter tab on Staking PageAdded load more button for Staked NFT and Unstaked NFT tabsFilter tabs moved to dropdown and left alignedFixed the bug with Multiselect when the UserPool account is not initializedWork on the Ethereum collections market data Improved the Update Stats functionFinished the Parser improvementCheck out our latest blog posts Upcoming NFT collections Minted projects worth mentioning 2023-04-04 17:25:10
海外TECH DEV Community What is Design System and how to build it https://dev.to/jvidaln/what-is-design-system-and-how-to-build-it-30ad What is Design System and how to build it What is Design System I separated two explanations to define the concept of Design System DS one more objective and direct and another that brings the vision of how complete a DS can be Concept A collection of reusable components standardized for a given product site or web system Concept A complete set of design pattern style guide and documentation that comes with a UI tool kit including UI patterns UX design principles and components When we look at a design system in this context it embodies everything designers and developers need to build and scale digital products Some other things that you will find in a DS are Brand guidelinesAccessibility guidelinesUI design guidelinesGovernanceBest PracticesDesign system roadmap and releasesCode snippetsCSS variables and design tokensUI Kit an image based version of the design system components Downloadable Resources Design System x Pattern Library x Style Guide x Component LibraryAfter understanding what a DS is it is very common to confuse several concepts that are related to it because the line of difference is very tenuous For that I separated the most easily confused terms and what is their relationship with the DS Component LibraryIn short it s a collection of UI components in a DS As part of the DS it s a library of components that can reduce the risk of any variation between products or having with different components in different places They deal with the source code of the UI elements being a block of reusable code that can stand alone or be part of several UI Patterns ーfor example a button Pattern LibraryIn short it s a collection of UI patterns in a design system As part of the DS it s a set of design patterns for use in a company A group of components that designers use to solve usability issues ーfor example a navigation bar with a logo links search form and button Style GuideIt s a document that includes the design guidelines of a company or to a lesser extent of a specific project brand or product Provides context and instructions for the patterns and components of a DS ーfor example HEX color codes typography scales uses pros and cons etc Problems to solveNow that the concepts are clearer it s very common in most projects that we have several problems that could be solved with the construction of a DS and or with the use of some other tools that facilitate the development Below I will mention some of the most frequently occurring problems Lack of standard in implementationsWhen there is no standardization documentation a DS or someone more senior to guide and validate the implementations it s very common for there to be differences in the same implementation made by different devs This is understandable at some point since each dev has their own way of programming but when we talk about standardization I mean extracting the maximum of the language resource to make the code more efficient regardless of who is programming Let s go to the example Imagine that we are going to build a custom InputText component using React with TypeScript Now we need to pass some properties that will be used in the input element Many devs would do it like this interface TextInputProps placeholder string export function TextInput placeholder TextInputProps return lt input placeholder placeholder gt This is not a recommended approach as there are several native properties of the input element and thus whenever it s necessary to use a new native property we would have to add a new field in the properties But what s the best way to do this Using one of the principles of object orientation inheritance interface TextInputProps extends InputHTMLAttributes lt HTMLInputElement gt elementoPersonalziado string export function TextInput elementoPersonalziado props TextInputProps return lt input elementoPersonalizado elementoPersonalziado props gt This way our property will inherit ーextends ーthe attributes of an HTML input element and will even allow us to include specific properties from the custom component In the component s implementation we can use the spread operator to pass all the properties to the input element separating the elements that we will use for some validation or in a different way Having access to these standards and good practices is what will start to make a difference in the quality of our code and for that the dev must first be curious constantly learn question why things are done the way they are and challenge themselves In addition it s important that there is documentation with this type of content or implementations already made with this “quality standard usually made by more experienced devs Today there are many tools that help enrich this type of content and we will see one of them later on as a solution to this problem CSS ConflictsProblems with CSS are more common than we think and they start when we lose time to think and define a name that later may conflict with another CSS in the application and that later we will no longer remember the meaning of that nomenclature In addition having to create separate files ーfor those who like to organize the code ーstarts to make our project bigger and we spend more time developing having to access different files all the time to act on a screen with several components Duplicate CodesThe lack of standardization and componentization of codes brings one of the worst problems we can have which is code duplication By not having accessible documentation or none at all especially when there are many projects it s common for devs to end up recreating a component that already exists without even knowing that it exists Another very common scenario is when the dev found the component however it needs one more resource that the component doesn t have and because it s not programmed correctly it doesn t allow the dev to add one more “power to the component inducing the dev to create a new component just to meet your need thus creating a new problem Development timeAs previously mentioned each of the identified problems increases development and maintenance time making the team work with a smaller amount of tasks than the team is actually capable of Not to mention the rework and waste of time Misalignment with Figma prototypesIn some cases there is a UX Design team that does essential work and creates the entire prototype of the components and screens however for reasons of not having time or that it will take work ーusually caused by not having the componentized screens in addition to having duplicate codes which induces the dev to redo the entire component ー the team doesn t develop the faithful component to what was proposed This in addition to wasting an excellent opportunity to have components modeled with higher quality and focused on the customer generates a feeling of unproductivity in the team when they miss deadlines recreating codes FrontEnd DocumentationAfter the popularization of agile methodologies some people believed that it was no longer necessary to have detailed documentation of systems and their parts But not quite In fact we no longer have extensive and unnecessary documentation that took a long time to build and that soon fell into disuse because they were out of date However agile methodologies did not inhibit or invalidate the use of documentation but rather brought new possibilities Although we can consider the detailing of the tasks created in tools such as Jira as documentation there is still a need to maintain a living documentation which details the components and screens created as well as guidelines for their use FrontEnd TestsThe discussion about tests is long many think it s important some believe it doesn t have much priority besides there are different ones for us to create these tests The truth is that testing is and always will be important That said most of the time we only think about BackEnd tests however FrontEnd tests should receive the same attention In the next topics we will see how to solve this and other problems How to solveNow that we have a little understanding of the issues identified earlier I ll address some solutions that I ve found and that I understand are applicable for most scenarios The creation configuration and application of these solutions isn t complex nor is it a lot of work ーjust a little ー however it requires dedication discipline patience and synergy from the team to organize themselves and contribute together Design SystemThe DS itself will solve many of the componentization reuse and standardization problems ProsAllows reuse of components in different projects You can configure themes for different projects without recreating components Standardize codes Decreases development time as many components are already created ConsLarge learning curve for those who have never created While a dev can create it still takes the entire team to get involved to scale and evolve which takes time and effort Mitigation of ConsIt can be done gradually first creating the project and then creating the components as they are needed for use Tailwind CSSWhat is it Just like Boostrap Tailwind is a CSS framework that gives you the possibility to create layouts using a ready made CSS framework In summary the difference between the two is that as you need to customize Bootstrap more it becomes more laborious whereas TailwindCSS because it has atomic classes is like a lego game where you can assemble each small part and create the larger parts in a much easier way Tailwind CSS works by checking all HTML files JavaScript components and any other templates containing class names and then generates the corresponding styles then writes them to a static CSS file ProsAvoids conflicts ーMainly because there is no need to name the classes As the classes already exist we only need to assemble the “lego No additional file required ーAvoiding creating CSS files for each component created It has clear and easy to understand documentation on the website Low learning curve Atomic classes Optimizes development time Responsive design Generates a static file with only the classes that will be used ーThis is one of the biggest gains as it goes through the project and only includes the classes that will be used in the static file also cleaning up the duplicates ConsVerbose ーFor those who have never used Tailwind like me it can be strange at first Having many microclasses placed directly on the element without having to define a class or generate a file may seem strange at first but I guarantee you will learn quickly For me it was a matter of day until I felt more comfortable and the documentation helps a lot Mitigation of ConsComponentization ーComponentization allows us to separate the needs of the system into smaller parts so that we can only apply CSS to what is needed Directives ーIt is a powerful feature that Tailwind provides especially for those who still prefer to create custom classes even using Tailwind Example of a directive lt style gt btn apply text base font medium rounded lg p btn primary apply bg sky text white btn secondary apply bg slate text slate lt style gt lt article gt lt footer class grid grid cols gap x gt lt button class btn btn secondary gt Decline lt button gt lt button class btn btn primary gt Accept lt button gt lt footer gt lt article gt StorybookWhat is it Storybook is an opensource tool that prepares a development environment for UI components It allows us to develop and test components in isolation from our application as well as serving as living documentation ProsIt s a living documentation of components and pages Allows the creation of FrontEnd tests We can use mocked data without the need for DB access We can have accessibility validations The main thing is to have an isolated environment similar to Swagger ConsLearning curve ーTo create it is a bit laborious and it is important to always read the documentation that helps a lot when creating Mitigation of ConsCreation can be done in phases ーYou can follow the construction of components and create the storybook to help with testing and tracking the creation of the component After creating one the others follow the same pattern with few variations ーThis makes creating storybooks much easier because as you create one you can reuse it in others or just follow the same model PracticeNow that we ve seen all the theory behind the DS and the chosen tools we understand why each one is used and what problems they solve Now let s get to the execution Setup StructureFor the setup structure I used VITE to make it easier however anyone who wants to can create the structure from scratch Follow the steps Access the directory where the project will be created Execute the creation command Creating the project with VITEnpm create vite latest Steps of VITE Set the project name gt DesignSystem Select the framework gt React Select the variant gt Typescript Clean up unused files and folders You can remove the assets folder and the index css and app css files Tailwind CSSTo configure Tailwind the following steps are required Run the installation commands Installing packagesnpm install D tailwindcss postcss autoprefixer Installing tailwindcss p tor create the conf file of postCSSnpx tailwindcss init pPostCSS ーBundler for CSS that automates CSS tasks Similar examples GulpGruntWebPackAutoprefixer ーLibrary that adds some prefixes for some features that work only in specific browsers Examples of prefixes WebkitMoz Configure application content files tailwind config cjs type import tailwindcss Config module exports content src tsx Create the global style file global css and import the Tailwind CSS resources src styles global css tailwind base tailwind utilities tailwind components Import the global style in App tsx to be able to use Tailwind CSS in pages src App tsx import styles global css export function App return lt h className font bold text xl text violet gt Hello World lt h gt FontBelow are the steps to configure the fonts Fetch the DS font definitions in the project s Figma Get matching links and import in index html or import locally lt index html gt lt Roboto gt lt link rel preconnect href gt lt link rel preconnect href crossorigin gt lt link href rel stylesheet gt lt Mark Pro e gt lt link href display swap rel stylesheet gt Set default font in Tailwind configuration file We can extend ーextend ー keeping Tailwind s default settings and adding our own or just using ours tailwind config cjs type import tailwindcss Config module exports content src tsx theme extend fontFamily roboto Roboto sans serif markpro Mark Pro sans serif plugins StorybookNow the steps to set up the storybook Run the install command Starting the Storybooknpx sb init builder storybook builder vite use npm ornpx storybook init builder storybook builder vite use npm Clean folder and files that won t be used We can remove the src stories folder and its files The storybook main cjs file indicates the directory and files that the storybook will look for to put as documentation storybook main cjs module exports stories src stories mdx src stories js jsx ts tsx Import global css into Storybook storybook preview cjs import src styles global css export const parameters actions argTypesRegex on A Z controls matchers color background color i date Date TokensFinally we ll configure our DS tokens which is basically passing Figma s token definitions to code Take the Design System s definitions of colors sizes and spacing in Figma Import the tokens in the configuration file Note The Tailwind CSS already has default tokens that can be used extended or replaced Color Tokens tailwind config cjs type import tailwindcss Config module exports content src tsx theme colors brand primary darkest AB dark B light EDFFD secondary darkest C dark CD light CEEE background DEFAULT FFF extend fontFamily roboto Roboto sans serif markpro Mark Pro sans serif plugins Size Tokens tailwind config cjs type import tailwindcss Config module exports content src tsx theme fontSize xs px fontWeight lineHeight px sm px fontWeight lineHeight px base px fontWeight lineHeight px lg px fontWeight lineHeight px xl px fontWeight lineHeight px colors extend Building a componentWith all preparation finished all that remains is to assemble the parts Figma React Tailwind CSSThe process is basically looking at the component details in Figma ーlet s face it Figma helps a lot with this ーand transferring it to the code In this example below we extracted the color information from the background of the component and from the text part the sizes font data family weight size etc But how is it in the code src components DatePicker DatePicker jsx lt div className bg neutral light base w px h px border solid border px rounded px border brand primary dark cursor pointer select none flex items center isMounted amp amp bg brand primary dark bg opacity gt lt div className w full font roboto text sm text brand primary dark text center py onClick e gt ref current toggle e gt label lt div gt lt div gt StorybookFor Storybook imagination is the limit We can display the different states of our component detailing the parameters and in some cases allowing the user to change the data and test the different behaviors All this while maintaining a living and functional documentation with the isolated component even before being used on any screen In this example I used two forms With template to reuse the same code in the variants and change only some data Without the template to set up a different scenario with the variants at the same time It is worth remembering that the way to implement this example which is implemented without the template was my choice and the storybook itself helps with similar examples using the decorator or the canvas and reusing the stories Then evaluate each scenario and choose the one that is relevant to your needs export default title Design System Componentes DatePicker component DatePicker args label Lorem Ipsum dados mock argTypes dados control object as ComponentMeta lt typeof DatePicker gt const DatePickerTemplate ComponentStory lt typeof DatePicker gt args gt const label variant args const dadosRetorno setDadosRetorno useState lt DatePickerSelected null gt null const hasSelected variant number gt return dadosRetorno periodoDatas length gt amp amp dadosRetorno variant variant return lt DatePicker label label hasSelected hasSelected variant variant variant dados mock setDadosRetorno setDadosRetorno gt Reusing the template for variants and changing only the necessary data export const Data DatePickerTemplate bind Data args label Data variant Data argTypes variant table disable true hasSelected table disable true setDadosRetorno table disable true Data storyName Data export const DiaUtil DatePickerTemplate bind DiaUtil args label Prazo DU variant DiaUtil argTypes Data argTypes DiaUtil storyName Dias Úteis export const DiaCorrido DatePickerTemplate bind DiaCorrido args label Prazo DC variant DiaCorrido argTypes Data argTypes DiaCorrido storyName Dias Corridos Creating a new way without the template export const DatasSimultaneas gt const dadosRetorno setDadosRetorno useState lt DatePickerSelected null gt null const hasSelected variant number gt return dadosRetorno periodoDatas length gt amp amp dadosRetorno variant variant return lt div className flex flex col gap gt lt div className flex flex row gap gt lt DatePicker label Datas hasSelected hasSelected variant dados mock setDadosRetorno setDadosRetorno gt lt DatePicker label Prazo DU hasSelected hasSelected variant dados mock setDadosRetorno setDadosRetorno gt lt DatePicker label Prazo DC hasSelected hasSelected variant dados mock setDadosRetorno setDadosRetorno gt lt div gt lt div gt DatasSimultaneas argTypes label table disable true Data argTypes DatasSimultaneas parameters controls hideNoControlsWarning true And this is the result We re done here I hope you enjoyed all the content although a little extensive it s essential that we understand I recommend that you do yours test and create different scenarios because this experience goes beyond the needs of the company you are working for It will give you a lot of baggage and knowledge about the systems we build about how we see these systems and especially a horizon on scalability See you later References Design SystemThe Difference Between Design Systems Pattern Libraries Style Guides amp Component Libraries Tailwind CSSInstallation Tailwind CSSIntrodução e como usar o Tailwind CSS Daniel Castro StorybookStorybook Use o com React Angular ou Vue 2023-04-04 17:19:22
Cisco Cisco Blog Inside the Circle of CCIE Certification Success https://feedpress.me/link/23532/16056713/inside-the-circle-of-ccie-certification-success Inside the Circle of CCIE Certification SuccessCCIE certification success stories like all Cisco certification journeys are unique Step inside the memory of this inspiring conversation overheard at Cisco Live Amsterdam 2023-04-04 17:57:25
海外科学 NYT > Science Mass Yellowstone Hunt Kills 1,150 Bison https://www.nytimes.com/2023/04/04/science/bison-hunt-yellowstone-native-americans.html Mass Yellowstone Hunt Kills BisonA months long event just outside the park was intended to keep the animals from spreading a disease to livestock But its scope and other removal measures affecting hundreds more have generated opposition 2023-04-04 17:57:49
ニュース BBC News - Home Grandmother with Alzheimer's faces deportation from Sweden https://www.bbc.co.uk/news/uk-65180538?at_medium=RSS&at_campaign=KARANGA alzheimer 2023-04-04 17:26:47
ニュース BBC News - Home Fulham's Mitrovic gets eight-match ban for pushing referee https://www.bbc.co.uk/sport/football/65181624?at_medium=RSS&at_campaign=KARANGA Fulham x s Mitrovic gets eight match ban for pushing refereeFulham striker Aleksandar Mitrovic receives an eight match ban from an independent commission after pushing referee Chris Kavanagh in their FA Cup loss at Manchester United 2023-04-04 17:40:17
ニュース BBC News - Home Will Donald Trump be charged with a felony? Four things to watch for https://www.bbc.co.uk/news/world-us-canada-65144742?at_medium=RSS&at_campaign=KARANGA president 2023-04-04 17:29:13
ニュース BBC News - Home In pictures: Donald Trump arrested on criminal charges https://www.bbc.co.uk/news/world-us-canada-65181677?at_medium=RSS&at_campaign=KARANGA charges 2023-04-04 17:42:58
ニュース BBC News - Home Trump waves to supporters as he enters Manhattan court https://www.bbc.co.uk/news/world-us-canada-65181843?at_medium=RSS&at_campaign=KARANGA members 2023-04-04 17:44:00
ニュース BBC News - Home Moana: Another Disney remake but is it too soon? https://www.bbc.co.uk/news/entertainment-arts-65171981?at_medium=RSS&at_campaign=KARANGA moana 2023-04-04 17:14:03
ビジネス ダイヤモンド・オンライン - 新着記事 明治? 立教? MARCHの学生に大学生活の本音を聞いてみた - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/320725 2023-04-05 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 なぜ、成功者は龍神を祀る神社を重要視するのか? その理由は、龍神の持つ神としての特性にあった!【書籍オンライン編集部セレクション】 - 龍神とつながる強運人生 https://diamond.jp/articles/-/320411 龍神 2023-04-05 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 おひとりさまが家を買う時、必ず確認すべきこと - ひとりで楽しく生きるためのお金大全 https://diamond.jp/articles/-/320158 おひとりさまが家を買う時、必ず確認すべきことひとりで楽しく生きるためのお金大全おひとりさまの老後には、現役時代には見えにくい落とし穴がある税金や社会保険などの制度は結婚して子どもがいる人を中心に設計されており、知らずにいると独身者は損をする可能性があります。 2023-04-05 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 感じのいい人が、角を立てずに「言いにくいこと」を伝える方法とは? - 気づかいの壁 https://diamond.jp/articles/-/320441 感じのいい人が、角を立てずに「言いにくいこと」を伝える方法とは気づかいの壁感じのいい人が、角を立てずに「言いにくいこと」を伝える方法とは「気がつくだけの人」で終わらず、「気がきく人」に変われる、とっておきのコツをご紹介する著書『気づかいの壁』。 2023-04-05 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 嫌なことが起きて夜も眠れない…頭がモヤモヤする問題を解決する方法 - 精神科医Tomyが教える 心の執着の手放し方 https://diamond.jp/articles/-/318827 【精神科医が教える】嫌なことが起きて夜も眠れない…頭がモヤモヤする問題を解決する方法精神科医Tomyが教える心の執着の手放し方【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-04-05 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 【マンガ】世界的名著のコミック版で読むー企業に潜む「見せかけの数字」とは - コミック版 ザ・ゴール3 チェンジ・ザ・ルール! https://diamond.jp/articles/-/320740 【マンガ】世界的名著のコミック版で読むー企業に潜む「見せかけの数字」とはコミック版ザ・ゴールチェンジ・ザ・ルール国内シリーズ万部・全世界万人が読んだベストセラー『ザ・ゴール』シリーズのつである『チェンジ・ザ・ルール』が多くの読者の声によりコミック化された。 2023-04-05 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 リチウム価格下落、バッテリーとEVに波及するか - WSJ発 https://diamond.jp/articles/-/320789 波及 2023-04-05 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 「道に迷った」を英語でどう言う? - 5分間英単語 https://diamond.jp/articles/-/320611 「道に迷った」を英語でどう言う分間英単語「たくさん勉強したのに英語を話せない……」。 2023-04-05 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【一粒万倍日】より超開運! 見るだけで金運が上がる意外なもの - 旬のカレンダー https://diamond.jp/articles/-/320686 【一粒万倍日】より超開運見るだけで金運が上がる意外なもの旬のカレンダー「今日、何する」「どこ行く」「何食べる」と思ったとき、開くと必ず答えが見つかる書籍、『旬のカレンダー』。 2023-04-05 02:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 【まんが】「言いたいことが言えない」自分がイヤ。「本音が言えない」は本当にダメですか?<心理カウンセラーが教える> - あなたはもう、自分のために生きていい https://diamond.jp/articles/-/319949 twitter 2023-04-05 02:05:00
GCP Cloud Blog What’s new with Google Cloud https://cloud.google.com/blog/topics/inside-google-cloud/whats-new-google-cloud/ What s new with Google CloudWant to know the latest from Google Cloud Find it here in one handy location Check back regularly for our newest updates announcements resources events learning opportunities and more  Tip  Not sure where to find what you re looking for on the Google Cloud blog Start here  Google Cloud blog Full list of topics links and resources Week of April Datastream for BigQuery is Generally Available  Datastream for BigQuery is generally available offering a unique truly seamless and easy to use experience that enables near real time insights in BigQuery with just a few steps Using BigQuery s newly developed change data capture CDC and Storage Write API s UPSERT functionality Datastream efficiently replicates updates directly from source systems into BigQuery tables in real time You no longer have to waste valuable resources building and managing complex data pipelines self managed staging tables tricky DML merge logic or manual conversion from database specific data types into BigQuery data types Just configure your source database connection type and destination in BigQuery and you re all set Datastream for BigQuery will backfill historical data and continuously replicate new changes as they happen Now available  Build an analytics lakehouse on Google Cloud whitepaper The analytics lakehouse combines the benefits of data lakes and data warehouses without the overhead of each In this paper we discuss the end to end architecture which enable organizations to extract data in real time regardless of which cloud or datastore the data reside in use the data in aggregate for greater insight and artificial intelligence AI all with governance and unified access across teams  Download now Week of March Faced with strong data growth Squarespace made the decision to move away from on premises Hadoop to a cloud managed solution for its data platform Learn how they reduced the number of escalations by with the analytics lakehouse on Google Cloud  Read nowLast chance Register to attend Google Data Cloud amp AI Summit  Join us on Wednesday March at AM PDT PM EDT to discover how you can use data and AI to reveal opportunities to transform your business and make your data work smarter Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event New BigQuery editions flexibility and predictability for your data cloud  At the Data Cloud amp AI Summit we announced BigQuery pricing editionsーStandard Enterprise and Enterprise Plusーthat allow you to choose the right price performance for individual workloads Along with editions we also announced autoscaling capabilities that ensure you only pay for the compute capacity you use and a new compressed storage billing model that is designed to reduce your storage costs Learn more about latest BigQuery innovations and register for the upcoming BigQuery roadmap session on April Introducing Looker Modeler A single source of truth for BI metrics  At the Data Cloud amp AI Summit we introduced a standalone metrics layer we call Looker Modeler available in preview in Q With Looker Modeler organizations can benefit from consistent governed metrics that define data relationships and progress against business priorities and consume them in BI tools such as Connected Sheets Looker Studio Looker Studio Pro Microsoft Power BI Tableau and ThoughtSpot Bucket based log based metrics ーnow generally available ーallow you to track visualize and alert on important logs in your cloud environment from many different projects or across the entire organization based on what logs are stored in a log bucket Week of March Chronicle Security Operations Feature Roundup Bringing a modern and unified security operations experience to our customers is and has been a top priority with the Google Chronicle team We re happy to show continuing innovation and even more valuable functionality In our latest release roundup we ll highlight a host of new capabilities focused on delivering improved context collaboration and speed to handle alerts faster and more effectively Learn how our newest capabilities enable security teams to do more with less here Announcing Google s Data Cloud amp AI Summit March th  Can your data work smarter How can you use AI to unlock new opportunities Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Artifact Registry Feature Preview Artifact Registry now supports immutable tags for Docker repositories If you enable this setting an image tag always points to the same image digest including the default latest tag This feature is in Preview Learn moreWeek of March A new era for AI and Google Workspace  Google Workspace is using AI to become even more helpful starting with new capabilities in Docs and Gmail to write and refine content Learn more Building the most open and innovative AI ecosystem  In addition to the news this week on AI products Google Cloud has also announced new partnerships programs and resources This includes bringing bringing the best of Google s infrastructure AI products and foundation models to partners at every layer of the AI stack chipmakers companies building foundation models and AI platforms technology partners enabling companies to develop and deploy machine learning ML models app builders solving customer use cases with generative AI and global services and consulting firms that help enterprise customers implement all of this technology at scale Learn more From Microbrows to Microservices  Ulta Beauty is building their digital store of the future but to maintain control over their new modernized application they turned to Anthos and GKE Google Cloud s managed container services to provide an eCommerce experience as beautiful as their guests Read our blog to see how a newly minted Cloud Architect learnt Kubernetes and Google Cloud to provide the best possible architecture for his developers Learn more Now generally available understand and trust your data with Dataplex data lineage a fully managed Dataplex capability that helps you understand how data is sourced and transformed within the organization Dataplex data lineage automatically tracks data movement across BigQuery BigLake Cloud Data Fusion Preview and Cloud Composer Preview eliminating operational hassles around manual curation of lineage metadata Learn more here Rapidly expand the reach of Spanner databases with read only replicas and zero downtime moves Configurable read only replicas let you add read only replicas to any Spanner instance to deliver low latency reads to clients in any geography Alongside Spanner s zero downtime instance move service you have the freedom to move your production Spanner instances from any configuration to another on the fly with zero downtime whether it s regional multi regional or a custom configuration with configurable read only replicas Learn more here Week of March Automatically blocking project SSH keys in Dataflow is now GA This service option allows Dataflow users to prevent their Dataflow worker VMs from accepting SSH keys that are stored in project metadata and results in improved security Getting started is easy enable the block project ssh keys service option while submitting your Dataflow job Celebrate International Women s Day Learn about the leaders driving impact at Google Cloud and creating pathways for other women in their industries Read more Google Cloud Deploy now supports Parallel Deployment to GKE and Cloud Run workloads This feature is in Preview  Read more Sumitovant doubles medical research output in one year using LookerSumitovant is a leading biopharma research company that has doubled their research output in one year alone By leveraging modern cloud data technologies Sumitovant supports their globally distributed workforce of scientists to develop next generation therapies using Google Cloud s Looker for trusted self service data research To learn more about Looker check out Week of Feb Mar Add geospatial intelligence to your Retail use cases by leveraging the CARTO platform on top of your data in BigQueryLocation data will add a new dimension to your Retail use cases like site selection geomarketing and logistics and supply chain optimization Read more about the solution and various customer implementations in the CARTO for Retail Reference Guide and see a demonstration in this blog Google Cloud Deploy support for deployment verification is now GA  Read more or Try the DemoWeek of Feb Feb Logs for Network Load Balancing and logs for Internal TCP UDP Load Balancingare now GA Logs are aggregated per connection and exported in near real time providing useful information such as tuples of the connection received bytes and sent bytes for troubleshooting and monitoring the pass through Google Cloud Load Balancers Further customers can include additional optional fields such as annotations for client side and server side GCE and GKE resources to obtain richer telemetry The newly published Anthos hybrid cloud architecture reference design guideprovides opinionated guidance to deploy Anthos in a hybrid environment to address some common challenges that you might encounter Check out the architecture reference design guidehere to accelerate your journey to hybrid cloud and containerization Week of Feb Feb Deploy PyTorch models on Vertex AI in a few clicks with prebuilt PyTorch serving containers which means less code no need to write Dockerfiles and faster time to production Confidential GKE Nodes on Compute Optimized CD VMs are now GA Confidential GKE Nodes help to increase the security of your GKE clusters by leveraging hardware to ensure your data is encrypted in memory helping to defend against accidental data leakage malicious administrators and “curious neighbors Getting started is easy as your existing GKE workloads can run confidentially with no code changes required Announcing Google s Data Cloud amp AI Summit March th Can your data work smarter How can you use AI to unlock new opportunities Register for Google Data Cloud amp AI Summit a digital event for data and IT leaders data professionals developers and more to explore the latest breakthroughs Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Running SAP workloads on Google Cloud Upgrade to our newly released Agent for SAP to gain increased visibility into your infrastructure and application performance The new agent consolidates several of our existing agents for SAP workloads which means less time spent on installation and updates and more time for making data driven decisions In addition there is new optional functionality that powers exciting products like Workload Manager a way to automatically scan your SAP workloads against best practices Learn how to install or upgrade the agent here Leverege uses BigQuery as a key component of its data and analytics pipeline to deliver innovative IoT solutions at scale As part of the Built with BigQuery program this blog post goes into detail about Leverege IoT Stack that runs on Google Cloud to power business critical enterprise IoT solutions at scale  Download white paper Three Actions Enterprise IT Leaders Can Take to Improve Software Supply Chain Security to learn how and why high profile software supply chain attacks like SolarWinds and Logj happened the key lessons learned from these attacks as well as actions you can take today to prevent similar attacks from happening to your organization Week of Feb Feb Immersive Stream for XRleverages Google Cloud GPUs to host render and stream high quality photorealistic experiences to millions of mobile devices around the world and is now generally available Read more here Reliable and consistent data presents an invaluable opportunity for organizations to innovate make critical business decisions and create differentiated customer experiences But poor data quality can lead to inefficient processes and possible financial losses Today we announce new Dataplex features automatic data quality AutoDQ and data profiling available in public preview AutoDQ offers automated rule recommendations built in reporting and serveless execution to construct high quality data  Data profiling delivers richer insight into the data by identifying its common statistical characteristics Learn more Cloud Workstations now supports Customer Managed Encryption Keys CMEK which provides user encryption control over Cloud Workstation Persistent Disks Read more Google Cloud Deploy now supports Cloud Run targets in General Availability Read more Learn how to use NetApp Cloud Volumes Service as datastores for Google Cloud VMware Engine for expanding storage capacity Read moreWeek of Jan Feb Oden Technologies uses BigQuery to provide real time visibility efficiency recommendations and resiliency in the face of network disruptions in manufacturing systems As part of the Built with BigQuery program this blog post describes the use cases challenges solution and solution architecture in great detail Manage table and column level access permissions using attribute based policies in Dataplex Dataplex attribute store provides a unified place where you can create and organize a Data Class hierarchy to classify your distributed data and assign behaviors such as Table ACLs and Column ACLs to the classified data classes Dataplex will propagate IAM Roles to tables across multiple Google Cloud projects according to the attribute s assigned to them and a single merged policy tag to columns according to the attribute s attached to them  Read more Lytics is a next generation composableCDP that enables companies to deploy a scalable CDP around their existing data warehouse lakes As part of the Built with BigQuery program for ISVs Lytics leverages Analytics Hub to launch secure data sharing and enrichment solution for media and advertisers This blog post goes over Lytics Conductor on Google Cloud and its architecture in great detail Now available in public preview Dataplex business glossary offers users a cloud native way to maintain and manage business terms and definitions for data governance establishing consistent business language improving trust in data and enabling self serve use of data Learn more here Security Command Center SCC Google Cloud s native security and risk management solution is now available via self service to protect individual projects from cyber attacks It s never been easier to secure your Google Cloud resources with SCC Read our blog to learn more To get started today go to Security Command Center in the Google Cloud console for your projects Global External HTTP S Load Balancer and Cloud CDN now support advanced traffic management using flexible pattern matching in public preview This allows you to use wildcards anywhere in your path matcher You can use this to customize origin routing for different types of traffic request and response behaviors and caching policies In addition you can now use results from your pattern matching to rewrite the path that is sent to the origin Run large pods on GKE Autopilot with the Balanced compute class When you need computing resources on the larger end of the spectrum we re excited that the Balanced compute class which supports Pod resource sizes up to vCPU and GiB is now GA Week of Jan Jan Starting with Anthos version Google supports each Anthos minor version for months after the initial release of the minor version or until the release of the third subsequent minor version whichever is longer We plan to have Anthos minor release three times a year around the months of April August and December in with a monthly patch release for example z in version x y z for supported minor versions For more information read here Anthos Policy Controller enables the enforcement of fully programmable policies for your clusters across the environments We are thrilled to announce the launch of our new built in Policy Controller Dashboard a powerful tool that makes it easy to manage and monitor the policy guardrails applied to your Fleet of clusters New policy bundles are available to help audit your cluster resources against kubernetes standards industry standards or Google recommended best practices The easiest way to get started with Anthos Policy Controller is to just install Policy controller and try applying a policy bundle to audit your fleet of clusters against a standard such as CIS benchmark Dataproc is an important service in any data lake modernization effort Many customers begin their journey to the cloud by migrating their Hadoop workloads to Dataproc and continue to modernize their solutions by incorporating the full suite of Google Cloud s data offerings Check out this guide that demonstrates how you can optimize Dataproc job stability performance and cost effectiveness Eventarc adds support for new direct events from the following Google services in Preview API Gateway Apigee Registry BeyondCorp Certificate Manager Cloud Data Fusion Cloud Functions Cloud Memorystore for Memcached Database Migration Datastream Eventarc Workflows This brings the total pre integrated events offered in Eventarc to over events from Google services and third party SaaS vendors  mFit release adds support for JBoss and Apache workloads by including fit analysis and framework analytics for these workload types in the assessment report See the release notes for important bug fixes and enhancements Google Cloud Deploy Google Cloud Deploy now supports Skaffold version  Release notesCloud Workstations Labels can now be applied to Cloud Workstations resources  Release notes Cloud Build Cloud Build repositories nd gen lets you easily create and manage repository connections not only through Cloud Console but also through gcloud and the Cloud Build API Release notesWeek of Jan Jan Cloud CDN now supports private origin authentication for Amazon Simple Storage Service Amazon S buckets and compatible object stores in Preview This capability improves security by allowing only trusted connections to access the content on your private origins and preventing users from directly accessing it Week of Jan Jan Revionics partnered with Google Cloud to build a data driven pricing platform for speed scale and automation with BigQuery Looker and more As part of the Built with BigQuery program this blog post describes the use cases problems solved solution architecture and key outcomes of hosting Revionics product Platform Built for Change on Google Cloud Comprehensive guide for designing reliable infrastructure for your workloads in Google Cloud The guide combines industry leading reliability best practices with the knowledge and deep expertise of reliability engineers across Google Understand the platform level reliability capabilities of Google Cloud the building blocks of reliability in Google Cloud and how these building blocks affect the availability of your cloud resources Review guidelines for assessing the reliability requirements of your cloud workloads Compare architectural options for deploying distributed and redundant resources across Google Cloud locations and learn how to manage traffic and load for distributed deployments Read the full blog here GPU Pods on GKE Autopilot are now generally available Customers can now run ML training inference video encoding and all other workloads that need a GPU with the convenience of GKE Autopilot s fully managed Kubernetes environment Kubernetes v is now generally available on GKE GKE customers can now take advantage of the many new features in this exciting release This release continues Google Cloud s goal of making Kubernetes releases available to Google customers within days of the Kubernetes OSS release Event driven transfer for Cloud Storage Customers have told us they need asynchronous scalable service to replicate data between Cloud Storage buckets for a variety of use cases including aggregating data in a single bucket for data processing and analysis keeping buckets across projects regions continents in sync etc Google Cloud now offers Preview support for event driven transfer serverless real time replication capability to move data from AWS S to Cloud Storage and copy data between multiple Cloud Storage buckets Read the full blog here Pub Sub Lite now offers export subscriptions to Pub Sub This new subscription type writes Lite messages directly to Pub Sub no code development or Dataflow jobs needed Great for connecting disparate data pipelines and migration from Lite to Pub Sub See here for documentation 2023-04-04 19: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件)