投稿時間:2023-01-12 01:25:39 RSSフィード2023-01-12 01:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita # Kivy と Python で電卓を作る3:基本部分の作成 https://qiita.com/ShrikeWasHere/items/a15588b3ac91a53a1eaf 電卓 2023-01-12 00:00:45
Ruby Rubyタグが付けられた新着投稿 - Qiita MySQL カラム エラー https://qiita.com/nktyn_frtn0906/items/d62a77ec1b42c692071e createtabl 2023-01-12 00:46:54
Ruby Railsタグが付けられた新着投稿 - Qiita MySQL カラム エラー https://qiita.com/nktyn_frtn0906/items/d62a77ec1b42c692071e createtabl 2023-01-12 00:46:54
技術ブログ Developers.IO Twitter Blueはどんな人向けのサービス?実際に申し込んで考えてみた #Twitterblue https://dev.classmethod.jp/articles/twitter-blue/ iphone 2023-01-11 15:03:19
海外TECH Ars Technica Russia will abandon Soyuz on orbit, fly up a new one to bring crew home https://arstechnica.com/?p=1909109 earth 2023-01-11 15:25:24
海外TECH MakeUseOf 8 Best Places in Your Home to Put Motion Sensors https://www.makeuseof.com/best-places-to-put-motion-sensors/ sensors 2023-01-11 15:15:03
海外TECH MakeUseOf How to Make Sure Windows System Restore Works When You Need It https://www.makeuseof.com/tag/windows-system-restore-works/ system 2023-01-11 15:15:03
海外TECH DEV Community Automate Updating Major Release Tag on New Releases of a GitHub Action https://dev.to/cicirello/automate-updating-major-release-tag-on-new-releases-of-a-github-action-cci Automate Updating Major Release Tag on New Releases of a GitHub ActionI maintain several GitHub Actions such as jacoco badge generator generate sitemap javadoc cleanup and user statistician I ve also written posts here on DEV about each of these if you d like more information GitHub s documentation for GitHub Action developers recommends maintaining a major release tag for the Action so that users can either reference the Action by its specific release tag such as v or simply by the major release with v In fact it is so commonplace that users will likely assume that your Action supports specifying full version tag or major tag only Note that some Actions use major release branches e g branch named v instead of tags My intention in this post is not to discuss the advantages disadvantages of each of these alternative approaches In the Actions that I maintain I use major release tags for the simple reason that it is what GitHub s documentation recommends It is important to ensure that the major release tags are consistent with the released versions of the Action For example if the current version is v then the major release tag v should point to the git ref of version v And if a new version v is released then v should be updated to point to that new version Whenever a new major version is released such as v you d want to introduce a corresponding major tag v It would be tedious to update the major release tags manually as well as error prone e g forgetting about it etc In this post I explain how to automate the creation and update of a major release tag using GitHub Actions Table of Contents How to Reference an Action in a WorkflowGitHub Actions Release TagsA Workflow for Maintaining Major Release TagsInformation About Actions I MaintainWhere You Can Find Me How to Reference an Action in a WorkflowYou can skip this section if you are familiar with using GitHub Actions In a GitHub Actions workflow there are several ways of referencing an Action that you want to run as one of the steps in your workflow All of which utilize the user name or organization name of the owner of the Action as well as the name of the repository of the Action You then need either a tag branch or the full SHA of a commit such as the following examples steps uses user or organization repository of action tag uses user or organization repository of action branch uses user or organization repository of action full sha of commitThe above examples assume that the Action has no inputs It is meant as a simple example of referencing an Action in a workflow GitHub Actions Release TagsWhen you release an Action to the GitHub Marketplace to make it easy for others to discover and use in their own workflows you must tag the release GitHub s documentation recommends using Semantic Versioning and they also recommend maintaining a major release tag In this way if your latest release is v users can use it in a workflow with something like steps uses user or organization repository of action v Or they can use the following if they want to use the major release tag so that they automatically get non breaking changes when you release a new version steps uses user or organization repository of action vBut this only works if a v tag exists A Workflow for Maintaining Major Release TagsMaintaining a major release tag manually will almost certainly lead to problems e g you might forget to update it So just automate it in GitHub Actions Here is a workflow that will accomplish this Start by creating a major release num yml file or whatever you want to name it within your github workflows directory Include the following in that file put your name and GitHub username in the appropriate places name Move Major Release Tagon release types created jobs movetag runs on ubuntu latest steps uses actions checkout v name Get major version num and update tag run VERSION GITHUB REF refs tags MAJOR VERSION git config global user name YOUR NAME git config global user email USERNAME users noreply github com git tag fa MAJOR m Update major version tag git push origin MAJOR forceThe above workflow runs whenever you create a new release It gets the release tag from the GITHUB REF environment variable and sets MAJOR to the part of that tag prior to the first dot If it is a new major version then a new major release tag is created and otherwise it is updated to reference the latest release The above workflow is derived from one of my projects See major release num yml for the original workflow Information About Actions I MaintainIf you d like to learn more about the various GitHub Actions that I maintain I have a website about them Vincent Cicirello Open source GitHub Actions for workflow automation Features information on several open source GitHub Actions for workflow automation that we have developed to automate parts of the CI CD pipeline and other repetitive tasks The GitHub Actions featured include jacoco badge generator generate sitemap user statistician and javadoc cleanup actions cicirello org Where You Can Find MeFollow me here on DEV Vincent A CicirelloFollow Researcher and educator in A I algorithms evolutionary computation machine learning and swarm intelligence Follow me on GitHub cicirello cicirello My GitHub Profile Vincent A CicirelloSites where you can find me or my workWeb and social media Software development Publications If you want to generate the equivalent to the above for your own GitHub profile check out the cicirello user statisticianGitHub Action View on GitHubOr visit my website Vincent A Cicirello Professor of Computer Science Vincent A Cicirello Professor of Computer Science at Stockton University is aresearcher in artificial intelligence evolutionary computation swarm intelligence and computational intelligence with a Ph D in Robotics from Carnegie MellonUniversity He is an ACM Senior Member IEEE Senior Member AAAI Life Member EAI Distinguished Member and SIAM Member cicirello org 2023-01-11 15:35:07
海外TECH DEV Community What is the ideal session timeout? https://dev.to/darksmile92/what-is-the-ideal-session-timeout-38i What is the ideal session timeout To make applications that rely on user sessions secure it is necessary to define a session timeout The timeout defines the validity of a user session and after the set amount of time without activity the session will expire and the user needs to authenticate himself again There is always the clinch between convenience for the user to not need to login too often and strict security from the code side to keep it as short as possible I ve seen anything throughout my carreer from hours up to days What is the ideal session timeout for you and why 2023-01-11 15:31:29
海外TECH DEV Community We're on dotnet.social https://dev.to/devteam/were-on-dotnetsocial-4c71 We x re on dotnet socialThe best of DotNet content on DEV Community is now available via Toot 🦣We ve syndicated our TheDotNetDev Twitter feed with devcommunity dotnet social using moa party TheDotNetDev devcommunity dotnet social dotnet social Posts Following Followers ·Sharing out the best NET posts from DEVCommunity powered by thepracticaldev fosstodon org Available on the bird app TheDotNetDev dotnet social Follow us there from anywhere in the Fediverse Happy NETing 2023-01-11 15:26:38
海外TECH DEV Community 5 best programming games to improve your skills https://dev.to/onlydevs_/5-best-programming-games-to-improve-your-skills-18mh best programming games to improve your skillsThere are many programming games on the Internet and these gaming platforms can be used to make learning and improving programming skills more fun You can use these coding games as a fun break in your learning process to refresh yourself while practicing your coding skills Here we have curated a list of best programming games that can also improve your skillset UntrustedUntrusted is an online adventure game for programmers Practice your JavaScript skills To play the game and win the game you must use javascript commands RobocodeRobocode is also a programming battlefield game Here you need to develop a tank using Java and NET to fight other tanks In order for the robot to understand what it should do and how to react to the events of the battle we need to write the AI ​​code ScreepsScreeps is an online real time strategy game If you are new to programming you can play this game Here you have to establish a colony on a specific world shared with all players Colonies can mine resources and build units CSS DinnerCSS Dinner is a programming game where you can practice and master your CSS skills Learn CSS properties and selectors from this game It also includes levels As the level increases the challenges becomes more and more difficult CheckIOCheckIO is a coding game that helps you develop your Python and Typescript coding skills If you are a beginner you can play the game The game contains many levels Increasing levels make programming challenges more difficult 2023-01-11 15:24:29
海外TECH DEV Community MinIO on OpenBSD 7.2: Install https://dev.to/nabbisen/minio-on-openbsd-72-install-3b3h MinIO on OpenBSD Install SummaryMinIO is one of object storage suites compatible with AWS S It is written in Go Golang and offers high performance It is also open source and available as backend object storage service on private cloud and so on This post shows how to install it on OpenBSD and publish it as service It s easy because MinIO is offered via Ports EnvironmentOS OpenBSD Object Storage MinIO Tutorial Install via package managerJust run doas pkg add minioThe output was quirks signed on T Zuseradd Warning home directory var minio doesn t exist and m was not specifiedminio okThe following new rcscripts were installed etc rc d minioSee rcctl for details New and changed readme s usr local share doc pkg readmes minio Daemon is readyYou will see etc rc d minio was created The daemon control script starts with bin kshdaemon usr local bin minio server daemon flags var minio export daemon user minio Look at daemon flags var minio export is created at minio installation It means minio data will be stored there Well the minio directory is here doas ls aR var minioThe output was doas ls aR var minio var minio export var minio export Has been unused yet Be careful the daemon listens to egress by defaultLet s see usr local share doc pkg readmes minio According to it Its API web interface is accessible by default on port listening on allnetwork interfaces It means the minio daemon by default listens to egress and is open to all packets on the external interface Extend file limits Optional The readme also says Bumping file limits Per it is advised to run minio with morefile descriptors than what is allowed by the default daemon login class Add this to the login conf file if you want to bump those limits minio openfiles cur openfiles max tc daemon Refer to for more details on how to run minio In order to extend the limit edit etc login conf to append the lines below minio openfiles cur openfiles max tc daemon Then run to update the database doas cap mkdb etc login confIt updates etc login conf db which is effective for performance improvement especially on very large etc login conf Activate daemonLet s activate the daemon doas rcctl enable miniominio ok The run it doas rcctl start miniominio ok Besides alternatively you may use f option to run the server on trial with keeping the daemon deactivated doas rcctl f start miniominio ok Is minio started Let s see the directory again doas ls a var minioThe output was minio export minio is created In addition with ls aR var minio you will see many files were created ConclusionHow is networking on the daemon Run to check curl The output was lt xml version encoding UTF gt lt Error gt lt Code gt AccessDenied lt Code gt lt Message gt Access Denied lt Message gt lt Resource gt lt Resource gt lt RequestId gt lt RequestId gt lt HostId gt lt HostId gt lt Error gt Actually it was Bad Request It should be confirmed with this curl I It returned HTTP Bad RequestAccept Ranges bytesContent Length Content Type application xmlServer MinIOVary OriginDate Wed Jan GMTIt s OK because our minio server is just installed Congratulations for now Configuration should be followed at the next step What is important here is it gave response Let s see it also works to an external request curl lt minio ip gt Response gotten 2023-01-11 15:12:41
Apple AppleInsider - Frontpage News Apple's AR & VR headset will launch into a poorly defined market https://appleinsider.com/articles/23/01/11/apples-ar-vr-headset-will-launch-into-a-poorly-defined-market?utm_medium=rss Apple x s AR amp VR headset will launch into a poorly defined marketRumors surrounding Apple s virtual reality efforts and a launch continue to swirl as other companies showed off new and uninspiring devices at the Consumer Electronics Show A render of a potential Apple headsetThe VR space at CES was not particularly abuzz this year although it still had plenty of movement and wild ideas However nothing was volatile enough to create waves throughout the broader tech space Read more 2023-01-11 15:57:50
Apple AppleInsider - Frontpage News Mujjo's newest iPhone wallet case works with MagSafe charging https://appleinsider.com/articles/23/01/11/mujjos-newest-iphone-wallet-case-works-with-magsafe-charging?utm_medium=rss Mujjo x s newest iPhone wallet case works with MagSafe chargingMujjo has launched a new leather wallet case for the iPhone lineup that works with MagSafe and fits up to three cards Full Leather MagSafe Wallet CaseMujjo is well known for its leather accessories for Apple devices and its newest product is the Full Leather MagSafe Wallet Case Read more 2023-01-11 15:43:25
Apple AppleInsider - Frontpage News Businesses can now customize their Apple Maps info & more https://appleinsider.com/articles/23/01/11/businesses-can-now-customize-their-apple-maps-info-more?utm_medium=rss Businesses can now customize their Apple Maps info amp moreWith Apple Business Connect businesses can now specify what information gets shown about them across all of Apple s services ranging from Apple Maps to Siri Firms can now correct mistakes add new information or include special offers in their listingsWhile incorrect routes and misplaced points of interest were the headline failures of Apple Maps when it launched there was another Back at the start in it was also possible for businesses to have the wrong label details on the map Read more 2023-01-11 15:25:49
Apple AppleInsider - Frontpage News Ender-3 V2 Neo review: 3D printing, with the beginner in mind https://appleinsider.com/articles/23/01/11/ender-3-v2-neo-review-3d-printing-with-the-beginner-in-mind?utm_medium=rss Ender V Neo review D printing with the beginner in mindIf you re looking to get started in D printing Creality s Ender V Neo D has some great features for beginners worth checking out A decade ago D printing was a niche hobby but that s no longer the case That s why I agreed to try out Creality s Ender V Neo D Printer a D printer designed for beginners and professionals alike Creality says the Ender V Neo is a human centered device and suggests nearly anyone could use it I wanted to see if it was indeed the case Read more 2023-01-11 15:13:52
海外TECH Engadget Microsoft reportedly axes dual-screen Surface Duo 3 in favor of a 'true' foldable https://www.engadget.com/microsoft-surface-duo-3-cancelled-foldable-phone-154945670.html?src=rss Microsoft reportedly axes dual screen Surface Duo in favor of a x true x foldableMicrosoft s dual screen Android phones have been less than successful to put it mildly and there are now hints the company is shaking up its mobile strategy Windows Centralsources claim Microsoft has cancelled a twin screen Surface Duo which was reportedly slated for release late this year and will instead focus on a quot true quot foldable phone The new device s specs and name aren t known but it would have a degree hinge with an outside cover display akin to the Vivo X Fold The cancelled Surface Duo was quot finalized quot according to the sources It would have supposedly addressed some of its predecessor s shortcomings with narrower edge to edge screens and wireless charging Microsoft isn t said to have settled on a release window for the foldable suggesting that the product is unlikely to arrive in The purported insiders also say Microsoft is planning to expand its Android phone offerings It s apparently quot exploring quot other form factors including prototypes of more conventional smartphones A software initiative quot Perfect Together quot would also provide tighter integration between Surface phones and Windows much like the iPhone s close ties to the Mac We ve asked Microsoft for comment and will let you know if we hear back The Surface Duo series has struggled in the market between its high prices up to unreliable software and performance that frequently trails the latest Android flagships While the dual screen design has offered some clever multitasking features it s been a tough sell when rivals like Samsung s Galaxy Z Fold line have generally been more powerful and trustworthy A foldable Surface phone would put Microsoft into more direct competition with brands like Samsung and Vivo There s no guarantee it will stand out in a growing field If the rumored pivot is real however it also indicates that Microsoft is still committed to Android devices ーit s not giving up just because its first forays failed to gain traction 2023-01-11 15:49:45
海外科学 NYT > Science Russia to Launch Space Station Rescue Mission to Bring Astronauts Home https://www.nytimes.com/2023/01/11/science/nasa-space-station-soyuz.html soyuz 2023-01-11 15:12:44
海外科学 NYT > Science Where the Bison Could Roam https://www.nytimes.com/2023/01/10/science/bison-prairie-grassland.html Where the Bison Could RoamBison once numbered in the tens of millions in the United States Now a nonprofit is working to restore the shortgrass prairie where the American icons and their ecosystem can thrive again 2023-01-11 15:44:03
海外科学 NYT > Science R.J. Reynolds Pivots to New Cigarette Pitches as Flavor Ban Takes Effect https://www.nytimes.com/2023/01/11/health/cigarettes-flavor-ban-california.html R J Reynolds Pivots to New Cigarette Pitches as Flavor Ban Takes EffectNow that California s tobacco prohibitions are in place some Camel and Newport items are billed as newly “fresh or “crisp non menthol versions 2023-01-11 15:56:32
海外科学 NYT > Science The New Soldiers in Propane’s Fight Against Climate Action: Television Stars https://www.nytimes.com/2023/01/11/climate/climate-propane-influence-campaign.html group 2023-01-11 15:56:33
海外科学 NYT > Science Restoration of the Ozone Layer Is Back on Track, Scientists Say https://www.nytimes.com/2023/01/09/climate/ozone-hole-restoration-montreal-protocol.html Restoration of the Ozone Layer Is Back on Track Scientists SayRogue emissions from China of ozone depleting chemicals had threatened to delay recovery by a decade But the emissions were stopped according to a U N backed report 2023-01-11 15:42:11
金融 RSS FILE - 日本証券業協会 新型コロナウイルス感染症への証券関係機関等・各証券会社の対応について(リンク集) https://www.jsda.or.jp/shinchaku/coronavirus/link.html 新型コロナウイルス 2023-01-11 15:30:00
金融 金融庁ホームページ 貸金業関係資料集を更新しました。 https://www.fsa.go.jp/status/kasikin/20230111/index.html 関係 2023-01-11 17:00:00
金融 金融庁ホームページ 第145回 自動車損害賠償責任保険審議会を開催します。 https://www.fsa.go.jp/news/r4/singi/20230113.html 自動車損害賠償責任保険 2023-01-11 17:00:00
ニュース BBC News - Home Parthenon Sculptures belong in UK, says Culture Secretary Michelle Donelan https://www.bbc.co.uk/news/entertainment-arts-64235854?at_medium=RSS&at_campaign=KARANGA dangerous 2023-01-11 15:31:50
ニュース BBC News - Home Alireza Akbari: Iran preparing to execute British citizen - family https://www.bbc.co.uk/news/world-middle-east-64240226?at_medium=RSS&at_campaign=KARANGA final 2023-01-11 15:20:48
ニュース BBC News - Home 'Number of defects' led to fatal fire at Cameron House hotel https://www.bbc.co.uk/news/uk-scotland-64236252?at_medium=RSS&at_campaign=KARANGA december 2023-01-11 15:16:44
ニュース BBC News - Home Chelsea transfer news: Joao Felix signs for Blues on loan from Atletico Madrid https://www.bbc.co.uk/sport/football/64226705?at_medium=RSS&at_campaign=KARANGA felix 2023-01-11 15:11:25

コメント

このブログの人気の投稿

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