投稿時間:2023-08-24 23:19:30 RSSフィード2023-08-24 23:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… YouTube、「Shazam」のような音楽認識機能をテスト中 https://taisy0.com/2023/08/24/175785.html android 2023-08-24 13:26:50
AWS AWS Government, Education, and Nonprofits Blog Introducing the Government Lens for the AWS Well-Architected Framework https://aws.amazon.com/blogs/publicsector/introducing-government-lens-for-aws-well-architected-framework/ Introducing the Government Lens for the AWS Well Architected FrameworkAWS announced the launch of a Government Lens for the nbsp AWS Well Architected Framework The Government Lens is a collection of customer proven design principles scenarios and technology agnostic best practices designed to encourage the unique context and requirements of governments globally to be considered when designing building and operating government workloads on AWS 2023-08-24 13:39:14
python Pythonタグが付けられた新着投稿 - Qiita Raspberrypiとtailscaleでポートフォリオを公開した話 https://qiita.com/T3pp31/items/6c19777a18e3549d68b1 raspberrypi 2023-08-24 22:51:17
Git Gitタグが付けられた新着投稿 - Qiita 境界第八話 境界を作り出さない手法 https://qiita.com/unnesscom/items/7c94a9aaf364607b1be6 設定 2023-08-24 22:06:29
Ruby Railsタグが付けられた新着投稿 - Qiita Rails v7.0.7対応 ActiveSupport (Fix Cache::NullStore with local caching for repeated reads) https://qiita.com/shi-tak/items/8874aed38d98a4d4bc12 activesupp 2023-08-24 22:33:11
海外TECH DEV Community Variables in Go (Golang) https://dev.to/diwakarkashyap/variables-in-go-golang-34b4 Variables in Go Golang In Go commonly known as Golang variables are a fundamental concept Variables are used to store data that can be used and manipulated throughout a program Here s a breakdown of variables in Go Declaring Variables You can declare a variable using the var keyword var x intThis declares a variable named x of type int You can also assign a value during declaration var y int For multiple variables var a b c intShort Declaration Go supports a shorthand syntax to declare and initialize a variable z This infers the type of z based on the value you assign to it Zero Values In Go variables declared without an explicit initial value are given their zero value The zero value is for numeric typesfalse for the boolean type empty string for stringsnil for pointers functions interfaces slices channels and maps Constants Go supports constants which are declared like variables but with the const keyword Constants cannot be changed after they re declared const Pi Data Types Go is a statically typed language which means the variable type is determined at compile time Some common types include Basic Types int int int int int uint uint uint uint uint uintptr float float complex complex bool stringComposite Types array slice map struct channel interface pointer function Pointers A pointer is a variable that stores the address of another variable Pointers in Go are similar to those in other languages like C and C var ptr intThis declares a pointer to an integer Scope Variables can be defined in various scopes Local Inside a function or block only accessible within that function Package Outside a function but inside a package accessible throughout the package Global Declared outside a function accessible throughout the program Exported Unexported Variables starting with an uppercase letter are exported and can be accessed from other packages Those with lowercase are unexported and are private to their package Using variables efficiently and understanding their scope and lifetime is crucial when writing Go programs Thank you for reading I encourage you to follow me on Twitter where I regularly share content about JavaScript and React as well as contribute to open source projects and learning golang I am currently seeking a remote job or internship Twitter GitHub Portfolio 2023-08-24 13:11:53
海外TECH DEV Community Diving into the GitHub Octernships program with OpenSauced https://dev.to/opensauced/diving-into-the-github-octernships-program-with-opensauced-1inf Diving into the GitHub Octernships program with OpenSaucedIn my last blog post I shared how I got selected for the GitHub Octernships program and how you can too If you haven t read it yet you can check it out here For this post I ll talk about what I actually did in the Octernship how it helped me improve as an open source developer and grow professionally What we worked onAnush my fellow Octern and I knew that we would work on a chrome extension because of the assignment that we did to get selected What we didn t know was the new things we were going to learn and the amazing people we were going to meet When we started work on the open sauced ai chrome extension it didn t even have a name so yes we were excited about being the proud maintainers and writers of the first few lines of code of a potentially big and impactful project I kicked things off by setting up the base for the extension popup with React after a meeting with Anush and OpenSauced s founder Brian Before this only one issue existed with people from the OpenSauced team discussing what the extension could possibly become After this we requested another contributor who s work Brian really liked to work on the User Profile page they helped us without hesitation and set up some really important context and a beautiful profile page with this PR Anush worked on adding the Share OpenSauced Profile button to GitHub s UI and other critical bug fixes and performance improvements while I did the View on OpenSauced button We worked on a lot of code injection features to modify GitHub s UI and make a simple bridge to OpenSauced that will help us retain and find new users If you want to know how we did that this might be a good future read For the first months our work involved working on the extension s frontend and interacting with the OpenSauced API For the next two we changed our focus to AI The PivotAn important part of making products is knowing what sells and to start focusing on exactly that because that s what will bring people to your app website or even chrome extension in this case Brian had a great idea of integrating AI features into the extension and Anush and I were thrilled to work on these Essentially these ideas were GPT wrappers but integrating them into GitHub was the hard part selecting and appending content from and into the GitHub UI We started with the first feature and were done in a few days This feature was a way for contributors to summarise their pull requests and add AI generated descriptions to them We summarised the PR by getting the source code or the commit messages that the contributor added This was a great start As part of the settings panel in the popup users could configure the parameters for content generation like the tone temperature etc Next we worked on AI features to assist developers during code review These were a set of features The first one was implemented initially and all were merged into a dropdown later These features included Generating tests for the selected lines of code during PR review Generating refactor suggestions Generating code explanations This was another important feature that allowed us to dream up new features and to attract contributors who were excited about the applications of AI We worked on these AI wrapper features for about a month and then we switched to the last phase of features planned for the chrome extension RepoQueryRepoQuery is an AI tool to index public GitHub repositories and answer user queries about them The idea for RepoQuery came from one of Anush s projects that he made for a hackathon DocQuery DocQuery does the same thing that RepoQuery does but for documents Anush worked on the backend for RepoQuery with Rust and Qdrant while I worked on the frontend chat dialog that would appear on the home page for every repository on GitHub and also the CLI based interactions for repo query for open sauced pizza cli You can start using RepoQuery now by installing the OpenSauced ai chrome extension This was the work that we have been doing for the last few weeks BlogsTechnical writing and communication are a really important skill that every developer must know to share their ideas and knowledge with other members of the community Blogging is something I always wanted to do but procrastinated about I wrote and published my first blog as part of the GitHub Octernships program and worked with a professional content writer for the first time too Bekah is the Developer Experience Lead at OpenSauced and has a lot of experience writing content She even taught technical writing to University students so I knew I was in good hands She read through all my blogs and reviewed them which requires a lot of patience and skill that I admire After I wrote my first blog I reached followers on dev to in no time and crossed the k mark with the second one This was only possible due to the audience Bekah and other writers for the OpenSauced team had gained over a long period of time I ve written blogs up until now and have liked writing content so I m looking forward to writing more Other RepositoriesOver the last few weeks the chrome extension has just needed some bug fixes here and there and a few QOL improvements Since it s been nothing too challenging Anush and I switched our focus to other OpenSauced repositories to keep challenging ourselves and continue learning new things Brian and John an experienced developer at OpenSauced have supported us in exploring new ways to contribute too I made a pull request that integrates RepoQuery with the OpenSauced pizza cli CLI application written in Go Go is a great beginner friendly language and I always wanted to contribute to a Go based open source project which I could do thanks to the Octernship and OpenSauced I ve also worked on the core product for OpenSauced the insights project I ve added a few features in the last week to both the backend API written in NestJS and the frontend made with NextJS I had not worked with NestJS before but Brandon the maintainer of the api opensauced repository helped me get started in the most calm and supportive way possible which honestly I wasn t expecting from a senior dev with so much to do he is also the founder of an Angular based meta framework called Analog I look forward to continue working on all three of these repositories and possibly even more in the coming months thanks to the help and support I ve received from the developers at OpenSauced What s Next I have months until my octernship ends and I plan to be as useful as I can during this period I hope to get a remote developer job in the future on the basis of the work I ve done during my month octernship so I need to do as much as I can to put myself out there I also plan to continue writing blog posts for OpenSauced whenever I get some free time and of course continue maintaining OpenSauced ai and contributing to the various other OpenSauced repositories even after my Octernship ends I wish people who have read my Octernship blog posts good luck and hope they get selected for the program too 2023-08-24 13:08:00
Apple AppleInsider - Frontpage News The best Thunderbolt 4 docks and hubs you can buy for your Mac https://appleinsider.com/articles/22/03/17/the-best-thunderbolt-4-docks-and-hubs-you-can-buy-for-your-mac?utm_medium=rss The best Thunderbolt docks and hubs you can buy for your MacIf you re looking for a Thunderbolt dock so that you can add more connectivity to your Mac we ve curated some of the best docking and port expanding accessories currently on the market CalDigit hubMost modern Mac models come with at least a few USB C or Thunderbolt ports But depending on the complexity of your setup you may at times find yourself running out of ports That s where a Thunderbolt dock or hub comes in Read more 2023-08-24 13:43:34
Apple AppleInsider - Frontpage News Apple releases full trailer for the return of 'The Morning Show' https://appleinsider.com/articles/23/08/24/apple-releases-full-trailer-for-the-return-of-the-morning-show?utm_medium=rss Apple releases full trailer for the return of x The Morning Show x Ahead of its third season streaming premiere on September Apple TV has debuted a new trailer with Jennifer Aniston and Reese Witherspoon in The Morning Show Jennifer Aniston in The Morning Show on Apple TV Following a teaser trailer in July the new second trailer shows how the season will focus on a technology mogul looking to take over the UBA network Read more 2023-08-24 13:18:54
海外TECH Engadget The best cheap phones for 2023 https://www.engadget.com/best-cheap-phones-130017793.html?src=rss The best cheap phones for A decent smartphone used to cost upwards of but those days are thankfully over Now it s possible to find something that meets most of your needs for as little as However navigating the budget phone market can be tricky Many options that look good on paper often aren t great in use and some handsets will end up costing you more when you consider many come with restrictive storage This guide will help you find a bargain and maybe save you money as it highlights our top picks for the best cheap phones you can get right now What to look for in a cheap phoneFor this guide our picks cost between and Anything less and you might as well go buy a dumb phone or high end calculator instead Since they re meant to be more affordable than their flagship and midrange siblings entry level smartphones involve compromises the cheaper a device the lower your expectations around performance and experience should be For that reason the best advice I can give is to spend as much as you can afford In this price range even or more can get you a dramatically better product Second you should know what you want most from a phone When buying a budget device you may need to sacrifice a decent camera for a long lasting battery or trade a high resolution display for a faster processor That s just what comes with the territory but knowing your priorities will make it easier to find the right phone It s also worth noting some features can be hard to find on cheap handsets For instance you won t need to search far for a device with all day battery life ーbut if you want a great camera you re better off shelling out for one of the recommendations in our midrange smartphone guide which all come in at or less Wireless charging and waterproofing also aren t easy to find in this price range and forget about a fast processor On the bright side all our recommendations come with headphone jacks so you won t need to get wireless headphones iOS is also off the table since the most affordable handset Apple sells is the iPhone SE That leaves Android as the only option Thankfully in there s little to complain about Google s OS and you may even prefer it to iOS Lastly keep in mind most Android manufacturers typically offer far less robust software support for their budget devices In some cases your new phone may only receive one major Android update and a year or two of security patches beyond that That applies to the OnePlus and Motorola recommendations on our list If you d like to keep your phone for as long as possible Samsung has the best software policy of any Android manufacturer in the budget space offering four years of security updates on all of its devices The best budget phone OnePlus Nord N GThe recently announced OnePlus Nord N G offers the best value of any of the smartphones on our list No other phone in the price bracket features a processor as fast as the N s Snapdragon G Moreover OnePlus has specced the N with a generous GB of RAM and GB of storage meaning you probably won t need to budget for a microSD card or cloud storage It also comes with a Hz IPS display a feature that s great for both gaming and everyday use Best of all the N ships with a W power adapter that you can use to get a full day of battery life in minutes The N would be almost perfect if it had waterproofing and OnePlus had committed to pushing more than one major Android update to the phone Another great option Samsung Galaxy A GDon t let the Samsung Galaxy A G s modest price and uninspired design fool you ーit has a lot to offer For you get a phone that is surprisingly fast and features a competent camera Additionally it has NFC connectivity for contactless payments something you won t find on a lot of phones in this price range Battery life is also excellent coming in at two days with moderate use Plus there s that great software policy I mentioned above with Samsung promising to support the A with two major Android updates and four years of security patches The only thing missing from the A is waterproofing so you may want to opt for something sturdier if you live by the beach or like to doomscroll in the tub An ultra budget pick Samsung Galaxy AsIf you want to spend as little as possible but still want something from a reputable brand the Samsung Galaxy As is your best bet Thanks to its MediaTek Helio P processor the As performs better than you would expect Unfortunately the phone feels about as cheap as it costs and the camera isn t much better Oh and did I mention the As ships with a measly GB of internal storage In other words be prepared to buy a microSD card to store all your photos and music Thankfully the As like its more expensive sibling will receive four years of security updates from Samsung You won t find that kind of software support on any other handset in the sub category Honorable mention Motorola Moto G StylusThe Motorola Moto G Stylus offers something none of the other picks on this list do a built in stylus If you love doodling and jotting down notes then this is the cheap phone to buy Thankfully it has a few other things going for it too The Moto G Stylus sports a big and responsive inch display and a long lasting mAh battery Plus it s available in two lovely colors midnight blue and glam pink As with other options in this price range it would be nice if the Moto G Stylus came with a more capable camera a fast charger and better protection against water One word of advice steer clear of Moto G Stylus G It doesn t offer enough of an upgrade to justify costing This article originally appeared on Engadget at 2023-08-24 13:55:04
海外TECH Engadget Beats Studio Pro headphones are $100 off right now https://www.engadget.com/beats-studio-pro-headphones-are-100-off-right-now-131517683.html?src=rss Beats Studio Pro headphones are off right nowMaybe it s from the years of Apple offering students a new pair every year with a Macbook or iPad purchase but something about the end of summer makes a sale on Beats headphones feel right The latest pair to tout a discount is the new Beats Studio Pro an update six years in the making Right now its down from to ーa percent price cut ーand its first sale since debuting in July nbsp The Beats Studio Pro is a good over the ear noise canceling option ーespecially for off We gave it an in our review and were especially impressed with its improved sound quality with dynamic head tracking This upgrade provides a more immersive sound and really reignites some old favorite songs The Studio Pro also has up to hours of battery life transparency mode and three EQ modes ーConversation Signature and Entertainment ーin USB C audio mode Though they don t have automatic pausing or the most comfortable feel on the market nbsp If you re looking for a cheaper option the Beats Studio Buds are another relatively new addition to the company s lineup and are currently percent off ーdropping from to These earbuds scored an in our May review partly because of their sticker price The Studio Buds also have enhanced noise canceling and sound quality compared to their predecessor Plus its battery life expanded by percent and it got new air vents on its front and side nbsp 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-08-24 13:15:17
海外科学 NYT > Science How a Harvard Professor Became the World’s Leading Alien Hunter https://www.nytimes.com/2023/08/24/magazine/avi-loeb-alien-hunter.html How a Harvard Professor Became the World s Leading Alien HunterAvi Loeb s single minded search for extraterrestrial life has made him the most famous practicing astronomer in the country ーand possibly the most controversial 2023-08-24 13:35:26
海外TECH WIRED Meta Releases Code Llama, a Coding Version of Llama 2 https://www.wired.com/story/meta-code-llama/ coding 2023-08-24 13:30:00
ニュース BBC News - Home Sara Sharif: Court rules girl's Pakistan family cannot be detained https://www.bbc.co.uk/news/uk-66603843?at_medium=RSS&at_campaign=KARANGA father 2023-08-24 13:08:39
ニュース BBC News - Home Mary Earps: Nike will sell 'limited quantities' of England World Cup goalkeeper shirts https://www.bbc.co.uk/sport/football/66607749?at_medium=RSS&at_campaign=KARANGA Mary Earps Nike will sell x limited quantities x of England World Cup goalkeeper shirtsEngland fans will be able to buy Mary Earps replica goalkeeper shirts after Nike say limited quantities would go on sale 2023-08-24 13:54:24
ニュース BBC News - Home Inquiry to be held into Malkinson wrongful rape conviction https://www.bbc.co.uk/news/uk-66606328?at_medium=RSS&at_campaign=KARANGA innocent 2023-08-24 13:48:13
ニュース BBC News - Home Glyn Razzell refuses to reveal where his wife Linda's body is https://www.bbc.co.uk/news/uk-england-wiltshire-66603784?at_medium=RSS&at_campaign=KARANGA murder 2023-08-24 13:48:12
ニュース BBC News - Home Sir John Eliot Gardiner: Famed conductor pulls out of the Proms after alleged assault https://www.bbc.co.uk/news/entertainment-arts-66604555?at_medium=RSS&at_campaign=KARANGA france 2023-08-24 13:54:06
ニュース BBC News - Home Subway agrees sale to Dunkin' and Baskin-Robbins owner Roark Capital https://www.bbc.co.uk/news/business-66603109?at_medium=RSS&at_campaign=KARANGA family 2023-08-24 13:31:14
ニュース BBC News - Home Who is Dmitry Utkin and who else was reportedly on the plane? https://www.bbc.co.uk/news/world-europe-66602757?at_medium=RSS&at_campaign=KARANGA chekalov 2023-08-24 13:42:30
ニュース BBC News - Home Rugby World Cup: England wing Anthony Watson ruled out of the World Cup https://www.bbc.co.uk/sport/rugby-union/66608039?at_medium=RSS&at_campaign=KARANGA injury 2023-08-24 13:49:44
ニュース BBC News - Home Aymeric Laporte leaves Manchester City for Al Nassr in £23.6m move https://www.bbc.co.uk/sport/football/66602657?at_medium=RSS&at_campaign=KARANGA nassr 2023-08-24 13:35:44
海外TECH reddit Announcement Regarding Graduation of Magni Dezmond and Noir Vesper https://www.reddit.com/r/Hololive/comments/1601buh/announcement_regarding_graduation_of_magni/ Announcement Regarding Graduation of Magni Dezmond and Noir Vesper submitted by u hololive to r Hololive link comments 2023-08-24 13:01:17
GCP Cloud Blog Supporting generative AI development with our data cloud partners https://cloud.google.com/blog/products/data-analytics/google-cloud-data-cloud-partners-support-generative-ai/ Supporting generative AI development with our data cloud partnersToday our data and analytics partners are rolling out new updates and integrations with Google Cloud to help customers significantly reduce the time it takes to go from managing data to building new AI tools and workflows These partner solutions represent a significant step forward in Google Cloud s mission to offer the industry s most open data cloud ecosystemーa major asset for customers building generative AI  By utilizing Google Cloud services like BigQuery our powerful foundation models in Vertex AI and our trusted infrastructure partners can help customers improve some of their most common and complex use cases for data Data and analytics companies are then providing more tooling to help businesses address industry specific needs develop bespoke generative AI models and apply AI to help users more efficiently explore their data Supporting industry specific use cases for generative AIBusinesses have an opportunity to use generative AI to address common industry specific challenges such as helping a healthcare provider instantly generate patient notes for clinician review or enabling a loan officer to instantly generate a summary of open applications Data underpins all of these industry scenarios and now our partners are launching several new solutions to address them Confluent which provides a widely adopted data streaming platform will use Google Cloud s generative AI to launch new solutions for retail and financial services customers improving business insights and operational efficiencies For example generative AI can help an inventory manager better predict supply shortages based on local demand trends to mitigate “out of stock items while a banking security expert can apply it to improve fraud detection based on more accurate risk models and alerts DataRobot a platform for building AI solutions will use Vertex AI to help clinicians better understand and make decisions with their data By querying a patient s name and symptoms a new solution will run a model that uses BigQuery for analytics and can reference personalized medical history stored securely on AlloyDB to support a clinician in determining next steps in care The solution will give healthcare organizations full control over their data with preview access available to customers later this year MongoDB a leading developer data company is working with Exafluence to develop a platform called Exf ChemXpert for the chemical industry to help researchers and chemists plan for synthesis and predict forward reaction reaction completion and retrosynthetic routes The platform will use AI and data mining techniques with MongoDB Atlas Vector Search and foundation models from Google Cloud to discover new molecules Exf ChemXpert will also include configurable components for a wide variety of applications in the chemical industry such as property prediction to guide the design of new molecules chemical reaction optimization to make developing molecules more environmentally friendly and novel drug discovery in the pharmaceutical industry  Helping customers build custom generative AI models and applicationsPartners like Dataiku Redis SingleStore and Starburst are all making it easier for customers to train AI models and build new generative AI applications using data stored within their platforms Now each of these partners is working to help customers apply powerful AI models on top of their relevant data Dataiku an AI and data science platform will integrate with Vertex AI to bring the PaLM foundation model to its Prompt Studios interface to improve how engineers design test and operationalize generative AI prompts With PaLM users will be able to easily deploy a powerful model directly within Dataiku workflows which enables enterprises to more quickly build and scale their generative AI applications  Redis which delivers an enterprise grade data platform will help customers build custom generative AI applications together with Vertex AI By utilizing contextual data stored in Redis as a vector database and Google Cloud s powerful foundation models customers will be able to create unique generative AI applications like virtual shopping assistants automated customer support services and more  SingleStore a cloud first database system will utilize Vertex AI to help customers build bespoke generative AI applications based on relevant data stored across its systems This will allow SingleStore users to more easily identify and contextualize real time business insights through experiences like a chatbot which will apply Google Cloud s natural language processing to provide more contextual accurate responses SingleStore will launch these capabilities later this year Starburst the fast growing data lake analytics platform will integrate with Vertex AI to enable customers to build and train generative AI models from data stored across multiple cloud providers and on premises environments Starburst s federation engine unites this data in a single environment where customers will be able to run advanced analytics workloads and improve analysis with Google Cloud s foundation models  Exploring large datasets with generative AIGenerative AI can further democratize data by letting more people explore large datasets with accuracy and confidence With Vertex AI many of our partners are utilizing Google Cloud s LLMs and other foundation models in Model Garden to enhance how users search and analyze data stored across a wide array of systems  Datastax which provides a scalable vector database will integrate with Vertex AI to help customers build secure production ready AI applications Through a new extension in DataStax s Astra DB developers will be able to easily combine data stored in Astra DB with Google Cloud s foundation models to enable more accurate consistent and contextual responses to search queries with natural language understanding The new capabilities will launch this fall  Elastic a leading platform for search powered solutions will integrate Vertex AI with the Elasticsearch Relevance Engine By combining enterprise data with Google Cloud s foundation models Elastic users can expect a secure deployment that generates more relevant factual answers to users complex questions Elastic will launch these capabilities later this year Neoj a leading graph database provider will integrate with Vertex AI to add vector search to its AuraDB database offering This capability improves the search experience by providing faster performance and more contextual and accurate resultsーfor example a consumer searching for umbrellas on a retail customer s website could also see results for rain boots and jackets AuraDB customers can start using these features next week We want to provide customers with the industry s most open flexible cloud platform and that is echoed in our work in generative AI New integrations with data and analytics companies will be invaluable in helping to extend the power of generative AI to more customers and we believe they can dramatically improve how businesses use their data moving forward 2023-08-24 14:00: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件)