投稿時間:2023-04-18 04:25:04 RSSフィード2023-04-18 04:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS AWS Learner Uses AWS Skill Builder to Make a Career Change | Amazon Web Services https://www.youtube.com/watch?v=t2pHocUwfHA AWS Learner Uses AWS Skill Builder to Make a Career Change Amazon Web ServicesHear from Marcello Mattos an AWS Solution Sales Professional at TD SYNNEX about his learning experience with AWS Skill Builder After a year long career in commercial aviation Marcello moved into a cloud position by investing his time and effort in learning and validating his skills on AWS Marcello uses AWS Skill Builder on a regular basis to grow his expertise and support his customers with cloud migration projects Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster awsskillbuilder awstraining awscertification AWS AmazonWebServices CloudComputing 2023-04-17 18:30:24
AWS AWS Converting Windows EC2 instances license types | Amazon Web Services https://www.youtube.com/watch?v=J74rjpm6CrQ Converting Windows EC instances license types Amazon Web ServicesThis video provides instructions on how to convert a Windows EC instance license type from License Included to BYOL Bring your own license and how to change EC instance tenancy from shared to Dedicated host using License Manager Console Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWSLicenseManager BYOL ECwindows licensing AWS AmazonWebServices CloudComputing 2023-04-17 18:20:44
AWS AWS Tide + AWS - Fireside chat with Guy Duncan (CTO of Tide) | Amazon Web Services https://www.youtube.com/watch?v=bQ4ysmXgkzU Tide AWS Fireside chat with Guy Duncan CTO of Tide Amazon Web ServicesFireside chat with Oli Given AWS Senior Account Manager and Guy Duncan CTO of Tide Tide is a business financial platform and the leading provider of digital business banking services in the UK They are regulated by the Financial Conduct Authority FCA and offer e money accounts as well as business bank accounts Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2023-04-17 18:20:37
python Pythonタグが付けられた新着投稿 - Qiita Jupyterでしかできない機能(Pandasのデータのデバッグでの苦労を解消) https://qiita.com/akeyi2018/items/7af42efc27dea765dc4b portpandasaspddfpddatafr 2023-04-18 03:07:03
海外TECH MakeUseOf 7 Windows 11 Features You’re Probably Not Using (but Should) https://www.makeuseof.com/windows-11-features-you-should-be-using/ great 2023-04-17 18:15:17
海外TECH MakeUseOf The Sims FreePlay vs. the Sims Mobile: What’s the Difference and Which Is Better? https://www.makeuseof.com/the-sims-freeplay-vs-the-sims-mobile/ The Sims FreePlay vs the Sims Mobile What s the Difference and Which Is Better Want to play The Sims away from your console Well you ve got a choice between The Sims FreePlay and The Sims Mobile We ll help you decide 2023-04-17 18:01:17
海外TECH DEV Community Exploring Shell Launch Scripts on Managed Workflows for Apache Airflow (MWAA) and mwaa-local-runner https://dev.to/094459/exploring-shell-launch-scripts-on-managed-workflows-for-apache-airflow-mwaa-and-mwaa-local-runner-5c3m Exploring Shell Launch Scripts on Managed Workflows for Apache Airflow MWAA and mwaa local runnerManaged Workflows for Apache Airflow MWAA recently launched a new feature that a lot of folk had been asking for which was the ability to add additional libraries binaries or environment variables when launching Airflow workers If you missed the announcement Amazon MWAA now supports Shell Launch Scripts this new capability allows you to easily do this by creating a script and then configuring your MWAA environments to use that script during the start up phase The MWAA documentation has been updated to show you how you can use this and you can read about that in the page Using a startup script with Amazon MWAA This is essential reference material for understanding more about what you can do with this new feature In this post I wanted to share how you can use this and also how you can use mwaa local runner to validate test your startup scripts The latest versions of mwaa local runner and have been updated to support this I assume that you have already got mwaa local runner up and running so if you have not it is the perfect time to do that now The need for startup scriptsBefore we update out environment we can take a quick look at an example which will show you how this works Imagine that you have some standard environment variables you need to set when your tasks are running This is a common requirement and so in this example let s say we need to access a new environment variable called BUILD ON OPEN SOURCE awesome Will will create a simple DAG that will print out this new environment variable and see what output we get What about if we had some java code we wanted to run and we needed a specific Java version We will have another DAG that will output the details of the Java version and then look to install the latest version of Amazon Corretto This is our sample DAG from datetime import datetimefrom airflow import DAGfrom airflow operators bash operator import BashOperatorfrom airflow operators python operator import PythonOperatorimport osdef print hello print os environ BUILD ON OPEN SOURCE return os environ BUILD ON OPEN SOURCE dag DAG startup script demo description Showing Startup Scripts schedule interval None start date datetime catchup False java env BashOperator task id java env bash command java version dag dag env variable PythonOperator task id env variable python callable print hello dag dag java env gt gt env variableWhen we upload this DAG and execute it we get the following output For the Python environment variables we see File usr local airflow dags simple dag py line in print hello print os environ BUILD ON OPEN SOURCE File usr lib python os py line in getitem raise KeyError key from NoneKeyError BUILD ON OPEN SOURCE UTC taskinstance py INFO Marking task as FAILED and for the Java task UTC subprocess py INFO Running command usr bin bash c java version UTC subprocess py INFO Output UTC subprocess py INFO Unrecognized option version UTC subprocess py INFO Error Could not create the Java Virtual Machine UTC subprocess py INFO Error A fatal exception has occurred Program will exit UTC subprocess py INFO Command exited with return code UTC taskinstance py ERROR Task failed with exceptionTraceback most recent call last File usr local airflow local lib python site packages airflow operators bash py line in execute raise AirflowException airflow exceptions AirflowException Bash command failed The command returned a non zero exit code As we can see the tasks fail We will use startup scripts to help address both issues Before we do that though I will show you how you create that script How does startup scripts work with mwaa local runnerWhen using MWAA you can now specify a startup script via the environment configuration screen It is good practice however to use mwaa local runner to test this out before you make your changes mwaa local runner has been updated to include some new scripts that mimic how the MWAA managed service works We can see a new folder in the root of the mwaa local runner directory called startup and in here there is a script called startup sh It is this script we need to modify When you check out mwaa local runner for the first time this will be empty with just a placeholder We can see that whilst we only need to add our changes to the startup sh script on the far right on the diagram above there are a number of other scripts involved From the entrypoint sh script the execute startup script is called which then through a series of steps runs the contents of the startup sh you have created If you have defined environment variables these are persisted to a file called stored env and then sourced into the environment when Airflow starts With this new capability being released there is a new command to the mwaa local env command called test startup script which will allow you to validate your startup scripts in your mwaa local runner setup Updating your existing mwaa local runnerAs of writing there is a small feature with mwaa local runner which means we have to make s small change to our mwaa local runner before we can use this We will need to modify the entrypoint sh script in the docker scripts folder and update it by adding a new line source stored env between the execute start script and the ariflow db init as follows install requirements execute startup script source stored env lt added this airflow db initWe need to rebuild our mwaa local runner image but as we are just changing the entrypoint sh this should not take too long mwaa local env build imageOur new version should now be read to go Testing a startup scriptWe are now ready to create and then test our first startup script We have already created a folder and empty script above so we open and edit the startup script startup sh file The mwaa local runner is using an Amazon Linux base image so we can use the guidance for Amazon Corretto here on the right steps to install this bin shecho Running sample startup script export BUILD ON OPEN SOURCE awesome sudo yum install java amazon corretto headless yWe save this file and now we can use the new mwaa local runner test startup script command to see if this is ok mwaa local env test startup scriptwhich we will see the following outputContainer amazon mwaa local exists Skipping buildRunning sample startup script awesomeLoaded plugins ovl prioritiesamzn core kB amzn core x group gz kB amzn core x updateinfo kB amzn core x primary db MB Resolving Dependencies gt Running transaction check gt Package java amazon corretto headless x amzn will be installed gt Processing Dependency dejavu sans mono fonts for package java amazon corretto headless amzn x gt Processing Dependency dejavu serif fonts for package java amazon corretto headless amzn x gt Running transaction check gt Package dejavu sans mono fonts noarch amzn will be installed gt Package dejavu serif fonts noarch amzn will be installed gt Finished Dependency ResolutionDependencies Resolved Package Arch Version Repository Size Installing java amazon corretto headless x amzn amzn core MInstalling for dependencies dejavu sans mono fonts noarch amzn amzn core k dejavu serif fonts noarch amzn amzn core kTransaction Summary Install Package Dependent packages Total download size MInstalled size MIs this ok y d N C entrypoint sh line stored env No such file or directory base  Projects airflow cicd demos local airflow dev mwaa local  mwaa local env test startup scriptContainer amazon mwaa local exists Skipping buildRunning sample startup script Loaded plugins ovl prioritiesamzn core kB amzn core x group gz kB amzn core x updateinfo kB amzn core x primary db MB Resolving Dependencies gt Running transaction check gt Package java amazon corretto headless x amzn will be installed gt Processing Dependency dejavu sans mono fonts for package java amazon corretto headless amzn x gt Processing Dependency dejavu serif fonts for package java amazon corretto headless amzn x gt Running transaction check gt Package dejavu sans mono fonts noarch amzn will be installed gt Package dejavu serif fonts noarch amzn will be installed gt Finished Dependency ResolutionDependencies ResolvedInstalling java amazon corretto headless x amzn amzn core MInstalling for dependencies dejavu sans mono fonts noarch amzn amzn core k dejavu serif fonts noarch amzn amzn core kTransaction Summary Install Package Dependent packages Total download size MInstalled size MDownloading packages dejavu sans mono fonts amzn noarch rpm kB dejavu serif fonts amzn noarch rpm kB java amazon corretto headless amzn x rpm MB Complete Finished running startup script Execution time s Running verificationVerification completedAs we can see the startup script has been processed with no errors Note the output of awesome at the beginning as well as the output of the package installation What if we sabotage the script and add an addition s at the end to simulate a typo If we do that we can see that we get different outputNo package java amazon corretto headlesss available Error Nothing to doFinished running startup script Execution time s Running verificationVerification completedWhich means we can then fix this before we make that change to our MWAA environments Phew that is a good catch Running our DAG and see our startup script changesWe can now run mwaa local runner locally and re run those DAGs As it starts you should notice that the script is executed and you will see in this instance Amazon Corretto being installed mwaa local env start aws mwaa local runner local runner Requirement already satisfied anyio in local lib python site packages from httpcore lt gt gt httpx gt apache airflow gt gt apache airflow providers amazon gt r usr local airflow requirements requirements txt line aws mwaa local runner local runner Requirement already satisfied h lt gt in local lib python site packages from httpcore lt gt gt httpx gt apache airflow gt gt apache airflow providers amazon gt r usr local airflow requirements requirements txt line aws mwaa local runner local runner Running sample startup script aws mwaa local runner local runner Loaded plugins ovl prioritiesaws mwaa local runner local runner Resolving Dependenciesaws mwaa local runner local runner gt Running transaction checkaws mwaa local runner local runner gt Package java amazon corretto headless x amzn will be installed If we now wait until it finishes its boot sequence when we re try our DAGS we get the following output For the Python environment variables we see UTC logging mixin py INFO awesome UTC python py INFO Done Returned value was os environ BUILD ON OPEN SOURCE UTC taskinstance py INFO Marking task as SUCCESS dag id startup script demo task id env variable execution date T start date T end date T UTC local task job py INFO Task exited with return code and for the Java task UTC subprocess py INFO Running command usr bin bash c java version UTC subprocess py INFO Output UTC subprocess py INFO openjdk LTS UTC subprocess py INFO OpenJDK Runtime Environment Corretto build LTS UTC subprocess py INFO OpenJDK Bit Server VM Corretto build LTS mixed mode sharing UTC subprocess py INFO Command exited with return code ConclusionThis short post reminded you of the new feature of MWAA that allows you to tailor the tools libraries and environment configuration details you need for your Airflow workers You can use mwaa local runner as a great development tool to help you test your startup scripts and this post showed you how you can set this up by using a simple example Make sure you check out the MWAA documentation Using a startup script with Amazon MWAA to dive deeper into this capability This is essential reference material for understanding more about what you can do with this new feature If you have found this blog post helpful please give me some feedback by completing this very short survey here 2023-04-17 18:24:42
海外TECH DEV Community Sync Repos beetwen Github & Gitlab https://dev.to/carbans/sync-repos-beetwen-github-gitlab-b3b Sync Repos beetwen Github amp GitlabI m been using Gitlab since January and I m very happy with this tool for years was my main repository of code But now I have some of repositories in Github and I want to sync them with Gitlab because I want that Gitlab to be a source of truthI research a little bit and I found this repo that show me how I can do it First we need to look at process of sync We need to start creating workflow file into your repo in Github you can find the file in this linkname GitlabSyncon push deletejobs sync runs on ubuntu latest name Git Repo Sync steps uses actions checkout v with fetch depth uses wangchucheng git repo sync v with Such as target url secrets TARGET URL Such as wangchucheng target username secrets TARGET USERNAME You can store token in your project s Setting gt Secrets and reference the name here Such as secrets ACCESS TOKEN target token secrets TARGET TOKEN As you can see we need to create secrets to use this workflow TARGET URL gt TARGET USERNAME gt your username in GitlabTARGET TOKEN gt Access token of your repo settings in GitlabOnce you create the Token into Gitlab you need to add secrets into Github repository To do these you need to go to Settings gt Secrets and add the secrets These not it s the best way to do it but it s a good way to start and simple way to do it and little maintenance 2023-04-17 18:21:56
海外TECH DEV Community Advice for Those Learning How to Code https://dev.to/jsquared/advice-for-those-learning-how-to-code-4he5 Advice for Those Learning How to CodeLet s face it Programming is hard Even if you have years of experience under your belt it feels like there is always something new to learn It can be very frustrating for new programmers who want to learn how to code Many beginners don t know where to start or even how to start Now you might be asking who I am My name is Jsquared and I am a year old programmer web developer and cybersecurity enthusiast I have been writing code since I was around or years old with my first programs being simple games written in Python As I learned more I became more fascinated I was able to code much cooler things than simple games and over years I learned invaluable lessons that made me a better programmer I believe that anyone can learn to code and in this blog I want to share some tips that has helped me in my journey of programming These are some general advice on how to be successful in learning how to code It s important to know that you can take multiple approaches to learning programming and there is no one answer but these are the ones that have helped me the most Later on I will write a blog with resources that I used to learn how to code Take Time Learning the fundamentalsGetting a good grasp of the fundamentals is critically important to achieving long term success The foundational knowledge you learn at the beginning of your programming journey will allow you to grasp the logic of more complicated topics further along If you don t learn basic computer programming you could fall behind in the future So even if the fundamentals seem boring or unimportant at first you need to recognize how important it is to learn them It s Okay to Ask for HelpKnowing when to ask for help is a skill you ll need throughout the course of your life not just when it comes to programming To put it simply you aren t going to know everything especially when you re just starting out The fastest and easiest way to gain the skills you need to have to be a programmer is to ask those who have the answers After you try to figure out the answer to your question on your own be sure to ask someone else Whether you do it in person or online speaking to your mentor or teacher and listening to what they have to say is critical when you are learning to become a computer programmer MAKE STUFF If you really want to learn how to code you need to do more than just read the book and take some notes You need to put the information you re learning into action You might be surprised at how something you read can seem so simple until you try to do it for yourself Therefore you should actually start coding as you re learning That way you put the information to use immediately When you learn by doing the information will be more likely to stick with you Plus you can put your projects on GitHub to show off to potential employers Use the Internet to your AdvantageThese days you can find countless sources of information on the internet on just about any topic This information can be especially helpful when you are learning how to code Whether you decide to sign up for a coding boot camp or simply want to check out free tutorials on YouTube or other streaming services you can learn a lot about coding by just going online One of the main benefits of learning this way is that you can find the answers you need in many different formats Therefore if one explanation doesn t make sense to you you can always find a different explanation elsewhere It s a win win Don t Just read Source CodeWhen you get your hands on some source code it s easy to just read through it and think you have an understanding of what s going on But when you really want to become a computer programmer you re going to have to take this a step further You should actually run the code and tinker with it to figure out how it truly works This is a much more effective way to learn than simply reading through the code Remember being able to read the code isn t the same as understanding it As a programmer you need to cultivate a deep level of understanding and playing around with sample code is a great way to do that ConclusionLearning how to code may seem scary at first but as you learn more you ll realize that it s actually very fun Don t think that you re the only one that is having a hard time learning how to code Everyone is going went through the same thing I went through the same thing too It s simply apart of the process If you consistently learn and hone your skills I guarantee you that you will see improvement and growth Thank you for reading my blog If you liked this article please consider liking it sharing it with a friend and following for more content like this Got an idea for a future blog post Comment it down below Once again thank you for reading I really appreciate it Jsquared 2023-04-17 18:02:57
Apple AppleInsider - Frontpage News Samsung considering Microsoft's AI-powered Bing as default search engine over Google https://appleinsider.com/articles/23/04/17/samsung-considering-microsofts-ai-powered-bing-as-default-search-engine-over-google?utm_medium=rss Samsung considering Microsoft x s AI powered Bing as default search engine over GoogleAs a result of Microsoft s recent success with artificial intelligence Samsung is now thinking about replacing Google as the default search engine on its devices Google is working on AI searchMicrosoft has added technology from OpenAI into its Bing web search and other products Google is racing to release its own AI products to rival ChatGPT and others but the incumbent search giant has had a rough start Read more 2023-04-17 18:33:22
海外TECH Engadget Starting tomorrow, only six EVs will still qualify for a $7,500 federal tax credit https://www.engadget.com/starting-tomorrow-only-six-evs-will-still-qualify-for-a-7500-federal-tax-credit-185304414.html?src=rss Starting tomorrow only six EVs will still qualify for a federal tax creditThe IRS released a list of electric vehicles that still qualify for the full federal tax credit after strict new guidelines announced back in March officially go into effect on April th The list is very short as just six EVs now qualify under the new terms The updated rules pertain to EV batteries and cut out China as an approved trading partner so we knew the vehicle list would shrink as most electric vehicles use batteries manufactured in China or by Chinese companies If you want to get that full tax credit choose from the Cadillac Lyriq Chevy Bolt Chevy Bolt EUV some Tesla Model versions some Tesla Model Y versions and Ford F Lightning Many EVs lose the full credit moving forward like the Nissan Leaf and Volkswagen ID So check the full list before zeroing in on your next car purchase is nothing to sneeze at EVs shunted out of the exclusive full tax credit club may still qualify for a half credit of so long as they meet certain requirements Three PHEVs also qualify for the half credit and three more qualify for the full tax credit including models manufactured by Ford Lincoln Chrysler and Jeep These credits are not about excluding hybrid technology and are all about making sure components are sourced properly nbsp Here s how that breaks down Battery components that are percent made or assembled in the USA qualify for the first half of and if the company sources at least percent of critical minerals from the US or free trade partners the second kicks in If a company meets one or the other standard the vehicle gets a half credit While the list winnowing down to just six vehicles makes for a good headline it should beef up as automobile manufacturers make changes to meet the rules New EVs that meet the component sourcing standards will get added to the list and other vehicles will get re added as manufacturers open new factories in the US and other approved countries New trade deals could also impact the list of approved vehicles as time marches forward However these rules grow stricter over time Batteries must be completely made in North America by to continue to stay on the IRS s good side and get that full credit This article originally appeared on Engadget at 2023-04-17 18:53:04
海外科学 NYT > Science Robert F. Kennedy Jr., Soon to Announce White House Run, Sows Doubts About Vaccines https://www.nytimes.com/2023/04/17/us/politics/robert-f-kennedy-jr-vaccines.html Robert F Kennedy Jr Soon to Announce White House Run Sows Doubts About VaccinesMr Kennedy a Democrat who plans to kick off his campaign this week says he wants to make vaccines safer but he is spreading misinformation by twisting facts out of context 2023-04-17 18:38:55
海外TECH WIRED Polestar 4 2023 Reveal: No Rear Window https://www.wired.com/story/polestar-4-2023-reveal/ interior 2023-04-17 18:45:00
海外TECH WIRED The Short Path From a Discord Flex to High Treason https://www.wired.com/story/the-short-path-from-a-discord-flex-to-high-treason/ The Short Path From a Discord Flex to High TreasonThe Pentagon document leaks and the Ghost of Kyiv myth rose from the platform s culture of one upmanshipーand reveal its blurred lines between games and war 2023-04-17 18:41:34
ニュース BBC News - Home Forced prepay meter installations to be banned in homes of over-85s https://www.bbc.co.uk/news/business-65305959?at_medium=RSS&at_campaign=KARANGA senergy 2023-04-17 18:56:30
ニュース BBC News - Home World Snooker Championship 2023: Play stopped by protesters at the Crucible https://www.bbc.co.uk/sport/snooker/65305903?at_medium=RSS&at_campaign=KARANGA World Snooker Championship Play stopped by protesters at the CruciblePlay was stopped at the World Championship after a protester vandalised table one and a second person tried to attach themselves to table two 2023-04-17 18:49:56
ニュース BBC News - Home Sudan fighting: RSF and army clash in Khartoum for third day https://www.bbc.co.uk/news/world-africa-65293538?at_medium=RSS&at_campaign=KARANGA khartoum 2023-04-17 18:50:26
ニュース BBC News - Home Ralph Yarl: Black teen shot at doorstep after ringing wrong doorbell https://www.bbc.co.uk/news/world-us-canada-65299127?at_medium=RSS&at_campaign=KARANGA address 2023-04-17 18:37:40
ビジネス ダイヤモンド・オンライン - 新着記事 評価される「統合報告書」作りに必要な根本理念 - 「ESG」で勝つ経営 https://diamond.jp/articles/-/321481 2023-04-18 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 横浜駅直結で「100人入れるサウナ」を、スカイスパの経営者が作った理由 - ニュースな本 https://diamond.jp/articles/-/321089 yokohama 2023-04-18 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【社説】縮みゆく日本、なお輝き失わず - WSJ PickUp https://diamond.jp/articles/-/321430 wsjpickup 2023-04-18 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 IT大手の研究開発、米イノベーションに悪影響か - WSJ PickUp https://diamond.jp/articles/-/321429 wsjpickup 2023-04-18 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 チャットボット対販売員、セールスの軍配どちらに - WSJ PickUp https://diamond.jp/articles/-/321428 wsjpickup 2023-04-18 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 「情報発信がうまい人」のたった1つの習慣 - 99%はバイアス https://diamond.jp/articles/-/321327 情報発信 2023-04-18 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 口数は少ないのにコミュ力が高い人が自然と言っている「気の利いた一言」とは? - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/321441 2023-04-18 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 関西大生はどこに就職する? 関西の名門に通う大学生の就活事情【関西大編】 - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/321424 2023-04-18 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 チャットGPTの急拡大…これから人間に必要な“4つの力” - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/321317 【精神科医が教える】チャットGPTの急拡大…これから人間に必要な“つの力精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-04-18 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【小児科医が教える】「買ってはいけないお菓子」「買っていいお菓子」の見分け方 - 医師が教える 子どもの食事 50の基本 https://diamond.jp/articles/-/321418 買ってはいけない 2023-04-18 03:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 【コンサルが教える】目の前の人が「仕事のできる人」か一瞬でわかる秘法 - 頭のいい人が話す前に考えていること https://diamond.jp/articles/-/321423 【コンサルが教える】目の前の人が「仕事のできる人」か一瞬でわかる秘法頭のいい人が話す前に考えていること「だれと仕事するか」は仕事がうまくいくかどうかを決定づける極めて重要な要素です。 2023-04-18 03:05:00
IT IT号外 TwitterやInstagramの動画を保存したい!Tverの番組をローカルのパソコンに保存して視聴したいときのアドオン紹介 https://figreen.org/it/twitter%e3%82%84instagram%e3%81%ae%e5%8b%95%e7%94%bb%e3%82%92%e4%bf%9d%e5%ad%98%e3%81%97%e3%81%9f%e3%81%84%ef%bc%81tver%e3%81%ae%e7%95%aa%e7%b5%84%e3%82%92%e3%83%ad%e3%83%bc%e3%82%ab%e3%83%ab%e3%81%ae/ TwitterやInstagramの動画を保存したいTverの番組をローカルのパソコンに保存して視聴したいときのアドオン紹介SNSにある動画を保存したいとネット検索してみたら、検索結果は数でれど、そのサービスにURLを入れても軒並みエラーやらなんやらでうまく動作してくれないといった事態が増えましたねえ。 2023-04-17 18:47:31
IT IT号外 ChatGPTにブログの記事のリメイクをお願いしてみた。AIが書いた記事にライターの仕事が奪われる?コンテンツ無限生成の怖さ、ここにあり https://figreen.org/it/chatgpt%e3%81%ab%e3%83%96%e3%83%ad%e3%82%b0%e3%81%ae%e8%a8%98%e4%ba%8b%e3%81%ae%e3%83%aa%e3%83%a1%e3%82%a4%e3%82%af%e3%82%92%e3%81%8a%e9%a1%98%e3%81%84%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82ai/ ChatGPTにブログの記事のリメイクをお願いしてみた。 2023-04-17 18:33:31

コメント

このブログの人気の投稿

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