投稿時間:2022-07-09 02:21:36 RSSフィード2022-07-09 02:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Future Proof Cost Optimization with Attribute-Based Instance Type Selection and Amazon EC2 Spot https://aws.amazon.com/blogs/apn/future-proof-cost-optimization-with-attribute-based-instance-type-selection-and-amazon-ec2-spot/ Future Proof Cost Optimization with Attribute Based Instance Type Selection and Amazon EC SpotAs part of its SaaS platform Druva runs containerized applications with microservices architecture using Auto Scaling groups and Amazon Amazon ECS Explore the cost optimization journey of Druva using Spot instances with Auto Scaling groups challenges faced by them during this journey and how attribute based instance type selection ABS came to the rescue in addressing those challenges in optimizing costs 2022-07-08 16:20:34
海外TECH Ars Technica NASA names first five targets for Webb images https://arstechnica.com/?p=1865127 strengths 2022-07-08 16:28:47
海外TECH MakeUseOf How to Create a Spotify Iceberg and Explore Your Music Tastes https://www.makeuseof.com/create-a-spotify-iceberg-explore-music-tastes/ artists 2022-07-08 16:41:34
海外TECH MakeUseOf 6 Online Games You Can Play With Friends Using Zoom https://www.makeuseof.com/zoom-online-games-with-friends/ online 2022-07-08 16:30:13
海外TECH MakeUseOf Understanding Computer Processors: CPUs vs. vCPUs and Threads vs. Cores https://www.makeuseof.com/cpu-vs-vcpu-threads-vs-cores/ computer 2022-07-08 16:15:14
海外TECH DEV Community PHP IMAP !<3 OAuth ***MUST READ*** https://dev.to/francescobianco/php-imap-oauth-k3l PHP IMAP lt OAuth MUST READ I m here with a sadstory in the last two year both Google and Microsoft annunced to ban from the BASIC login IMAP service All PHP application are based on the standard PHP IMAP extension it works well for of cases but what NOW In fact standard PHP IMAP not goes with OAuth That s the gold mine for me I m looking for million dollar project to push my career up on the Open Source Olympus I hope it s the time Please rate my project Spread the voice Read more here issuecomment 2022-07-08 16:34:19
海外TECH DEV Community Neovim Customization https://dev.to/iamb4uc/neovim-customization-5fge Neovim Customization Why use vim and neovim over other text editors and IDEs For me I ve always loved minimalism and performance over ease of use and other flashy bloat no one really uses and cares about This why I personally use Terminal based text editors Preferably VIM or NeoVIM Tho I currently am running NeoVIM but both of them are basically the same NeoVIM is a little bit more extensible than VIM and easy to manage imo But enough talking lets start configuring our VIM NVIM to make it more like an actual developing environment IMPORTANT Since I mainly use Neovim some of the stuff written in this blog might not work for vim users for them just avoid the once that are not compatible if I find any alternatives to those plugins and setting I will update the blogs with the details Step Setting up the config files and directory for vim and neovimFollow the commands given below to make all the necessary files and directories for neovimcdmkdir p config nvimtouch config nvim init vimThe init vim file is the config file that we will edit in this post to make our base neovim to look and act like an actual IDE Step Editing the init vim fileTo edit this init vim open the file with the text editor of your choice and paste the following text set number set relativenumber set autoindent set expandtab set tabstop set shiftwidth set smarttab set softtabstop These parameters set basic functionality for vim such as number lines auto indentation amd smart tabs By default vim doesnt support mouse and its kinda normal to not use mouse since everything in vim can be done using the keyboard but if you are a soy and want to use mouse type this this too set mouse aFor now we have done all the basic settings Step Adding a Plug In ManagerFor this setup we will use Vim Plug to manage our plugins Install CurlDebian basedapt install curlGentooemerge curlOpenBSDpkg add curlArch basedpacman S curlVoidxbps install S curlCreate the installation directories download and install Vim Plug curl fLo vim autoload plug vim create dirs Step Installing Plug insIn your init vim file add these lines at the bottom of what we previously wrote call plug begin call plug end We will be able to add plugins in between the two commands Now we will add our first plug in Find the desireable plug ins from VIM Awesome this is one of the best places to find vim and neovim plugins For this tutorial we will add couple of plug ins to make our neovim look good and work like an ide Plug tpope vim fugitive Git integration in to nvimPlug Yggdroot indentLine Line IndentationsPlug farmergreg vim lastplace Continue from where you left last timePlug raimondi delimitmate Provides insert mode auto completion for special charactersPlug tpope vim markdown Markdown runtime filesPlug tpope vim surround Change paranthesis and quotes into other forms quicklyPlug scrooloose nerdtree File navigatorPlug vim scripts indentpython vim Indentation script for pythonPlug alvan vim closetag Makes a close tag for html quicklyPlug luochen rainbow Provides different colors to different paranthesisPlug airblade vim gitgutter Shows git diffs in the sign columnsPlug lilydjwg colorizer Provides color for the rrggbb or rgb color format in filesPlug vim airline vim airline Powerline Theme Status linePlug vim airline vim airline themes Themes for vim airlinePlug rafi awesome vim colorschemes Change colorschemes on the fly for vim and nvimPlug ryanoasis vim devicons IconsPlug SirVer ultisnips Code completion using snippets from vim snippets and custom snippetsPlug honza vim snippets Provides snippets for ultisnipsFirst of all add few keybinding to open up NERDTree and make vertical and horizontal splits in your init nvim nnoremap lt C f gt NERDTreeFocus lt CR gt nnoremap lt C n gt NERDTree lt CR gt nnoremap lt C t gt NERDTreeToggle lt CR gt nnoremap lt A h gt vsplit lt CR gt nnoremap lt A k gt split lt CR gt After you ve saved and exited the file now open up neovim run PlugInstall This will install all the plugins in the plugged directory in local share nvim plugged Since we installed vim airline and vim colorschemes we can change the look and feel of neovim vim Find your favorite vim colorscheme here also find your favorite airline theme hereFor this blog we will use the gruvbox theme along with the base airline theme To make this permanent write these in your nvim config colorscheme gruvboxlet g airline left sep  let g airline left alt sep  let g airline right sep  let g airline right alt sep  let g airline theme base Since we also have a plugin for autoindentation and indent lines We have to add these lines to the config too let g indentLine fileTypeExclude help nerdtree diff let g indentLine fileTypeExclude help nerdtree diff markdown let g indentLine bufTypeExclude help terminal let g indentLine showFirstIndentLevel let g indentLine indentLevel let g indentLine char list ¦ ┆ ┊ OPTIONAL Adding Code suggestionsThis section is a bit tidious and is only available for neovim users so if you use vim this section is irrelevnet to you Add this plug in in your init vim file Plug neoclide coc nvim Code suggestions and completionNow this plugin wont run without nodejs in your machine so follow these steps to make it work Install Nodejs and npm Debianapt install nodejs npmArchpacman S nodejs npmGentooemerge nodejsOpenBSDpkg add nodeVoidxbps install nodejsFor Other Distos and operating systems visit Additional PackagesInstall yarnnpm install yarnAfter yarn is finished installing execute the following commandcd local share nvim plugged coc nvim yarn installyarn buildNow open up an nvim install and check if any error is shown if not then it is successfully installed Otherwise check online for errors From here on out check this github repository to find your desired language to use and ways to download the language server This is a bit tidious process but here is one example EXAMPLE Installing the python language serverInstall python and python pip Install jedi from the pip repositorypip install jediOpen up and nvim instance and run CocInstall coc python this will install the python module for Coc Follow this type of procedure to install all of your favorite language servers and have fun codingHope this was helpfull to your if so them be sure to help me by either sharing or donating 2022-07-08 16:07:43
海外科学 NYT > Science 3-D Printing Might Recreate the Elgin Marbles of Greece https://www.nytimes.com/2022/07/08/science/elgin-marbles-3d-print.html D Printing Might Recreate the Elgin Marbles of GreeceThe British Museum has staunchly refused to return the Parthenon Marbles to Greece A team of archaeologists are working on a technological solution to the dispute 2022-07-08 16:03:06
海外科学 NYT > Science Biodiversity Crisis Affects Billions Who Rely on Wild Species, Researchers Say https://www.nytimes.com/2022/07/08/climate/species-biodiversity-united-nations.html Biodiversity Crisis Affects Billions Who Rely on Wild Species Researchers SayThe latest global assessment of the decline in plant and animal life found some bright spots but recommended significant changes to hunting and other practices to address the risks 2022-07-08 16:14:44
金融 金融庁ホームページ バーゼル銀行監督委員会による「比例適用に関するハイレベルな考慮事項」の公表について掲載しました。 https://www.fsa.go.jp/inter/bis/20220708/20220708.html 適用 2022-07-08 17:00:00
金融 金融庁ホームページ 金融庁職員の新型コロナウイルス感染について公表しました。 https://www.fsa.go.jp/news/r4/sonota/20220708.html 新型コロナウイルス 2022-07-08 17:00:00
ニュース BBC News - Home Sir Keir Starmer cleared by police over Durham lockdown beers https://www.bbc.co.uk/news/uk-politics-62095955?at_medium=RSS&at_campaign=KARANGA labour 2022-07-08 16:53:06
ニュース BBC News - Home Shinzo Abe: Japan ex-leader's alleged killer held grudge against group - police https://www.bbc.co.uk/news/world-asia-62098100?at_medium=RSS&at_campaign=KARANGA Shinzo Abe Japan ex leader x s alleged killer held grudge against group policeThe man suspected of killing Japan s ex PM held a grudge against a group he thought Shinzo Abe was part of police say 2022-07-08 16:42:53
ニュース BBC News - Home Met Police commissioner: Sir Mark Rowley named as force's new leader https://www.bbc.co.uk/news/uk-england-london-62095222?at_medium=RSS&at_campaign=KARANGA private 2022-07-08 16:37:56
ニュース BBC News - Home Austrian Grand Prix: Max Verstappen on pole as both Mercedes crash https://www.bbc.co.uk/sport/formula1/62099810?at_medium=RSS&at_campaign=KARANGA Austrian Grand Prix Max Verstappen on pole as both Mercedes crashRed Bull s Max Verstappen pips the Ferrari of Charles Leclerc to pole position at the Austrian Grand Prix with his final lap of qualifying 2022-07-08 16:30:39
ニュース BBC News - Home Wimbledon: Alfie Hewett into first wheelchair singles final after remarkable comeback https://www.bbc.co.uk/sport/disability-sport/62095577?at_medium=RSS&at_campaign=KARANGA Wimbledon Alfie Hewett into first wheelchair singles final after remarkable comebackAlfie Hewett captures the hearts of Court One with a remarkable comeback to reach his first Wimbledon men s wheelchair singles final 2022-07-08 16:48:00
ニュース BBC News - Home Euro 2022: Linda Sallstrom fires Finland into shock early lead against Spain https://www.bbc.co.uk/sport/av/football/62101097?at_medium=RSS&at_campaign=KARANGA Euro Linda Sallstrom fires Finland into shock early lead against SpainWatch the moment Linda Sallstrom gives Finland a shock lead in the opening minute of their Euro match against Spain at Stadium MK 2022-07-08 16:26:06
北海道 北海道新聞 渡名喜がV、阿部一は決勝 柔道GS、舟久保も進出 https://www.hokkaido-np.co.jp/article/703555/ 阿部一 2022-07-09 01:48:12
北海道 北海道新聞 バレーボール男子、日本が8勝目 カナダ退ける、Nリーグ https://www.hokkaido-np.co.jp/article/703549/ 大阪大会 2022-07-09 01:48:12
北海道 北海道新聞 【参院選コラム】手製銃でためらいなく狙撃、真相は? 動機は「安倍氏とつながる団体への恨み」と言うが… https://www.hokkaido-np.co.jp/article/703611/ 奈良市内 2022-07-09 01:48:00
北海道 北海道新聞 NY株、もみ合い https://www.hokkaido-np.co.jp/article/703592/ 工業 2022-07-09 01:12:17
北海道 北海道新聞 天売、焼尻で繰り上げ投票 投票率75・25% https://www.hokkaido-np.co.jp/article/703582/ 留萌管内 2022-07-09 01:18:00
北海道 北海道新聞 安倍元首相銃撃 道内経済人から悼む声 ロシアと関係強化/TPPでアイデア https://www.hokkaido-np.co.jp/article/703579/ 安倍元首相 2022-07-09 01:13:20
北海道 北海道新聞 道内感染増加の傾向 鈴木知事、接種促進を指示 https://www.hokkaido-np.co.jp/article/703603/ 新型コロナウイルス 2022-07-09 01:12:09
北海道 北海道新聞 英首相、指導力たたえ追悼 女王もしのぶ https://www.hokkaido-np.co.jp/article/703610/ 安倍晋三 2022-07-09 01:11:00
北海道 北海道新聞 「母親殺した」と110番 女性死亡、息子は自殺か https://www.hokkaido-np.co.jp/article/703609/ 自殺 2022-07-09 01:03:00
GCP Cloud Blog How Ocado Technology delivers smart, secure online grocery shopping with Security Command Center https://cloud.google.com/blog/products/identity-security/how-ocado-technology-delivers-online-grocery-shopping-securely-with-google-cloud/ How Ocado Technology delivers smart secure online grocery shopping with Security Command CenterGrocery shopping has changed for good and Ocado Group has played a major role in this transformation We started as an online supermarket applying technology and automation to revolutionise the online grocery space Today after two decades of innovation we are a global technology company providing state of the art software robotics and AI solutions for online grocery We created the Ocado Smart Platform which powers the online operations of some of the world s most forward thinking grocery retailers from Kroger in the U S to Coles in Australia Grocery shopping has changed for good and Ocado Group has played a major role in this transformation We started as an online supermarket applying technology and automation to revolutionise the online grocery space Today after two decades of innovation we are a global technology company providing state of the art software robotics and AI solutions for online grocery We created the Ocado Smart Platform which powers the online operations of some of the world s most forward thinking grocery retailers from Kroger in the U S to Coles in Australia With the global penetration of the Ocado Smart Platform and the increasing complexity of our operations we re paying close attention to our security estate To proactively identify and tackle any security vulnerabilities we decided to introduce Google Cloud s Security Command Center  SCC Premium as our centralized vulnerability and threat reporting service Gaining consolidated visibility into Ocado s cloud assetsFrom the start we were impressed with the speed of deployment and security findings surfaced with SCC Where it would take several weeks in the past with other software vendors we were able to quickly set up SCC in our environment and we could immediately start identifying our most vulnerable assets Today we use SCC to detect misconfigurations and vulnerabilities across hundreds of projects throughout our organization and we use it to get an aggregated view of our security health findings We filter the findings and then use Pub Sub or Cloud Functions to send alerts directly to the tools each division is working with such as Splunk or JIRA This way each of our teams can discover and respond to the security findings in their own environment with SCC acting as the single source of truth for our security related issues Driving autonomy by delegating security findingsAutonomy fuels innovation at Ocado Technology which is why we want to make our teams as self sufficient as possible SCC helps to make our divisions more autonomous from the central organization It delivers all the security insights technology teams need to make smart decisions on their own and at pace  Here s where SCC s delegation features providing folder and project level access control come in The platform s fine grained access control capabilities enable us to delegate SCC findings to specific teams without having to give them a view of the entire Ocado Technology organization Business units no longer need to contact us in the security team to track down vulnerabilities they can do it themselves in a compliant and secure manner It makes our work more efficient and autonomous allowing everyone to focus on their own areas of expertise and environments Identifying and remediating multiple medium and high vulnerabilitiesSCC s findings are very rich and don t end with the identification of the potential misconfigurations and vulnerabilities It goes beyond this recommending solutions to resolve any issues and providing clear guidelines on next steps That s why the feedback from our users across the organization has been so good SCC delivers on both quality and quantity Since implementation it has helped us identify and remove hundreds of medium and high vulnerabilities from our Google Cloud estate The number of security related findings have also gone down each quarter indicating real and tangible improvements in our security posture SCC is so useful in maintaining our security posture as once we know where the issues are tackling them is easy From hour security scans to instant insightsOne particular issue we ve been able to handle well with SCC are vulnerabilities targeting the Apache logging system Logj SCC informed us about attempted compromises active compromises or the vulnerability exposure of our Dataproc images During Logj response all these would have been otherwise very hard to track down especially with limited resources With SCC we were able to leverage the security expertise of Google Cloud to identify the latest vulnerabilities based on the most up to date security trends and act on them quickly Obviously speed is of the essence when it comes to threat mitigation and SCC has enabled us to fix issues faster making us less exposed to outside threats In the past just scanning everything once could take up to eight hours SCC sped things up from the start and findings have been nearly instantaneous since it rolled out real time Security Health Analytics Strengthening compliance and demonstrating standards to stakeholdersSCC helps us to achieve better compliance standards and demonstrate these standards to our stakeholders We recently ran an internal audit exercise across the Ocado Technology organization for example where we identified the projects with the most numerous and severe security related findings Without the reports from SCC this would have been extremely hard or even impossible We also use the Security Health Analytics information from SCC to visualize the data per project creating a kind of heat map of security across the organization This helps us assign our resources to the right projects and prioritize our efforts accordingly informing our strategic decisions From top down to a developer led securityThere s been a paradigm shift in security operations and things are moving from a top down approach to a more developer led and autonomous process SCC helps drive that change at Ocado Technology It enables us to place the responsibility for security related issues closer to the resource owners By making sure that the teams most impacted by a potential problem are the ones who get to fix it we empower teams to resolve issues proactively and efficiently  Looking forward we can t wait to see SCC evolve further One of the features we re most excited about is the ability to create custom findings currently in preview and additional integration capabilities that enable automation We re still not using everything SCC has to offer but it is already a vital tool for our security team At Ocado Technology we re pioneering the future of online grocery shopping and this future needs a strong security foundation SCC helps us to strengthen and maintain that foundation making profitable scalable and secure online grocery shopping possible for even more businesses around the world Related ArticleProtecting customers against cryptomining threats with VM Threat Detection in Security Command CenterExtending threat detection in Security Command Center with Virtual Machine Threat Detection Read Article 2022-07-08 16:30:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)