投稿時間:2023-05-15 01:16:26 RSSフィード2023-05-15 01:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita ChatGPT+NoteableでKaggleのtitanicコンペのsubmissionまで自動化できてしまった話 https://qiita.com/ba_to_dayo/items/6dd90bc44b33c678c42b chatgpt 2023-05-15 00:27:22
Linux Ubuntuタグが付けられた新着投稿 - Qiita Ubuntuで1つのNICに複数の固定IPアドレスを設定する方法 https://qiita.com/rat-engineer755/items/b04e128ee1d2cb4437a5 ubuntu 2023-05-15 00:28:00
Linux Ubuntuタグが付けられた新着投稿 - Qiita Ubunt 22.04LTSのNode.jsハマった話 https://qiita.com/ri7achim/items/c721fa21cf8af375a0fd curlfssl 2023-05-15 00:13:34
AWS AWSタグが付けられた新着投稿 - Qiita 【メモ】CloudFormationのスタック作成用yamlファイルのサンプル https://qiita.com/kemmy-km/items/d748423b6507b465f00c amiid 2023-05-15 00:21:04
AWS AWSタグが付けられた新着投稿 - Qiita Azure ADのサービスをAWSで例えてみた https://qiita.com/kisama2000/items/796a9a2aa4eaf3941b47 azure 2023-05-15 00:10:48
技術ブログ Developers.IO IAM Identity Center 環境で各 AWS アカウントへのログインを一時的に許可する簡易承認ワークフローを作ってみた https://dev.classmethod.jp/articles/aws-iam-identity-center-temporary-approval-workflow/ iamidentitycenter 2023-05-14 15:56:10
海外TECH MakeUseOf What Are Crypto Pump-and-Dump Schemes and How Can You Avoid Them? https://www.makeuseof.com/crypto-pump-and-dump-schemes-and-how-to-avoid-them/ schemes 2023-05-14 15:30:19
海外TECH MakeUseOf How to Watch Peacock on Your Smart TV https://www.makeuseof.com/how-to-watch-peacock-on-smart-tv/ smart 2023-05-14 15:30:19
海外TECH MakeUseOf The 5 Best Comic Book Reader Apps for Windows https://www.makeuseof.com/best-comic-book-reader-apps-for-windows/ collection 2023-05-14 15:15:18
海外TECH DEV Community Building an Innovative AI Tool to Revolutionize GitHub Issues Management 🦾 https://dev.to/maurerkrisztian/building-an-innovative-ai-tool-to-revolutionize-github-issues-management-14bb Building an Innovative AI Tool to Revolutionize GitHub Issues Management What I builtI have developed an innovative GitHub Action that enhances GitHub issues with the power of artificial intelligence Its primary functionalities includes finding related issues providing concise summaries of issues and all associated comments generating progress updates recommending suitable labels and more Category Submission Maintainer Must Haves Make the lives of Open Source maintainers easier App Link Screenshots DescriptionThis GitHUb Action can be triggered to gather the relevant issue data make usefully comments suggestions with OpenAI GPT models Basically it works like this prompts are sent to a GPT model and its response appears as a comment on an issue The prompt text can contain placeholders like issueTitle issueBody allComments etc These placeholders are replaced with the actual data from the current issue but they can also include other information not just limited to the issue itself summary title Summary prompt Provide a concise summary of the main points and objectives presented in the issue issueTitle and its content issueBody One of the key components is the sections Each section must have at least a title and prompt parameter In the action workflow yml you can specify which sections you require During the action run the selected sections prompts are processed using the OpenAI GPT model The prompts have default values refer to src config default config ts but you can completely customize them and create your own sections The generated responses will be added as comments to the issue Built in sections and inputs InputRequiredDefaultInfoopenai keyYesN AOpenAI API keyconfig fileNoissue improver config jsonConfiguration fileadd related issues sectionNofalseCreate a related issues section add summary sectionNofalseCreate a summary section add comment summary sectionNofalseCreate comment summaryadd custom sectionNoN Acustom section title id comma separated string means include all add label sectionNofalseCreate label suggesionmodelNo text davinci OpenAI modelmax tokensNoOpenAI max tokens response length debug modeNofalseEnable debug mode Don t create commentrelated issues sectionFind related issues among open issues Some issues are duplicates while others are related to each other These details are useful to the maintainer label sectionThe action will analyze the issue and all available labels descriptions and data to suggest relevant labels summary sectionSummarize the issue text custom sectionIn the configuration file specifically under the sections custom section you have the ability to create custom sections with your own prompts comment summary sectionSummarize all comment at the current issue make progress report etc Occasionally certain GitHub issues can be overwhelming with an abundance of comments making it difficult to comprehend the situation To address this I have developed a comment summary feature debug modeIf you turn on debug mode it will do the following resolve prompts give you more detailed logs of what s happening and not create comment To enable this set the debug mode input to true If you want to test the action without making comments to any issues it s useful to turn on debug mode This will allow you to view the logs and see what comment would be created if debug mode was turned off Once you re satisfied with the results you can turn off debug mode Action example This action will trigger when new issue is opened and creates a comment including related issues section summary section label section custom sectionname Improve issueson issues types opened jobs gpt comment runs on ubuntu latest steps uses actions checkout v name Create useful comment with AI uses MaurerKrisztian issue improver action v with openai key secrets GPT KEY max tokens add related issues section true add summary section true add label section true add custom section my custom section my custom section Comment SummaryThe YAML code below demonstrates how to activate comment summary progress report using the summarize command on issue comment jobs comment summary runs on ubuntu latest steps uses actions checkout v name Comment summary uses MaurerKrisztian issue improver action v if contains github event comment body summarize with openai key secrets GPT KEY max tokens add comment summary section true Custom section All section prompts is fully customisable To create custom sections prompts simply create a JSON file location is the config file input and modify the prompts and section titles as desired This will owerwite the default config see src config default config ts Additionally you can add new custom sections to the sections custom array within the configuration file Example config sections custom title Joke prompt Make a joke about this issueTitle title Poem prompt Write a short poem about this issueTitle relatedIssues title Related Issues prompt From the list of open issues openIssues identify the most relevant ones related to issueTitle and provide a brief description of their similarities Just the very simmilar related issues to issueTitle shoud be included in the answer if none is very similar andwer with none summary title Summary prompt Provide a concise summary of the main points and objectives presented in the issue issueTitle and its content issueBody commentSummary title Comment summary prompt Review the comments in issueComments for the issue issueTitle and its content issueBody Extract the key takeaways notable updates and any consensus reached and provide a concise summary of the discussion labelSuggestion title Label Suggestion prompt Analyze the issue issueTitle and its content issueBody and suggest appropriate labels from the available labels allLabels that accurately represent the topic scope and complexity of the issue The response shoud only include a label and why its suitable Available placeholders NameDescription issueTitle The issue title issueBody The issue body issueComments All issue comment issueAuthor Issue creator allLabels All available labels in the repository openIssues All open issues in the repositoryTo optimize the usage of GitHub Action time the resolution of placeholders is cached and only resolved when necessary This helps to avoid unnecessary wastage of valuable GitHub Action resources If you need a different placeholder open an issue or send a PR I have set up a demo repository with the configured action Feel free to explore and try it out by visiting the following link Link to Source Code Permissive LicenseMIT Background What made you decide to build this particular app What inspired you My inspiration for creating this specific application stemmed from a curiosity about the ways in which AI can assist us in tasks and simplifying processes I wanted to explore the potential of artificial intelligence in improving productivity and efficiency I have noticed that many open source projects have few maintainers and a lot of issues Some issues are duplicates while others are related to each other some have a lot of comments and hard to keep up with it These details are useful to the maintainer With the assistance of AI this action will try to solve thies How I built it How did you utilize GitHub Actions or GitHub Codespaces Did you learn something new along the way Pick up a new skill This is my first custom GitHub Action I learned a lot about how it works I found GitHub Actions to be a very helpful tool for automating many tasks My project used both the GitHub API and OpenAI API Testing a custom GitHub Action can be tough Unlike regular code it needs certain things to happen on GitHub to work correctly This makes it harder to check if everything is working fine especially when you can only rely on logs within GitHub for debugging Thankfully I discovered a tool named act after some struggles This tool lets you run your GitHub Actions locally which makes testing a lot easier and faster It s a real game changer for developing GitHub Actions I also used GitHub Actions in my project repository to build the TypeScript code and push it to the latest branch Because I didn t want to keep node modules and dist in the main branch I also made a release and test workflow The development process was filled with learning and challenges It gave me a deeper understanding of GitHub Actions AI and their potential in improving productivity and efficiency Additional Resources InfoI received valuable improvement suggestions from Kris Thank you Future Plans Add more placeholdersAdd support for more OpenAI modelsAdd support for lengthy context by splitting it into multiple chunksExperiment with other use cases to expand the range of applicationsContinuously improve prompts to enhance user experience 2023-05-14 15:06:48
海外TECH Engadget The second generation Apple Pencil drops to a new low of $85 https://www.engadget.com/the-second-generation-apple-pencil-drops-to-a-new-low-of-85-153121076.html?src=rss The second generation Apple Pencil drops to a new low of Apple s second generation Pencil stylus is one of the best accessories you can buy for an iPad Pro or iPad Air but at it s not the most affordable purchase So it s worth noting when the stylus is on sale like it is right now at Amazon At the moment you can get the Apple Pencil for or percent off what it normally costs The Pencil s previous low price was so this is a new all time low for the accessory The timing is perfect too since the iPad Air is also on sale this weekend The Apple Pencil is a must have if you re a visual artist photographer or designer but it s also handy if you enjoy jotting down notes or journaling You can customize the Pencil s double tap feature to suit your needs and with built in pressure sensitivity you can add as much or as little detail to an illustration as you want Best of all you charge the second generation model by attaching it magnetically to your iPad a big improvement from the goofy design of the previous model On that note just keep in mind the iPad does not support the second generation Apple Pencil For older iPads Apple has a handy compatibility list if you re unsure if the second generation Pencil will work with your tablet Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-05-14 15:31:21
金融 ◇◇ 保険デイリーニュース ◇◇(損保担当者必携!) 保険デイリーニュース(05/15) http://www.yanaharu.com/ins/?p=5193 位置情報 2023-05-14 15:00:45
ニュース BBC News - Home 'Suspected drone' disrupts Gatwick Airport flights https://www.bbc.co.uk/news/uk-england-sussex-65591023?at_medium=RSS&at_campaign=KARANGA gatwick 2023-05-14 15:03:50
ニュース BBC News - Home Belarus leader Alexander Lukashenko misses event, fuelling health rumours https://www.bbc.co.uk/news/world-europe-65585951?at_medium=RSS&at_campaign=KARANGA celebration 2023-05-14 15:14:26
ニュース BBC News - Home Labour considers extending voting rights to EU citizens https://www.bbc.co.uk/news/uk-politics-65590121?at_medium=RSS&at_campaign=KARANGA decisions 2023-05-14 15:33:55
ニュース BBC News - Home Women's FA Cup final: Sam Kerr seals title for Chelsea against Manchester United https://www.bbc.co.uk/sport/football/65564608?at_medium=RSS&at_campaign=KARANGA Women x s FA Cup final Sam Kerr seals title for Chelsea against Manchester UnitedSam Kerr is match winner yet again as Chelsea take a third successive Women s FA Cup title with win over Manchester United in front of a record crowd at Wembley 2023-05-14 15:54:37
ニュース BBC News - Home Everton 0-3 Man City: Erling Haaland and Ilkay Gundogan take league leaders to two wins from title https://www.bbc.co.uk/sport/football/65515862?at_medium=RSS&at_campaign=KARANGA Everton Man City Erling Haaland and Ilkay Gundogan take league leaders to two wins from titleManchester City require two victories to retain the Premier League title after despatching relegation threatened Everton at Goodison Park 2023-05-14 15:28:32
ニュース BBC News - Home Women's FA Cup final: Sam Kerr scores Chelsea winner against Man Utd and celebrates with backflip https://www.bbc.co.uk/sport/av/football/65588801?at_medium=RSS&at_campaign=KARANGA Women x s FA Cup final Sam Kerr scores Chelsea winner against Man Utd and celebrates with backflipSam Kerr scores the only goal of the Women s FA Cup final for Chelsea against Manchester United at Wembley and celebrates with a backflip 2023-05-14 15:17:30
海外TECH reddit Heroic vs Liquid / BLAST.tv Paris Major 2023 - Legends Stage Swiss Round 3 / Post-Match Discussion https://www.reddit.com/r/GlobalOffensive/comments/13hf91f/heroic_vs_liquid_blasttv_paris_major_2023_legends/ Heroic vs Liquid BLAST tv Paris Major Legends Stage Swiss Round Post Match DiscussionHeroic Liquid Inferno Mirage Ancient nbsp Heroic advances to the Champions Stage Liquid have a record in the Swiss stage nbsp Map picks Heroic MAP Liquid Vertigo X X Anubis Inferno Mirage X Overpass Nuke X Ancient nbsp Full Match Stats Team K D ADR KAST Rating Heroic stavn jabbi cadiaN sjuush TeSeS Liquid NAF YEKINDAR oSee EliGE nitr nbsp Individual Map Stats Map Inferno Team CT T Total Heroic T CT Liquid nbsp Team K D ADR KAST Rating Heroic cadiaN stavn jabbi TeSeS sjuush Liquid EliGE NAF YEKINDAR oSee nitr Inferno detailed stats and VOD nbsp Map Mirage Team T CT Total Heroic CT T Liquid nbsp Team K D ADR KAST Rating Heroic jabbi cadiaN sjuush stavn TeSeS Liquid nitr NAF oSee EliGE YEKINDAR Mirage detailed stats and VOD nbsp Map Ancient Team CT T Total Heroic T CT Liquid nbsp Team K D ADR KAST Rating Heroic stavn jabbi TeSeS cadiaN sjuush Liquid YEKINDAR NAF oSee nitr EliGE Ancient detailed stats and VOD nbsp Highlights M jabbi vs clutch M NAF vs clutch M nitr vs clutch M jabbi vs clutch M NAF ACE M cadiaN vs AWP clutch M oSee vs clutch M jabbi vs clutch nbsp This thread was created by the Post Match Team If you want to share any feedback or have any concerns please message u CSGOMatchThreads submitted by u CSGOMatchThreads to r GlobalOffensive link comments 2023-05-14 15:33:36

コメント

このブログの人気の投稿

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