AWS |
AWS |
Back to Basics: Building a Global Network with AWS Transit Gateway |
https://www.youtube.com/watch?v=n3shA3b6h8Q
|
Back to Basics Building a Global Network with AWS Transit GatewayConnecting branch and corporate offices into the AWS cloud to build a global network is necessary to provide ubiquitous accessibility for users This solution uses AWS Transit Gateway AWS Direct Connect and AWS Accelerated Site to Site VPN to build a modern secure scalable and cost efficient WAN on top of the AWS global network Additional Resources Check out more resources for architecting in the AWS cloud AWS |
2021-05-12 16:06:15 |
AWS |
AWS |
Accenture: Natural Language Processing and Graph Databases for the Oil and Gas Industry |
https://www.youtube.com/watch?v=ekXdohpAy5U
|
Accenture Natural Language Processing and Graph Databases for the Oil and Gas IndustryLearn how Accenture helps their customers in the Oil and Gas industry make important decisions rapidly and responsibly The solution supports decision makers with natural language processing and graph databases to discover relations to prior knowledge to speed up their risk analysis The architecture is based on Amazon SageMaker Amazon Comprehend Amazon Neptune AWS Lambda and Amazon Elasticsearch Service Check out more resources for architecting in the AWScloud AWS |
2021-05-12 16:05:23 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
VSCode と Docker で C#のサンプルコードを動かしたい |
https://teratail.com/questions/337984?rss=all
|
VSCodeとDockerでCのサンプルコードを動かしたい目的Cの参考書を読み進めながら、サンプルを手元で動かしたい。 |
2021-05-13 01:58:32 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
Rails6でjqueryが読み込めない |
https://teratail.com/questions/337983?rss=all
|
|
2021-05-13 01:41:20 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
DOMを利用して再帰的に走査する/HTMLを再構築する方法につきまして |
https://teratail.com/questions/337982?rss=all
|
DOMを利用して再帰的に走査するHTMLを再構築する方法につきましてやりたいことと試したことHTMLの構造を把握し、中身をチェックした上で改めて適切なHTMLを再構築したいと考えております。 |
2021-05-13 01:21:58 |
Program |
[全てのタグ]の新着質問一覧|teratail(テラテイル) |
jsonファイルをs3に保存する方法 |
https://teratail.com/questions/337981?rss=all
|
jsonファイルをsに保存する方法jsonファイルをsに保存するにはどうしたらいいでしょうか。 |
2021-05-13 01:01:26 |
golang |
Goタグが付けられた新着投稿 - Qiita |
GO言語基礎②(defer/map/range/Interface/goroutine/channel) |
https://qiita.com/kenRp01/items/70e63c25567048071feb
|
channelチャネル同期処理channelはmain処理とgoroutine間の並列処理中のデータのやり取りをする場合、つ以上のgoroutineの処理でのデータのやり取りを行う場合に利用されます。 |
2021-05-13 01:05:01 |
海外TECH |
Ars Technica |
$50 monthly broadband discounts available starting today via 825 ISPs |
https://arstechnica.com/?p=1764525
|
broadband |
2021-05-12 16:36:18 |
海外TECH |
Ars Technica |
Snap cuts off Yolo, LMK anonymous messaging apps after lawsuit over teen’s death |
https://arstechnica.com/?p=1764515
|
alleges |
2021-05-12 16:23:44 |
海外TECH |
DEV Community |
✅ 5 simple security tips for your .NET applications |
https://dev.to/dotnetsafer/5-simple-security-tips-for-your-net-applications-2ola
|
simple security tips for your NET applicationsWhen programming one of the aspects that we must take into account is the security of our code we must maintain a balance between good practices software performance and software security From Dotnetsafer we want to give you some basic advice to start paying attention to the security of the code you program and make your net application secure As we mentioned before these are basic aspects that any programmer could start implementing today in this blog you have more articles with more advanced solutions and tips Avoid direct connections to databases Many times our applications require databases the easiest way to use these databases is to use a connector from our application In this way we are exposing our server port username and password to anyone who has access to the application How can we fix it Here we must take into account several aspects one of them being how our application is structured and its needs In a simple way we could apply the following measures Do not use Universal Data Link UDL filesEncrypt the configuration filesUsing Windows AuthenticationUsing Azure Key Vault SecretIf we need complete and advanced security we recommend outsourcing the connections Data encryption in NETWhenever we work with data whether it is application settings or user information we must keep the data encrypted at all times With this class you will be able to manipulate files with a little more security for example To save a file DotnetsaferSecureFile WriteAllText example txt The user Pedro has registered in passwordSecurity To load this file var data DotnetsaferSecureFile ReadAllText example txt passwordSecurity This is a small example to start integrating security and encryption into the data handled by our application both files and strings connections documents etc In this example we have seen that the password passwordSecurity is in the code at first sight that should not be so the best option would be to outsource this password and load it in a secure way As we did for example with the MySQL connection strings using Azure Key Vault Secret Using the Data Protection API in ASP NET CoreIn ASP NET Core we could use IDataProtector to protect the information and documents that we manipulate in our applications This method is very simple to implement and has several features that make it really good In order to use it in the StartUp cs class of our ASP NET Core application in the ConfigureServices method we will add public void ConfigureServices IServiceCollection services services AddDataProtection services AddTransient lt ProtectorHelper gt Then we ll load it as a parameter in the constructor of the classes in which we want to implement it so we can use it to encrypt the information for example public Class ProtectorHelper protectionHelper This will cause a user s file to be encrypted and expire in hours i e after hours it cannot be decrypted by anyone var usferFile protectionHelper Encrypt fileData TimeSpan FromHours Only with these measures our application will be much safer now we need to implement it correctly to ensure the safety of our customers Update the external dependencies and libraries This recommendation may be obvious but not many people take it into account when programming in NET we make use of many libraries usually many of them offered by Microsoft others developed by users or companies like many of the NuGet packages It is important that we check which libraries are using our application and inform us of any known vulnerabilities or possible security risks they may cause It is also important to take into account the versions of the Framework we are using for our application since it could have become obsolete and without maintenance and could be a security risk Here we provide you with information about the current framework versions In addition a table with the known vulnerabilities of the most common NET libraries Use security systems and code obfuscation One of the most effective and simple solutions is to use a tool that takes care of protecting your application The above mentioned security best practices are important for keeping your NET application secure but are not sufficient to ensure the integrity of methods connections and other vulnerabilities At Dotnetsafer we offer you the possibility of protecting your applications for free and we provide you with more advanced protections and features so that you can adapt the security to the needs of your applications Advantages of using a security system for NETAvoid wasting time protecting your applications No security knowledge required It allows you to use various protections and features Incorporate the latest security techniques into your application with a couple of clicks Detects and corrects vulnerabilities automatically It allows you to focus on development and continuous integration without worrying about security as it will run on its side And other advantages that make a security system save you time and money with the publication of your software Another important aspect is that the performance of the team development can be very reduced if we implement the protection manually because every time there is an update we will have to protect the application again and the development can become very tedious because the code is more difficult to understand less practical and less optimal In addition many of the protections that we can incorporate manually are at the level of connections file manipulation encryption and good practices in development but for the software to be secure and to be able to guarantee the integrity of our intellectual property it is necessary to use more advanced methods and algorithms For example Dotnetsafer offers protections such as Control flow Modifies the flow of methods and disorders them so that they cannot be represented Constants protection Encrypts and protects the application constants so that sensitive information cannot be obtained Rename Renames all types classes methods and variables of our application so that the operation cannot be understood And many more protections if you want to know about all the protections that dotnetsafer offers we recommend you go to the section and you will be able to obtain more information about each one of them in the Documentation |
2021-05-12 16:27:55 |
Apple |
AppleInsider - Frontpage News |
Lowest price anywhere: AirPods Max on sale for $519 |
https://appleinsider.com/articles/21/05/12/lowest-price-anywhere-airpods-max-on-sale-for-519?utm_medium=rss
|
Lowest price anywhere AirPods Max on sale for Ringing in as the lowest price on record Apple Premier Partner Expercom has AirPods Max on sale for a discount of off retail AirPods Max blowout dealThe blowout sale applies to all five shades of AirPods Max with estimated delivery in three to seven business days at press time Read more |
2021-05-12 16:20:35 |
海外TECH |
Engadget |
Motorola wants to bring remote wireless charging tech to its phones |
https://www.engadget.com/motorola-guru-wireless-partnership-161549220.html
|
remote |
2021-05-12 16:15:49 |
海外科学 |
NYT > Science |
What if Space Junk and Climate Change Become the Same Problem? |
https://www.nytimes.com/2021/05/12/science/space-junk-climate-change.html
|
carbon |
2021-05-12 16:38:46 |
海外科学 |
NYT > Science |
U.S. Must Do More to Track Covid Variants, Scientists Tell Congress |
https://www.nytimes.com/2021/05/12/science/covid-variant-mutation-tracking.html
|
U S Must Do More to Track Covid Variants Scientists Tell CongressAt a House subcommittee hearing witnesses emphasize the need for much more genome sequencing data sharing and research to track virus mutations and their effects |
2021-05-12 16:34:57 |
金融 |
金融庁ホームページ |
「重要情報シート」を作成・活用する際の手引きについて公表しました。 |
https://www.fsa.go.jp/news/r2/singi/20210512.html
|
重要 |
2021-05-12 17:00:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
2025年までに使い捨てプラスチック包装の年間市場投入量を2018年比20%削減 |
https://www.jetro.go.jp/biznews/2021/05/413407e4a686561c.html
|
使い捨て |
2021-05-12 16:40:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
ハンガリーで初の水素充填ステーション開設、英ガス会社 |
https://www.jetro.go.jp/biznews/2021/05/4b9489d8413e7b1b.html
|
開設 |
2021-05-12 16:30:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
上海で初の仮想発電所、スマート節電でCO2排出削減 |
https://www.jetro.go.jp/biznews/2021/05/fc8948dc36394b8d.html
|
排出削減 |
2021-05-12 16:20:00 |
ニュース |
ジェトロ ビジネスニュース(通商弘報) |
海南省、2020年知的財産権の訴訟数が大幅増加 |
https://www.jetro.go.jp/biznews/2021/05/25af0bd1af301a37.html
|
知的財産権 |
2021-05-12 16:10:00 |
海外ニュース |
Japan Times latest articles |
How domestic clinical trials slow Japan’s vaccine approval process |
https://www.japantimes.co.jp/news/2021/05/12/national/japan-vaccine-approval-system/
|
How domestic clinical trials slow Japan s vaccine approval processTo achieve greater efficiency and flexibility some have argued that Japan should institute its own version of the emergency use authorization framework seen in the |
2021-05-13 01:11:50 |
海外ニュース |
Japan Times latest articles |
Accelerated vaccination rollout stirring confusion in Japan |
https://www.japantimes.co.jp/news/2021/05/12/national/vaccine-booking-confusion/
|
Accelerated vaccination rollout stirring confusion in JapanMunicipalities accepting reservations on a first come first served basis have seen booking hotlines overwhelmed and booking websites taken down as applications poured in |
2021-05-13 02:50:01 |
海外ニュース |
Japan Times latest articles |
Sri Lankan’s death in spotlight as Japan debates immigration bill |
https://www.japantimes.co.jp/news/2021/05/12/national/sri-lankans-death-immigration-bill/
|
Sri Lankan s death in spotlight as Japan debates immigration billMany foreign nationals seeking refugee status in Japan have been closely monitoring the Diet debates as possible revisions of the immigration law could affect their |
2021-05-13 02:39:28 |
海外ニュース |
Japan Times latest articles |
Tokyo 2020 sponsor Toyota ‘conflicted’ over pandemic Olympics |
https://www.japantimes.co.jp/news/2021/05/12/national/toyota-olympics-conflicted/
|
automaker |
2021-05-13 02:09:17 |
海外ニュース |
Japan Times latest articles |
After $260 billion slide, Alibaba aims to show the worst is over |
https://www.japantimes.co.jp/news/2021/05/12/business/alibaba-rebound-bid/
|
certain |
2021-05-13 01:14:00 |
海外ニュース |
Japan Times latest articles |
Rise tap former BayStar Takehiro Ishikawa for gridiron conversion |
https://www.japantimes.co.jp/sports/2021/05/12/more-sports/football/takehiro-ishikawa-sagamihara-xleague/
|
league |
2021-05-13 02:25:26 |
海外ニュース |
Japan Times latest articles |
Shohei Ohtani pitches, hits and plays outfield in Angels’ loss |
https://www.japantimes.co.jp/sports/2021/05/12/baseball/mlb/angels-ohtani-fielding/
|
angeles |
2021-05-13 01:41:08 |
海外ニュース |
Japan Times latest articles |
Kenya’s Timothy Cheruiyot adjusts to reality of preparing for the Olympics in a pandemic |
https://www.japantimes.co.jp/sports/2021/05/12/more-sports/track-field/kenya-timothy-cheruiyot-olympics/
|
Kenya s Timothy Cheruiyot adjusts to reality of preparing for the Olympics in a pandemicCoach Bernard Ouma barked orders to start stretching and the team of a dozen athletes fanned out in the morning sunshine leaving a good two |
2021-05-13 01:06:49 |
ニュース |
BBC News - Home |
Israel-Gaza: Fears of war as violence escalates |
https://www.bbc.co.uk/news/world-middle-east-57083595
|
strikes |
2021-05-12 16:36:29 |
ニュース |
BBC News - Home |
Radovan Karadzic: Ex-Bosnian Serb leader to be sent to UK prison |
https://www.bbc.co.uk/news/uk-57090123
|
yugoslavia |
2021-05-12 16:25:57 |
ニュース |
BBC News - Home |
Blackpool lightning strike: Family tribute to Jordan Banks |
https://www.bbc.co.uk/news/uk-england-lancashire-57093289
|
banksjordan |
2021-05-12 16:41:56 |
ニュース |
BBC News - Home |
No 10 seeks to cancel county court debt judgment against Boris Johnson |
https://www.bbc.co.uk/news/uk-politics-57087274
|
downing |
2021-05-12 16:23:18 |
ニュース |
BBC News - Home |
Covid-19: Public inquiry confirmed, and vaccines for 38 and 39-year-olds in England |
https://www.bbc.co.uk/news/uk-57088249
|
coronavirus |
2021-05-12 16:05:05 |
ニュース |
BBC News - Home |
PM apologises for 'events in Ballymurphy' in 1971 |
https://www.bbc.co.uk/news/uk-northern-ireland-57093548
|
belfast |
2021-05-12 16:45:48 |
ニュース |
BBC News - Home |
NFL returns to London with two games at Tottenham Hotspur Stadium in October |
https://www.bbc.co.uk/sport/american-football/57091182
|
october |
2021-05-12 16:22:48 |
ニュース |
BBC News - Home |
Covid-19 in the UK: How many coronavirus cases are there in your area? |
https://www.bbc.co.uk/news/uk-51768274
|
cases |
2021-05-12 16:27:36 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
中国、対米貿易交渉トップ交代を検討 - WSJ発 |
https://diamond.jp/articles/-/270940
|
貿易交渉 |
2021-05-13 01:11:00 |
北海道 |
北海道新聞 |
自民党道連、会長に伊東良孝氏を正式決定 高橋氏は会長代行に |
https://www.hokkaido-np.co.jp/article/543079/
|
伊東良孝 |
2021-05-13 01:11:49 |
北海道 |
北海道新聞 |
IOC会見で「ノー五輪」 男性訴え、映像打ち切り |
https://www.hokkaido-np.co.jp/article/543184/
|
国際オリンピック委員会 |
2021-05-13 01:11:00 |
GCP |
Cloud Blog |
Deploying multi-YAML Workflows definitions with Terraform |
https://cloud.google.com/blog/topics/developers-practitioners/deploying-multi-yaml-workflows-definitions-terraform/
|
Deploying multi YAML Workflows definitions with TerraformI m a big fan of using Workflows to orchestrate and automate services running on Google Cloud and beyond In Workflows you can define a workflow in a YAML or JSON file and deploy it using gcloud or using Google Cloud Console These approaches work but a more declarative and arguably better approach is to use Terraform Let s see how to use Terraform to define and deploy workflows and explore options for keeping Terraform configuration files more manageable Single Terraform fileTerraform has a google workflows workflow resource to define and deploy workflows For step by step instructions see our basic Terraform sample which shows how to define a workflow in main tf and how to deploy it using Terraform Let s take a closer look at how the Workflows resource is defined in Terraform You can see that everything about the workflow such as name region service account and even the workflow definition itself are defined in this single file While this is workable for simple workflow definitions it s hardly maintainable for larger workflows Importing a Workflow definition fileA better approach is to keep the workflow definition in a separate YAML file and import that into Terraform The templatefile function of Terraform makes this possible ーand in fact very easy to do In the Terraform with imported YAML sample you can see how to import an external workflows yaml file into your Terraform definition Importing multiple Workflow definition filesImporting the workflow YAML file is a step in the right direction but in large workflow definitions you often have a main workflow calling multiple subworkflows Workflows doesn t currently support importing or merging workflow and subworkflow definitions You end up with a single workflow definition file for the main workflow and all the subworkflows This is not maintainable Ideally you d have each subworkflow in its own file and have the main workflow simply refer to them Thankfully this is easy to do in Terraform In the Workflows Terraform with multiple external YAMLs sample you can see how to import an external workflows yaml file for the main workflow and a subworkflow yaml file for the subworkflow into your Terraform definition This is more maintainable for sure One minor issue is that all YAMLs do end up getting merged and deployed as a single YAM to Workflows When you debug your workflows and subworkflows you might get confused with line numbers of your subworkflows This wraps up our discussion of Workflows and Terraform You can check out our workflows demos repo for all the source code for Terraform samples and more Thanks to Jamie Thomson for the template file idea on Terraform Please reach out to me on Twitter meteatamel for any questions or feedback Related ArticleBetter service orchestration with WorkflowsWorkflows is a service to orchestrate not only Google Cloud services such as Cloud Functions and Cloud Run but also external services Read Article |
2021-05-12 16:30:00 |
コメント
コメントを投稿