投稿時間:2022-09-28 22:21:38 RSSフィード2022-09-28 22:00 分まとめ(26件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Apple、ロシアの人気SNS「VK」の関連アプリをApp Storeから削除 − イギリスの新たな対露制裁に対応 https://taisy0.com/2022/09/28/162828.html apple 2022-09-28 12:26:00
IT InfoQ Atlassian Exceeds 99.9999% Of Availability Using Sidecars and Highly Fault-Tolerant Design https://www.infoq.com/news/2022/09/atlassian-high-availability/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Atlassian Exceeds Of Availability Using Sidecars and Highly Fault Tolerant DesignAtlassian recently published how it exceeded of availability with its Tenant Context Service Atlassian achieved this high availability by implementing highly autonomous client sidecars able to proactively shield themselves from complete AWS region failures Sidecars query multiple services concurrently to accomplish this goal and ensure that requests are entirely isolated internally By Eran Stiller 2022-09-28 13:00:00
AWS AWS Japan Blog 【8/31開催】AWS Automotive@Loft https://aws.amazon.com/jp/blogs/news/aws-automotiveloft-2022/ awsautomotiveloft 2022-09-28 12:19:44
python Pythonタグが付けられた新着投稿 - Qiita Sweetvizの日本語文字化けを直す https://qiita.com/_jinta/items/795079acbfd284917b42 sweetviz 2022-09-28 21:58:58
python Pythonタグが付けられた新着投稿 - Qiita Python Pandas基礎 -Excel・CSVの読み込み- https://qiita.com/y-matsunaga/items/1e6e4cf051d141b347b8 excel 2022-09-28 21:40:03
python Pythonタグが付けられた新着投稿 - Qiita Python Google検索の順位調査(PC版、スマホ版) https://qiita.com/grapefruit_0514/items/d69f5bdc4347f1ccf582 search 2022-09-28 21:35:39
AWS AWSタグが付けられた新着投稿 - Qiita 小ネタ/MySQL 8.0(Aurora MySQL v3)にバージョンアップしたときの実行計画調整にオプティマイザヒントを使う https://qiita.com/hmatsu47/items/9b1090111f2683d386bc auroramysqlv 2022-09-28 21:44:59
golang Goタグが付けられた新着投稿 - Qiita gin(golang)のリクエストボディを複数回読み取る方法 https://qiita.com/gimKondo/items/cdd5d3cfee7d551efce8 context 2022-09-28 21:07:14
海外TECH DEV Community Halloween Themes for the user-statistician GitHub Action https://dev.to/cicirello/halloween-themes-for-the-user-statistician-github-action-4do6 Halloween Themes for the user statistician GitHub ActionJust in time for Halloween and Hacktoberfest I recently added a few Halloween themes to the user statistician GitHub Action I ve posted about the user statistician GitHub Action before It generates an SVG with a detailed summary of your activity on GitHub suitable for inclusion in your GitHub Profile README or on a personal website The intended use case is to run on a schedule via a GitHub workflow in your GitHub Profile repository repository with same name as your username It is implemented in Python as a Container Action and uses the GitHub CLI to query the GitHub GraphQL API to gather the data For a more detailed summary of its functionality see my earlier DEV post as well as other posts in this series The user statistician GitHub Action mentioned in Awesome README Vincent A Cicirello・Aug ・ min read github showdev tutorial webdev The user statistician GitHub Action includes several built in color themes Up until now all of the built in color themes were based on GitHub s various themes as described in GitHub s Primer documentation Recently I added three new themes related to Halloween halloween halloween light and batty Or if you prefer the existing GitHub inspired themes but just want to use the pumpkin from the new halloween and halloween light themes or the bat from the new batty theme in place of the GitHub Octocat then that is supported as well The rest of this post shows examples of the new themes as well as providing example workflows to explain how to configure the new themes Table of Contents Dark Halloween Theme Halloween colors with jack o lanterns at the topLight Halloween Theme Halloween colors with jack o lanterns at the topA Batty Theme A light theme with bats at the topHow to Use the Pumpkin or Bat with Another ThemeHow to Use the Pumpkin or Bat with Custom ColorsWhere You Can Find Me Dark Halloween ThemeLet s start with a GitHub workflow using the new halloween theme but otherwise using all of the default inputs The workflow below if placed in a yml file within the github workflows directory of a repository will run daily at am see the cron and also runs manually via the workflow dispatch event The theme is configured with the colors input to the action It needs the GITHUB TOKEN as an environment variable in order to query the GitHub GraphQL API The default permissions that are automatically granted to GITHUB TOKEN are sufficient name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with colors halloween env GITHUB TOKEN secrets GITHUB TOKEN Since the above workflow uses the default location the SVG that is generated will be committed to images userstats svg The action has an input that can be used to change the location and or name of the SVG file Assuming that you keep the default then the following Markdown can be used to insert the image into the README of your repository My GitHub activity images userstats svg The halloween theme will look like the following sample Light Halloween ThemeThe second of the new themes is halloween light which is a light theme using Halloween colors Here s a sample workflow name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with colors halloween light env GITHUB TOKEN secrets GITHUB TOKEN The halloween light theme will look like the following sample A Batty ThemeThe third new theme is batty which is a light theme with bats at the top Here s a sample workflow name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with colors batty env GITHUB TOKEN secrets GITHUB TOKEN The batty theme will look like the following sample How to Use the Pumpkin or Bat with Another ThemeIf you d rather stick with one of the existing GitHub inspired themes and just want to use the jack o lantern or the bat instead of the default GitHub Octocat then that can be accomplished with the top icon input such as top icon pumpkin or top icon bat Here s an example workflow showing how to use the jack o lantern with the dark theme name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with colors dark top icon pumpkin env GITHUB TOKEN secrets GITHUB TOKEN The jack o lantern should look good with the light themes as well For that you can either set colors light explicitly or just leave the colors input out it defaults to a light theme if you don t otherwise specify name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with top icon pumpkin env GITHUB TOKEN secrets GITHUB TOKEN And here s a workflow for the default light theme but with top icon bat name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with top icon bat env GITHUB TOKEN secrets GITHUB TOKEN Note don t try to use top icon bat with any of the dark themes since the bat will just blend into the background How to Use the Pumpkin or Bat with Custom ColorsIf you don t like any of the built in themes you can specify custom colors Here s an example workflow specifying custom colors but using the jack o lantern specified with top icon pumpkin instead of the default GitHub Octocat name user statisticianon schedule cron workflow dispatch jobs stats runs on ubuntu latest steps uses actions checkout v name Generate the user stats image for GitHub profile uses cicirello user statistician v with colors ffffff cf b b E top icon pumpkin env GITHUB TOKEN secrets GITHUB TOKEN See the documentation of the colors input for complete details of how this input works As in the prior examples you can simply pass a theme name to this input But you can also pass a sequence of five colors each specified either with an SVG color name or in this example with hex both digit and digit hex colors are supported The colors in this example happen to be those of the light high contrast theme and are specified in the order background color border color icons color title color and text color The icons color only affects the icons for the various statistics and is not used for the icons e g Octocat pumpkin bat in the top corners If you use the default Octocat e g by not specifying top icon the color of the Octocat is set to maximize contrast with your chosen background color If you don t want any icon at the top you can pass top icon none Where You Can Find MeOn the Web 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 Follow 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 GitHub 2022-09-28 12:54:34
海外TECH DEV Community Announcing the Budibase Hackathon - Over $5K in prizes 🎉 https://dev.to/budibase/announcing-the-budibase-hackathon-over-5k-in-prizes-5agj Announcing the Budibase Hackathon Over K in prizes Announcing the Budibase Hackathon Over K in prizes ​There s a new opportunity to level up your software development skills and contribute to open source while educating others and earning incredible prizes ​From October until October Budibase is offering developers an unmissable opportunity to build and contribute integrations and components to benefit open source in exchange for prizes Read on for more details about Budibase and how you can join the hackathon ​ What is Budibase Budibase is an open source low code platform that helps developers build internal apps in minutes With over million downloads and Github stars Budibase is one of the leading open source platforms in the world Recently we launched Budibase which allows users to build their own custom components and integrations ​ Why Participate It s Hacktoberfest We also wanted to emphasize that Budibase integrations and components are a perfect open source access point We also think the prizes on offer make for a pretty compelling case to participate in the Budibase Hackathon We re encouraging participants to build Budibase integrations and components for this year s hackathon We hope you ll walk away with a greater understanding of Budibase and the importance of low code and extensibility for you and the open source community ​We re excited to see how you approach this challenge ​ Key facts and prizes​You have days to submit your contributions Starting am UTC Saturday October Ending am UTC Tuesday October ​There are four competitions and eight prizes to be won Best integration contributedWinner Budibase Swag Budibase creditRunner up Budibase Swag Budibase credit​Most integrations contributedWinner Budibase Swag Budibase creditRunner up Budibase Swag Budibase credit​Best component contributed​Winner Budibase Swag Budibase creditRunner up Budibase Swag Budibase creditMost components contributedWinner Budibase Swag Budibase creditRunner up Budibase Swag Budibase credit​The submission quality is critical and poor submissions will not count towards the competition ​ How to ParticipateWe ve created this quick guide to help you contribute an integration or component and participate in the Budibase Hackathon ​ How To Submit​Create a repository for your contribution on Github​Add your contribution to the repository​Add a description and instructions for your integration to the README this is important as it will help users adopt your integration ​Submit your hackathon contribution using this form ​ Rules​The contest entry period ends October at am UTC You must submit before the deadline no late entries Budibase has the right to reject submissions they deem unfit ​You must create your submission during the event All entries must be Open Source link to source code required in submission Any intellectual property developed during the hackathon will belong to the individual team that created it ​ Community SupportThe Budibase team will be available to help anyone who runs into issues or has questions related to Budibase or the hackathon in general You can reach the Budibase team by leaving a comment on our ​ Discord Channel​ Community Forum​ Important DatesOctober Hackathon Begins October Hackathon Submission Due at am UTCOctober Hackathon Winners Announced​ ️Additional info​ Payment may take up to days after your submission ​ By submitting you grant Budibase permission to use screenshots or links to your project or content of your README on our Twitter blog website email updates and on the Budibase Discord server Budibase does not make any claims over your IP How to sign upSign up to the hackathon using the link below 2022-09-28 12:50:50
海外TECH DEV Community A 60% keyboard is good for you https://dev.to/ilaif/a-60-keyboard-is-good-for-you-2d4k A keyboard is good for you The cover photo was generated using MidJourney A few years ago at one of the companies I ve worked for I came across a proliferation of mechanical keyboards and in particular keyboards and I bought one for myself Since then I ve used that mechanical keyboard and I can t go back However I ve noticed that like many other practices in software development it s easy to stay in the comfort zone of what we already know since there are so many things to learn As I wrote in my introductory blog post developers are lifelong learners Therefore I hope that sharing my own experience will encourage you to try something completely different This might seem difficult at first but will improve your typing experience and productivity over time Let s start with the basics What s a mechanical keyboard A physical keyboard that uses an individual spring and switch for each key PCMac Wait so what isn t a mechanical keyboard The most widely produced keyboard type is called Membrane although there are other types as well A physical keyboard whose keys are not separate but rather are pressure pads that have only outlines and symbols printed on a flat flexible surface Some historyInitially when keyboards were first produced they were mechanical As computers began getting cheaper manufacturers looked for ways to make keyboards cheaper as well and thus the membrane keyboard was created However membrane keyboards have downsides to mechanical keyboards and so in recent years users with high requirements from keyboards Gamers Typers Programmers etc began using them again Here s a comparison by wepc com Back to mechanical keyboardsThe most important part of a mechanical keyboard is the switch type There are types linear tactile and clicky Linear red yellow black are the quietest of all and the fastest to click on which makes them popular among gamers Tactile brown orange have a tactile bump that is felt on each key press Clicky blue green are the noisiest and produce a clicky sound when actuated Source steelseries com Keycaps the actual plastic above the switch board type and form size are also important factors of mechanical keyboards Let s talk about the form then What s a keyboard Keyboards have many custom forms as can be seen in the following graphic that shows some of them Source and a great forms guide from keychron com The full sized is probably the classic keyboard while a variation of is roughly what we see on most laptops From my personal experience I d say that most of us are comfortable with keyboards in the range of to full sized If we go down to usually the first thing that we lose is the function keys F F But function keys are useful and so an Fn key usually exists that when held will switch the functionality of the top row to the function keys ESC gt gt F gt F This is all still pretty sane since F keys are not very commonly used so pressing an additional key from time to time to use the F keys is still within the comfortable zone When we go below though things are starting to get less comfortable and more interesting Perhaps the biggest change is the removal of arrow keys These keys are so common that it sounds insane to be able to work properly without them Today we re going to discuss the benefits of keyboards and why I think they are good for you My keyboard Why is a keyboard good for you TL DR Faster switch from using the mouse to typingFor most people it s ergonomically betterFaster reach to all navigational keysMore compactCheaper Keyboard and mouseWhenever we re typing our neutral position of both hands is on what is called the home row keys which are A S D F for the right hand and J K L for the left Assuming you re right handed whenever you want to use your mouse you need to move your hand from the home row keys to the mouse as seen in the following graphic As we can when working with a full size keyboard the distance is quite large With a keyboard it looks like this This means that with a keyboard switching between hand typing and the mouse is much faster half the distance ErgonomicsWhile it depends on your shoulder length the average person needs to bend his hands outwards from their neutral resting position when using a full size keyboard A or tenkeyless keyboard is almost always more ergonomic The following article seems to go really deep into choosing the right keyboard form for you Keyboard Form Factor Guide Ctrl blog Use navigational keys fasterA common feature in mechanical keyboards is the key mapping programmability We can program keys to behave differently A specific capability is the temporary layer switch which allows a held key to change the entire keyboard s key mapping temporarily as long as it s being held The following visualization shows my personal temporary layer key mapping I chose the Caps Lock key as my layer switch key as I rarely use this functionality anyway and it s positioned nicely on the home row As you can see all the navigational and Fn keys bonus media keys are now much closer to the home row which keeps your hands in the same place even when using the arrow keys Note It takes some time to get used to a new key mapping such as this It took me weeks to reach my regular working speed and since then it had gotten better More compactNot much to add here really it s just smaller and therefore allows for more desk space and is much more portable CheaperFewer keys Fewer materials Cheaper Assuming all the rest of the factors of the keyboard are the same When used at workWe ve already covered that one of the characteristics of mechanical keyboards is that they are usually louder than their membrane counterparts While this can be considered an advantage if you like the sound of the typing when working alongside others it can become a life threatening event A few co workers not so secretly expressed the desire to murder me when I used a clicky switch keyboard for long enough periods However there are insanely quiet switches that are even quieter than membrane keyboards We are now going to cover my current mechanical keyboard setup that I personally like and is also very quiet My keyboard setup Prebuilt keyboardMy own keyboard setup is pretty simple I originally bought a prebuilt budget keyboard that is quite customizable Let s breakdown the long title description of this keyboard We know this one already RGB Full Red Green Blue lighting on each of the keys and is fully programmable with animations etc hotswap switch This means that the board allows you to pull out existing switches and replace them with others easily pbt keycaps The type of the keycaps This is a whole topic in and of itself here s an overview programmable There s software that allows configuring everything from keymapping and lighting to macros key poker layout The keyboard has exactly keys Poker stands for an unofficial name of all keyboards SmartMonkey iGK setb The exact model of the keyboard There are two customization options the color of the keyboard and the switch model Purchase linkMy first switches were the Kailh Box Whites These switches are very clicky and while I absolutely loved the typing feeling they had one of the best I ever tried I needed something else for the office Silent SwitchesAfter some research I came across Gazzew s Boba U Silents switches It s magical how quiet these switches are I also really liked their typing feeling and they are my current favorite switches for typing at the office GSA KeycapsNext I wanted to give some color to my keycaps While I don t think they re the nicest looking keycaps out there their same height GSA profile Yes Keycaps layout is another thing you should be aware of is really nice Purchase link Programming the temporary layerThis keyboard has software that allows remapping the keys to enable the temporary layer as seen in the Use navigational keys faster section to improve productivity Download linkIf you need any help with defining the mapping then try this youtube video Also feel free to reach out That s it folks I hope that you ve enjoyed this blog post If you have any questions about mechanical keyboards or decided to learn more after reading this please let me know by commenting here or reaching me directly at ilaiDisclaimer I m a rather noob in the vast world of mechanical keyboards There are awesome resources out there to further learn about mechanical keyboards Youtube is a great starting point just write Getting started with mechanical keyboards and get started Just remember to open a stopwatch to stop you from a never ending video wormhole 2022-09-28 12:14:50
Apple AppleInsider - Frontpage News More Apple Music Classical references spotted in iOS beta https://appleinsider.com/articles/22/09/28/more-apple-music-classical-references-spotted-in-ios-beta?utm_medium=rss More Apple Music Classical references spotted in iOS betaAs Apple s self imposed deadline to launch Apple Music Classical nears more mentions have been found in the latest iOS beta Following Apple s acquisition ーand closing down ーof classical music service Primephonic references to the service were spotted in Android beta software and betas of iOS Now a Twitter user has shown screenshots from the latest iOS beta that include Apple Music Classical references Read more 2022-09-28 12:49:10
海外TECH Engadget Netflix now lets you create your own gamertag https://www.engadget.com/netflix-public-handle-120523439.html?src=rss Netflix now lets you create your own gamertagNetflix has launched the ability to create public handles for its games laying the foundation for additional features that would make the service more social People can use this public username across all its titles allowing them to find friends or to meet new ones to play with in multiplayer games like Rival Pirates without having to reveal their Netflix name and profile icon It s also what s going to be displayed on leaderboards for single player games such as Dominoes Café and the platformer Lucky Luna nbsp As TechCrunch had previously reported there are codes in the app suggesting that the company is also working on ways that would allow users to invite each other to play games and to show other people that they re online Netflix didn t confirm that those features were underway but Mobile Games Product Manager Sophia Yang said in the company s announcement that the launch of game handles quot is only the beginning in building a tailored game experience for our members around the world quot Yang added quot We ll continue to adapt and evolve our service to meet the needs of our members quot Seeing as Netflix recently revealed that it s going all in on games and is building its own studio in Helsinki Finland it wouldn t come as a surprise for the company to roll out features that would make its service more interactive To set a public nickname Android users can select the games tab in the navigation bar and navigate to quot Create your Netflix game handle quot iOS users will first have to download Rival Pirates or Lucky Luna and then launch the game to get a prompt asking them to create a handle nbsp 2022-09-28 12:05:23
Cisco Cisco Blog Moving Government Forward https://blogs.cisco.com/government/moving-government-forward podcast 2022-09-28 12:59:15
医療系 医療介護 CBnews 高齢者医療、現役世代の支援金見直し検討へ-全世代型社会保障構築会議 https://www.cbnews.jp/news/entry/20220928211619 医療制度 2022-09-28 21:35:00
海外ニュース Japan Times latest articles North Korea fires missiles ahead of U.S. vice president’s visit to DMZ https://www.japantimes.co.jp/news/2022/09/28/asia-pacific/north-korea-missile-launch-kamala-harris/ country 2022-09-28 21:30:27
ニュース BBC News - Home Mental health patient: ‘I’ve been treated like an animal’ https://www.bbc.co.uk/news/uk-63049874?at_medium=RSS&at_campaign=KARANGA vulnerable 2022-09-28 12:31:24
ニュース BBC News - Home Years of scandal and promises as patients decline https://www.bbc.co.uk/news/uk-63045303?at_medium=RSS&at_campaign=KARANGA psychiatric 2022-09-28 12:22:01
ニュース BBC News - Home Mortgage deals withdrawn in record numbers over rate rise fears https://www.bbc.co.uk/news/business-63061534?at_medium=RSS&at_campaign=KARANGA december 2022-09-28 12:40:49
ニュース BBC News - Home Nord Stream leaks: Sabotage to blame, says EU https://www.bbc.co.uk/news/world-europe-63057966?at_medium=RSS&at_campaign=KARANGA danish 2022-09-28 12:37:24
ニュース BBC News - Home Hurricane Ian: Florida braces for 'major' storm damage https://www.bbc.co.uk/news/world-us-canada-63052558?at_medium=RSS&at_campaign=KARANGA governor 2022-09-28 12:51:12
ニュース BBC News - Home Malawi's John Chilembwe gets statue in London's Trafalgar Square https://www.bbc.co.uk/news/world-africa-62824881?at_medium=RSS&at_campaign=KARANGA trafalgar 2022-09-28 12:04:31
北海道 北海道新聞 G20農相、ロシアの侵攻非難 共同声明は見送り https://www.hokkaido-np.co.jp/article/737618/ 共同声明 2022-09-28 21:14:00
北海道 北海道新聞 鈴木知事、11月にシンガポールで商談会 道議会で表明、道産品の販路拡大 https://www.hokkaido-np.co.jp/article/737611/ 販路拡大 2022-09-28 21:07:00
北海道 北海道新聞 村上春樹さん早大で怪談ライブ 白石加代子さん「雨月物語」朗読 https://www.hokkaido-np.co.jp/article/737617/ 村上春樹 2022-09-28 21:13:00
北海道 北海道新聞 日高管内29人、胆振管内193人感染 新型コロナ https://www.hokkaido-np.co.jp/article/737608/ 医療機関 2022-09-28 21:04:00

コメント

このブログの人気の投稿

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