投稿時間:2022-12-24 22:40:06 RSSフィード2022-12-24 22:00 分まとめ(40件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita 世界最高精度の言語モデルLUKEで感情分析を行ってみた(48値分類) https://qiita.com/Mizuiro__sakura/items/785e0769d47f25d11bc3 世界最高 2022-12-24 21:40:27
python Pythonタグが付けられた新着投稿 - Qiita Pythonで作ったCLIで動くライフゲーム https://qiita.com/y-tetsu/items/264d263717f933ad3cb2 ytetsu 2022-12-24 21:29:48
python Pythonタグが付けられた新着投稿 - Qiita QIIME2 の Taxonomic Bar Plots を Jupyter で見やすく再現してみる https://qiita.com/kimisyo/items/12ba4d7dddb2e06198b1 taxonomiyanal 2022-12-24 21:02:32
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScriptではすべてがオブジェクトのようなふるまいをする https://qiita.com/bebeken/items/8fb4d9b3c7abe951c737 javascript 2022-12-24 21:23:33
js JavaScriptタグが付けられた新着投稿 - Qiita eslint 再帰ファイル検索のやり方 https://qiita.com/happykorroke/items/172fa644a6abe1a9643e eslint 2022-12-24 21:09:44
AWS AWSタグが付けられた新着投稿 - Qiita VPC同士を VPC Peering する構築ハンズオン https://qiita.com/i3no29/items/40bf398c9e523194c144 vpcpeering 2022-12-24 21:10:46
GCP gcpタグが付けられた新着投稿 - Qiita Google Cloud Next '22で発表されたCloud WorkstationsにVS Codeで接続するまで https://qiita.com/r-dohara/items/c88487582cf9745977a2 cloudworkstations 2022-12-24 21:21:50
Azure Azureタグが付けられた新着投稿 - Qiita ハッカソンで役に立つサービス(Azure Functions) https://qiita.com/rapirapi/items/078247dcf05dd5b02a2d azurefu 2022-12-24 21:44:37
Azure Azureタグが付けられた新着投稿 - Qiita ハッカソンで役に立つサービス(Azure DevOps) https://qiita.com/rapirapi/items/9915ec7005cf16149649 azuredevop 2022-12-24 21:35:42
Git Gitタグが付けられた新着投稿 - Qiita git: 'remote-https' is not a git command https://qiita.com/tetsuoMikami/items/89840028c412384cff61 awskvs 2022-12-24 21:01:51
Ruby Railsタグが付けられた新着投稿 - Qiita ngrok でトンネリングすると Rails がブロックする問題 https://qiita.com/kyamad/items/e0587de965f39198ef7e configho 2022-12-24 21:16:23
Ruby Railsタグが付けられた新着投稿 - Qiita Rails リンクが正しく動作しているかテストする方法 https://qiita.com/Ktsuki16/items/8624cd4dcbdc4b57eb6b erateintegrationtestsite 2022-12-24 21:05:29
海外TECH MakeUseOf The Dangers of Discord: What Is a Discord Virus? https://www.makeuseof.com/what-is-discord-virus/ attractive 2022-12-24 12:30:16
海外TECH DEV Community Interact with Azure web applications using the Python SDK https://dev.to/makendrang/interact-with-azure-web-applications-using-the-python-sdk-5h5f Interact with Azure web applications using the Python SDK IntroductionResources are the building blocks of cloud applications So the cloud development process starts with creating the right environment to host the various parts of your application Azure offers a wide range of development kits including PythonSDK NET CLI and other third party applications In this blog post you will learn how to interact with the Azure environment using the Python SDK and build a web application using the Python CLI and SDK Connect to Azure using the Azure CLIAzure CLI is a command line interface provided by the Azure team that contains a set of commands used to create and manage Azure resources As you work with the Azure CLI you ll experience first hand the various tasks for resource management In this part you will learn how to use the Azure CLI to connect to Azure and manage your resources Open the IDE Left click the Terminal menu and click New TerminalThere are several ways to access Azure In this case you will use your username and password As a first step sign in to your Azure account using the Azure CLI and use the following commands to interact with Azure resources az login u lt username gt p lt password gt You should see the results below along with a list of available plans and other relevant account information Note The output from the Name field is the name of the added subscription and the output from the tenantId field identifies the Azure AD tenant that was added Sign in to the Azure portal using the Python SDKWhen developing applications in Python it is always a good idea to use a virtual environment for each application The Python SDK authentication process uses the azure identity package You can use the multi sign on option in this package to login to Azure You will use the Python SDK to login to Azure and request a resource pool from your subscription In the IDE go to the Explorer menu and click on the requirements txt file Paste the following into the requirements txt file editor window azure identityazure mgmt resourceA package is required to interact with Azure In this case install the azure identity package to authenticate to the Azure cloud and install the azure mgmt resource package to interact with the resources available in your account Click File gt Save to save the contents of the file Type the following command in the terminal and press Enter subscription id az account show query subscription id id o tsv resource group az group list query resource group name o tsv location az group list query location location o tsv echo subscription id subscription id amp amp echo resource group resource group amp amp echo location locationThe terminal output is The above command uses the subscription id resource group and location values and saves the output of the command Double click the src py file and paste the following code When you re done save the file import os randomfrom azure identity import AzureCliCredentialfrom azure mgmt resource import ResourceManagementClientsubscription id REPLACE WITH SUBSCRIPTION ID ABOVE resource group REPLACE WITH RESOURCE GROUP VALUE ABOVE location REPLACE WITH LOCATION VALUE ABOVE credential AzureCliCredential resource client ResourceManagementClient credential subscription id print f Resource Group in the Env list resource client resource groups list name Replace the subscription id resource group and location values with the terminal values from the previous terminal output Save the file after making changes The credentials variable is called to connect to Azure using the Azure CLI login session context resource client takes all the resources in the subscription and references them to print the resource pool name using a print statement Type the following command in the terminal and press Enter on your keyboard python m venv venvsource venv bin activatepip install pylint autopep dev dependenciespip install upgrade pippip install r requirements txt prod dependenciesThe above command prepares a virtual environment for running Python code This is completed by updating the packages and installing the packages listed in the requirements txt file Finally type python src py and press Enter on your keyboard The terminal output is The Python code ran successfully requesting the environment s resource pool Deploy Azure web applications using the Python SDKThe Azure Python SDK provides management packs for almost every resource in the service delivery catalog Each service includes a management pack that enables remote communication with resources You will use the Python SDK to create an Azure Application Service Plan and a web application Click on requirements txt and insert the following text at the end of the text in the file azure mgmt webThe file looks like this The azure mgmt web package is required to interact with web application resources in the Azure cloud Open the src py file and add the following import statements to the beginning of the file from azure mgmt web import WebSiteManagementClientsrc file looks like this The import statement takes the website administration client library and allows it to interact with the web application Add the following code to the end of your src py file service plan name calab serviceplan web app name f calabwebapp random randint Obtain the client objectapp service client WebSiteManagementClient credential subscription id Provision the plan Linux is the defaultapp plan app service client app service plans begin create or update resource group service plan name location location reserved True sku name S plan result app plan result print f Provisioned App Service plan plan result name web app app service client web apps begin create or update resource group web app name location location server farm id plan result id site config linux fx version python web app result web app result print f Provisioned web app web app result name at web app result default host name Use the app service client Python SDK to initiate an administrative connection to the client The app plan variable creates an application service resource and stores the results A list of all available commands for App Service resources can be found on the AppServicePlansOperations documentation page Similarly web app creates a web application by referencing the service plan of the hosting application A list of all commands available for App Service resources can be found on the WebAppsOperations documentation page To install the web management pack type pip install r requirements txt in the terminal and press Enter The terminal output is After the installation is complete the new package is available in the virtual environment Type python src py and press Enter on your keyboard The output is Code Execution created the application service plan and the web application The run command prints the resource group name along with the application subscription and the name of the web application The web application URL is also displayed for verification Copy the web URL from the end of the terminal output that ends with Azurewebsites net and paste it into a new browser tab This ensures that your web application is built and deployed on Azure ConclusionYou have understand how to log in to the Azure portal using the Python SDK and deploy a web application using the Python SDK for Azure 2022-12-24 12:51:13
海外TECH DEV Community Overcoming not invented here syndrome https://dev.to/smeetsmeister/overcoming-not-invented-here-syndrome-22am Overcoming not invented here syndromeNot invented here syndrome is a phenomenon where people prefer to develop a solution internally instead of adapting an existing external product It is often motivated by a desire to maintain control fears the unknown and reduce expenses In my career as a developer scrum master and now engineering manager I have had my fair share of not invented here syndrome In this blog post I will take you along in how I overcome the not invented here syndrome in my teams By using a real story I experienced in the past The storyA few years ago we had a team that had to build a feature for our marketing department A part of the feature was the ability for our marketing department to fill in content related to it What we always did in the past was to build a microservice for this feature add an interface to the backend and create a small CMS there It would take a couple of sprints in total Building a WYSIWYG editor is always one of those things that is way more complex than it seems at first While this feature was being developed one of our engineers went on a trip to another company Get a look and feel how they tackle problems how they organize and any other learnings we can take away The next day the engineer came back with his mind blown Have you folks ever heard about Contentful It is a headless CMS Using it would make most of our content related features a lot faster to build The team building the feature went back to the drawing board Using the headless CMS instead of building one on our own made the feature much smaller We removed several layers of complexity and were able to deliver it faster But wait Doesn t an external tool cost money Don t you introduce a new dependency Is this a new tool we need to learn Let s take a look at those concerns below Mindset changesThe story might be a perfect example of Hanlon s razor it was not that the team was unwilling to use a headless CMS they did not know the thing existed If your team starts a new feature or big project I ve found that it helps to do timeboxed research in the orientation phase Can we find any services that roughly do what we want in minutes If that is the case it requires a proper investigation Overcoming not invented here syndrome requires your engineering teams to change their mindset Ours used to be to build everything ourselves But in my years at an eCommerce company I learned a surprising thing In essence most of you and your competitors share of the features Every webshop needs a place to write content or a contact form Why should your engineering team spend their time and focus on creating maintaining that While it will be much more interesting to focus on the of the features that make you unique and drive the real value Focus on the peaks of your business The Some reason people use to justify not invented here syndrome is the costs The development teams are there and it does not cost me additional money But an external service does cost me money The solution to this problem is in the rule Sure the development team may not cost you any extra money But the way I see it if the team can focus on that unicorn magic that makes you special It will earn you extra money in the long run And then I m not even taking into account that the features will be delivered sooner and bring in value sooner Limiting dependency impactA potential downside to overcoming not invented here syndrome is dependencies Introducing an extra dependency can be tricky What if we host all our content in one place but that place has an outage The key to limiting the dependency impact is to think defensively I m a big fan of the term defensive programming Assume that everything can go wrong and act accordingly In this example it might be wise to add a layer of caching If an endpoint returns something unexpected try to make it a soft fail Nothing is worse than customers not being able to process a payment because the translation API on the thank you page is giving an unexpected response Sure it might not look pretty to have untranslated words but customers can still pay Acting defensively will help you in managing incidents Instead of the entire site or page breaking you might have some smaller features that do not work but your core flow will be able to go through Before you leaveIn this blog post you learned about overcoming not invented here syndrome Focus your time and attention on the of your business that matters and perhaps you can use some already existing tools to take care of the other of your business To summarize not invented here syndrome for development teams When implementing a new feature check if there is a tool that already does what you wantExternal tools might cost money but that will free up your teams to work on the parts that bring the most valueYou need to be aware of the impact dependencies can have program defensively and limit the impact of external outages on your business If you liked this post I think you might like these posts as well How to create a culture where failing is acceptableNo estimatesCode reviews as a source of distrustSubscribe to my newsletter to make sure you also get notified of any interesting new blog posts 2022-12-24 12:22:52
Apple AppleInsider - Frontpage News Daily Deals Dec. 24: $220 off Roborock robot vacuum, Mac Studio for $1,849, $199 AirPods Pro 2 & more https://appleinsider.com/articles/22/12/24/daily-deals-dec-24-220-off-roborock-robot-vacuum-mac-studio-for-1849-199-airpods-pro-2-more?utm_medium=rss Daily Deals Dec off Roborock robot vacuum Mac Studio for AirPods Pro amp moreSaturday s top deals including stellar discounts on Apple s inch MacBook Pro plus an LG K monitor for free game with Nintendo Switch OLED and off select Sonos speakers Daily deals for December Each day the AppleInsider Deals Team scours the web to bring you the best deals on everything from Apple devices to smart home goods Our Daily Deals roundups contain top picks to enhance your Apple setup plus some phenomenal bargains on everything from robot vacuums to Wi Fi routers Read more 2022-12-24 12:55:08
ニュース BBC News - Home Russia-Ukraine war: Strikes on Kherson kill seven https://www.bbc.co.uk/news/world-europe-64085480?at_medium=RSS&at_campaign=KARANGA strikes 2022-12-24 12:11:18
ニュース BBC News - Home Rob Burrow's wheelchair accessible van vandalised in Castleford https://www.bbc.co.uk/news/uk-england-leeds-64086021?at_medium=RSS&at_campaign=KARANGA christmas 2022-12-24 12:27:00
ニュース BBC News - Home Afghanistan protests: Taliban use water cannon on women opposing university ban https://www.bbc.co.uk/news/world-asia-64086257?at_medium=RSS&at_campaign=KARANGA female 2022-12-24 12:37:18
ニュース BBC News - Home Bethlehem sees Christmas tourism boost after two-year Covid hiatus https://www.bbc.co.uk/news/world-middle-east-64085597?at_medium=RSS&at_campaign=KARANGA palestinian 2022-12-24 12:13:38
ニュース BBC News - Home Premier League: State of play as English top flight returns after World Cup https://www.bbc.co.uk/sport/football/64013606?at_medium=RSS&at_campaign=KARANGA sport 2022-12-24 12:03:00
ビジネス 不景気.com 医療用ロボット・AI開発の「シャンティ」に破産開始決定 - 不景気com https://www.fukeiki.com/2022/12/shanti-robot.html 医療用ロボット 2022-12-24 12:50:09
北海道 北海道新聞 <年末回顧2022>旭川いじめ問題 自殺との因果、解明されず https://www.hokkaido-np.co.jp/article/780320/ 解明 2022-12-24 21:54:05
北海道 北海道新聞 死亡男性の身元判明 室蘭の交通事故 https://www.hokkaido-np.co.jp/article/780323/ 交通事故 2022-12-24 21:53:00
北海道 北海道新聞 道議選北見市 船橋氏出馬表明 医療や1次産業に力 https://www.hokkaido-np.co.jp/article/780308/ 北見市内 2022-12-24 21:51:19
北海道 北海道新聞 祈る平和 旭川六条教会で礼拝 https://www.hokkaido-np.co.jp/article/780322/ 礼拝 2022-12-24 21:49:00
北海道 北海道新聞 <師走点描2022>新年へ、ササですす払い 旭川・護国神社 https://www.hokkaido-np.co.jp/article/780321/ 北海道護国神社 2022-12-24 21:48:00
北海道 北海道新聞 釧路管内144人感染 根室管内13人 新型コロナ https://www.hokkaido-np.co.jp/article/780319/ 根室管内 2022-12-24 21:41:00
北海道 北海道新聞 電子マネーの購入、コンビニ店員防ぐ 釧路署、3店に感謝状 https://www.hokkaido-np.co.jp/article/780318/ 詐欺被害 2022-12-24 21:40:00
北海道 北海道新聞 暴風雪で倒壊した紋別の鉄塔、北電の着雪防止策の対象外 https://www.hokkaido-np.co.jp/article/780315/ 防止策 2022-12-24 21:39:01
北海道 北海道新聞 北朝鮮、カレンダーで核戦力誇示 新型戦略兵器の写真も登場 https://www.hokkaido-np.co.jp/article/780316/ 大陸間弾道ミサイル 2022-12-24 21:38:00
北海道 北海道新聞 アイヌ伝承のおばけ 色鮮やかな人形劇に 札幌 https://www.hokkaido-np.co.jp/article/780313/ 鮮やか 2022-12-24 21:33:00
北海道 北海道新聞 ニシノデイジーV、谷川牧場歓喜 中山大障害 浦河 https://www.hokkaido-np.co.jp/article/780280/ 中山大障害 2022-12-24 21:32:34
北海道 北海道新聞 「強制的な共生、忘れないで」 札幌でアイヌ文化フェス 原田さん、差別体験語る https://www.hokkaido-np.co.jp/article/780312/ 忘れないで 2022-12-24 21:32:00
北海道 北海道新聞 聖夜 ろうそくともし祈り 函館・西部地区の教会で礼拝 https://www.hokkaido-np.co.jp/article/780311/ 西部 2022-12-24 21:29:00
北海道 北海道新聞 京都精華学園など3回戦へ 男子は福岡大大濠が勝つ https://www.hokkaido-np.co.jp/article/780310/ 東京体育館 2022-12-24 21:28:00
北海道 北海道新聞 道南492人感染 函館は353人 新型コロナ https://www.hokkaido-np.co.jp/article/780208/ 医療機関 2022-12-24 21:30:09
北海道 北海道新聞 美幌のスキー場 1週間遅れ開業 https://www.hokkaido-np.co.jp/article/780309/ 開業 2022-12-24 21:24:00
北海道 北海道新聞 オホーツク管内停電 不安の一夜 大幅復旧、灯油や充電求め列 https://www.hokkaido-np.co.jp/article/780306/ 紋別市 2022-12-24 21:23:00
北海道 北海道新聞 美術家阿部さん 島牧中で初授業 戦時中の疎開で縁 https://www.hokkaido-np.co.jp/article/780272/ 阿部典英 2022-12-24 21:16:06

コメント

このブログの人気の投稿

投稿時間: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件)