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

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita ネット掲示板をスマホアプリ化してみた https://qiita.com/gakusei_programmer/items/6e0968e506a1342fc20f googleplay 2023-04-17 20:26:38
python Pythonタグが付けられた新着投稿 - Qiita ゼロから機械学習エンジニアになった方法 https://qiita.com/iws_/items/a3de3524726760751f2f 学生時代 2023-04-17 20:23:17
AWS AWSタグが付けられた新着投稿 - Qiita 【Git】`git push`が「rejected」された場合&「Please move or remove them before you merge」と言われてしまった場合の対応方法 https://qiita.com/Ryo-0131/items/f7c75a65900fb6aa60ae gitpush 2023-04-17 20:10:17
AWS AWSタグが付けられた新着投稿 - Qiita SelefraのGPT機能の紹介: インサイトマルチクラウドとSaaS by GPT https://qiita.com/Selefra/items/1a0247cc5ee4053f896a gptgpt 2023-04-17 20:07:45
Docker dockerタグが付けられた新着投稿 - Qiita [Rails・Docker・EC2] docker-compose buildするとno space left on deviceエラーが出てしまう。 https://qiita.com/Bjp8kHYYPFq8MrI/items/59ced8c02432428fc29e docker 2023-04-17 21:00:17
golang Goタグが付けられた新着投稿 - Qiita 自作CLIの対話モードでカーソルが効かない!となった時に使えるライブラリ https://qiita.com/Syuparn/items/9277608ae008284f1955 liner 2023-04-17 20:22:26
Git Gitタグが付けられた新着投稿 - Qiita 【Git】`git push`が「rejected」された場合&「Please move or remove them before you merge」と言われてしまった場合の対応方法 https://qiita.com/Ryo-0131/items/f7c75a65900fb6aa60ae gitpush 2023-04-17 20:10:17
Ruby Railsタグが付けられた新着投稿 - Qiita [Rails・Docker・EC2] docker-compose buildするとno space left on deviceエラーが出てしまう。 https://qiita.com/Bjp8kHYYPFq8MrI/items/59ced8c02432428fc29e docker 2023-04-17 21:00:17
技術ブログ Mercari Engineering Blog Firebaseを活用したクライアントサイドにおける機械学習モデルの管理 https://engineering.mercari.com/blog/entry/20230413-model-management-for-client-side-ml-powered-by-firebase/ hellip 2023-04-17 13:00:02
海外TECH MakeUseOf The Top 6 Sites and Apps for Finding Virtual or In-Person Vets Near You https://www.makeuseof.com/top-vet-platforms-virtual-in-person/ The Top Sites and Apps for Finding Virtual or In Person Vets Near YouWhether you re looking for a new vet or need to access emergency treatment these platforms make finding a virtual or in person vet easy 2023-04-17 11:30:16
海外TECH DEV Community Getting mwaa-local-runner up on AWS Cloud9 https://dev.to/aws/getting-mwaa-local-runner-up-on-aws-cloud9-1nhd Getting mwaa local runner up on AWS CloudHere is a quick recipe if you are looking to get mwaa local runner up and running on your Cloud developer setup This might not be the most optimised way so I am very happy to received suggestions on how to improve this What I will cover here is how to deploy mwaa local runner onto a standard Cloud IDE deployed in a default VPC Updating my AWS Cloud environmentThe first thing I needed to do was to increase the size of my local disk as Cloud only provides gb of storage This is fine for typical use cases but we are going to be building container images so need to set this higher pip install user upgrade botoexport instance id curl s python c import botoimport osfrom botocore exceptions import ClientError ec boto client ec volume info ec describe volumes Filters Name attachment instance id Values os getenv instance id volume id volume info Volumes VolumeId try resize ec modify volume VolumeId volume id Size print resize except ClientError as e if e response Error Code InvalidParameterValue print ERROR MESSAGE format e if eq then sudo rebootfiInstalling some missing toolsThe next thing I need to do is install docker compose as whilst Docker is installed docker compose is not This is the script I usewget uname s uname m sudo mv docker compose uname s uname m usr bin docker composechmod x usr bin docker composeAnd if this is successful you should now have it available via the command lineops environment docker compose versionDocker Compose version v Grabbing my AWS Cloud public IP addressThis should be everything you need to get started However we do need one piece of information before we proceed and that is the public IP address for your Cloud instance We need this as we are going to update the URL configuration parameter in mwaa local runner If you do not do this you will get Gateway errors when accessing Airflow via the UI Run the following command to find yourscurl Configuring and building mwaa local runnerYou can now check out the mwaa local runner project into your Cloud environmentgit clone We now need to change a couple of things The first is to update the airflow cfg docker config airflow cfg so that we can update the base url parameter line with the public IP of your Cloud instance base url http localhost base url The next change still in the airflow cfg to update how quickly it picks up DAGs in the DAGs folder Line is changed dag dir list interval dag dir list interval You can now save this file and you are ready to build your mwaa local runner image You do this using the following command and this works against any version of Apache Airflow that mwaa supports mwaa local env build imageThis will now take around minutes to complete the build process Go grab your favourite drink and then come back Hopefully you should see something like Building s FINISHED gt internal load build definition from Dockerfile s gt gt transferring dockerfile B s gt internal load dockerignore s gt gt transferring context B s gt internal load metadata for docker io library amazonlinux s gt auth library amazonlinux pull token for registry docker io s gt CACHED FROM docker io library amazonlinux sha adbcdeaafabbcdfefcaaadbcee s gt internal load build context s gt gt transferring context kB s gt COPY script bootstrap sh bootstrap sh s gt COPY script systemlibs sh systemlibs sh s gt COPY script generate key sh generate key sh s gt COPY script run startup sh run startup sh s gt COPY script shell launch script sh shell launch script sh s gt COPY script verification sh verification sh s gt COPY config constraints txt constraints txt s gt COPY config mwaa base providers requirements txt mwaa base providers requirements txt s gt RUN chmod u x systemlibs sh amp amp systemlibs sh s gt RUN chmod u x bootstrap sh amp amp bootstrap sh s gt RUN chmod u x generate key sh amp amp generate key sh s gt RUN chmod u x run startup sh s gt RUN chmod u x shell launch script sh s gt RUN chmod u x verification sh s gt COPY script entrypoint sh entrypoint sh s gt COPY config airflow cfg usr local airflow airflow cfg s gt COPY config webserver config py usr local airflow webserver config py s gt RUN chown R airflow usr local airflow s gt RUN chmod x entrypoint sh s gt WORKDIR usr local airflow s gt exporting to image s gt gt exporting layers s gt gt writing image sha dedbabfabcbdffdeda s gt gt naming to docker io amazon mwaa local sUse docker scan to run Snyk tests against images to find vulnerabilities and learn how to fix themCongratulations the hard part has been done Note If you see the following error sudo u airflow pip install no use pep constraint constraints txt poetry Usage pip install options lt requirement specifier gt package index options pip install options r lt requirements file gt package index options pip install options e lt vcs project url gt pip install options e lt local project path gt pip install options lt archive url path gt no use pep error It is not possible to use no use pep without setuptools and wheel installed executor failed running bin sh c chmod u x bootstrap sh amp amp bootstrap sh exit code You will need to update the bootstrap sh script and update line so that it looks like pip install PIP OPTION upgrade pip lt This is to resolve an issue with pip version To start mwaa local runner all you need to do now is mwaa local env startAnd Apache Airflow will start to boot It will take minutes but once ready you will see something likeaws mwaa local runner local runner INFO Starting gunicorn aws mwaa local runner local runner INFO Listening at And you can now open a browser pointing to your public Ip address and access Apache Airflow on port ConclusionThis short post showed you how you can get mwaa local runner up and running on your AWS Cloud instances I have been experimenting using this and really like that I can decouple this from my local setup I am still working on tweaking the setup so that I can locadown public access to the Cloud instance to just my own IP address something I would recommend you do to If you have found this blog post helpful please give me some feedback by completing this very short survey here 2023-04-17 11:40:41
海外TECH DEV Community C# 12 is Coming! 3 Features that will Blow your Mind https://dev.to/bytehide/c-12-is-coming-3-features-that-will-blow-your-mind-2o0c C is Coming Features that will Blow your MindOh get ready for some good news Microsoft s gone and added a bunch of shiny new features to C Preview In this post we re gonna dive right into these cool new features So let s go Primary constructors for non record classes and structsThis is the first feature of the C Preview This feature can help reduce boilerplate code and make it easier to initialize properties and use constructor parameters in methods and accessors Want an example Let s check this example from Microsoft public class Student int id string name IEnumerable lt decimal gt grades public Student int id string name this id name Enumerable Empty lt decimal gt public int Id gt id public string Name get set name Trim public decimal GPA gt grades Any grades Average m In the Student class above the primary constructor parameters are available throughout the body of the class For example we could do this with Name set by name Trim Additionally the grades parameter is used in the property accessor for GPA So you know how properties aren t made automatically for primary constructor parameters in non record classes and structs Well turns out you ve gotta make em yourself to show which data is out in the open That s pretty much in line with how classes are usually used right Now here s the cool part primary constructors can be a total lifesaver when it comes to dodging the hassle of declaring private fields and you know linking parameter values to those fields in those boring constructor bodies Wanna know how to pull it off Just throw in a this … initializer to ring up another constructor for the same class or struct making sure the primary constructor gets in on the action Using directives for additional typesThis new feature part of C is not limited to non nullable value types and also includes tuples with element types or names Here s an example of how to use aliases for types using Measurement string Units int Distance using PathOfPoints int using DatabaseInt int In the example above we re creating aliases for a tuple an array of integers and a nullable integer You can use these aliases in place of the original type anywhere that type would normally be used public void CalculateDistance PathOfPoints points Default values for lambda expressionsThis feature is similar to default values for regular method parameters and it allows developers to create more flexible and concise lambda expressions Just add an equals sign and the value you want to assign to the parameter after its declaration For example int addTo gt addTo sets a default value of for the addTo parameter which will be used if no value is provided when the lambda expression is called var addWithDefault int addTo gt addTo addWithDefault addWithDefault With this you won t have to rely on the System s DefaultParameterValue To make the code more succinct and readable use the InteropServices namespace to establish default values for lambda expression parameters Before C developers had to use a local function or the DefaultParameterValue attribute to specify default parameter values for lambda expressions This approach was more cumbersome and less intuitive than the new syntax It allows developers to write more concise and readable code as they can provide default values for commonly used parameters It also helps avoid the repetition of similar lambda expressions with only slight variations in parameter values Finally default parameter values for lambda expressions are included in metadata and are available via reflection This makes it easier for developers to write code that uses lambda expressions dynamically ConclusionIn this article we ve explored some of the new features that Microsoft has introduced in C Preview These new features such as primary constructors for non record classes and structs using directives for additional types and default values for lambda expressions will help developers to write more concise and readable code Microsoft is continuously working on improving the C language to make it more efficient and developer friendly Developers can expect to see even more advancements in the platform in the near future 2023-04-17 11:25:58
海外TECH DEV Community Fully On-Chain Applications: The Future of Decentralized Computing https://dev.to/galaxiastudios/fully-on-chain-applications-the-future-of-decentralized-computing-e24 Fully On Chain Applications The Future of Decentralized ComputingIn recent years blockchain technology has been gaining traction as a revolutionary way to securely and transparently store and transfer data From cryptocurrencies to smart contracts the potential applications of this technology are vast and varied One area that is particularly promising is the development of fully on chain applications which are applications that are entirely built on the blockchain What are fully on chain applications Fully on chain applications are applications that are entirely built and executed on the blockchain This means that all data logic and processing are stored and executed on the blockchain without relying on any off chain components Why are fully on chain applications important Fully on chain applications offer several benefits over traditional applications including Security Because all data is stored on the blockchain fully on chain applications are inherently more secure than traditional applications which are vulnerable to hacking and other security breaches Transparency The blockchain is a public ledger which means that all transactions are transparent and auditable This makes fully on chain applications ideal for use cases that require transparency and accountability Decentralization Fully on chain applications are truly decentralized meaning that there is no single point of failure or control This makes them ideal for use cases that require a high degree of decentralization such as voting systems or decentralized finance DeFi applications Immutability Once data is stored on the blockchain it cannot be altered or deleted This makes fully on chain applications ideal for use cases that require permanent tamper proof records Scalability Fully on chain applications can be more scalable than traditional applications as they can leverage the distributed computing power of the blockchain network to handle large amounts of data and processing Examples of use cases of fully on chain applications There are already several examples of fully on chain applications in use today including Decentralized Finance DeFi protocols DeFi protocols are a set of financial applications built on the blockchain which are fully on chain and rely on smart contracts to execute financial transactions Examples include lending platforms decentralized exchanges and insurance protocols Decentralized Autonomous Organizations DAOs DAOs are fully on chain organizations that operate autonomously through the use of smart contracts Members can propose and vote on decisions and funds can be managed transparently on the blockchain Non Fungible Tokens NFTs NFTs are unique digital assets that are stored and managed on the blockchain through the use of smart contracts They can be used for a variety of purposes including digital art gaming and collectibles Decentralized Marketplaces Decentralized marketplaces are fully on chain platforms that allow users to buy and sell goods and services using cryptocurrency without the need for a central authority These platforms use smart contracts to ensure that transactions are secure and transparent Supply Chain Management Supply chain management is an area where blockchain technology can be used to create fully on chain solutions Smart contracts can be used to track the movement of goods and ensure that they are authentic and have not been tampered with The future of fully on chain applications As blockchain technology continues to evolve we can expect to see more and more fully on chain applications emerge These applications will enable new use cases and business models that were previously impossible or impractical They will also help to further decentralize the internet and empower individuals and communities by giving them greater control over their data and assets In conclusion fully on chain applications are the future of decentralized computing They offer a range of benefits over traditional applications including security transparency decentralization immutability and scalability As the technology continues to mature we can expect to see more and more innovative use cases emerge making the blockchain a truly transformative technology for the st century 2023-04-17 11:13:55
Apple AppleInsider - Frontpage News Contentious iPhone 15 Pro rumor season continues with details about 'Action button' https://appleinsider.com/articles/23/04/17/contentious-iphone-15-pro-rumor-season-continues-with-details-about-action-button?utm_medium=rss Contentious iPhone Pro rumor season continues with details about x Action button x The rumors about the iPhone Pro s buttons continue to flow with the latest proposing the mute is replaced by an Action button and that changes will be made to how you turn off the smartphone A render of the iPhone Pro s supposed solid state volume controls Leaks and rumors over the months have pressed forward the idea that Apple will change the buttons on the iPhone Pro models to solid state versions including a supposed unified volume button and a replacement of the mute switch for a button Now it is claimed that the mute switch will actually be something else Read more 2023-04-17 11:59:59
Apple AppleInsider - Frontpage News Apple is just getting started with it's long-term plan to dominate India's smartphone market https://appleinsider.com/articles/23/04/17/apple-is-just-getting-started-with-its-long-term-plan-to-dominate-indias-smartphone-market?utm_medium=rss Apple is just getting started with it x s long term plan to dominate India x s smartphone marketWedbush analysts predict that Apple opening its first stores in India is the opening gambit of an aggressive push to grow its market share in the country as well as increasing its manufacturing there Apple BKC in MumbaiIn the week that Apple BKC opens in Mumbai and then Apple Saket in New Delhi analysts from Wedbush predict that this is the start of a strategic poker move for the company Read more 2023-04-17 11:59:03
Apple AppleInsider - Frontpage News India's first Apple Store teased before Tuesday's grand opening https://appleinsider.com/articles/23/04/17/indias-first-apple-store-teased-before-tuesdays-grand-opening?utm_medium=rss India x s first Apple Store teased before Tuesday x s grand openingAhead of Tuesday s opening Apple has given a sneak peek into its Apple BKC store in Mumbai showing off a handcrafted timber ceiling and its energy efficiency credentials Outside Apple BKC Apple Apple will be opening its first Apple Store location in Mumbai on Tuesday with customers able to visit the outlet at the Bandra Kurla Complex Before its official opening Apple has shared photographs of the retail outlet Read more 2023-04-17 11:02:41
Apple AppleInsider - Frontpage News Apple expected to lay iOS 17 sideloading groundwork at WWDC 2023 https://appleinsider.com/articles/23/04/16/apple-will-lay-sideloading-groundwork-in-ios-17?utm_medium=rss Apple expected to lay iOS sideloading groundwork at WWDC Apple won t be introducing many features in iOS a report claims but it will be putting in elements to enable the side loading of apps Sideloading may change how you install apps on your iPhoneJune s WWDC will feature Apple s annual updates to its main operating systems with iOS changes being the most watched of them all However for s developer event it seems that iOS s changes will lean more towards regulatory compliance than brand new features Read more 2023-04-17 11:22:16
海外TECH Engadget The Morning After: Pentagon leaks suspect was outed by his Steam profile https://www.engadget.com/the-morning-after-pentagon-leaks-suspect-was-outed-by-his-steam-profile-111526436.html?src=rss The Morning After Pentagon leaks suspect was outed by his Steam profileAccused of leaking classified documents Jack Teixeira was charged after a quick investigation focused on his digital trail The New York Times investigative journalism team identified Teixeira by finding an Instagram account mentioned in his Steam profile That in turn showed photos of the granite kitchen countertop and floor tiles visible in the leaks The suspect hasn t yet entered a plea and will face a hearing on April th The charges against him carry a maximum combined sentence of up to years in prison Teixeira allegedly began sharing the documents on a Minecraft oriented Discord server in late He supposedly didn t intend to act as a whistleblower but the content eventually spread to other Discord servers as well as chan and Telegram Mat SmithThe Morning After isn t just a newsletter it s also a daily podcast Get our daily audio briefings Monday through Friday by subscribing right here The biggest stories you might have missedElon Musk has created his own artificial intelligence companyParler s new owner immediately took the social network offline Remembering Virginia Norwood the mother of NASA s Landsat programHitting the Books Why nobody knows Hiram Maxim inventor of the incandescent lightbulbInstagram redesigns the Reels editor to make it easier to useMontana is about to become the first state to ban TikTokThe state passed a bill that requires app stores to block the service Montana is to become the first state to ban TikTok The state s legislature passed a bill requiring app stores to block the app in the state The bill passed to and will now head to Republican Governor Greg Gianforte who previously banned the app from state owned devices The ban is slated to go into effect in though it will likely face legal challenges well before then Like federal lawmakers the Montana bill claims TikTok s ties to ByteDance puts US users personal data at risk because the company could be compelled to turn over information to the Chinese government Continue reading Is Apple prepping a inch MacBook Air It s expected to feature an M chip According to Bloomberg Apple recently began testing a inch laptop to ensure its compatibility with third party App Store apps something the company does in the lead up to the release of a new device Developer logs reportedly show a machine with an eight core CPU and core GPU along with GB of RAM Those specs suggest the inch MacBook Air referred to as Mac in the logs will ship with an M chipset not Apple s next generation chip Continue reading Horizon Burning Shores launch trailer teases the franchise s biggest boss fightThe DLC arrives next week SonyHorizon Forbidden West Burning Shores is a DLC chapter that continues Aloy s story Ahead of its launch a new trailer offers a fresh look at the Burning Shores a volcanic archipelago once home to Los Angeles We also get a closer look at a Metal Devil boss fight which looks huge In fact that battle is one reason Horizon Forbidden West Burning Shores won t be available on PlayStation even though you can play the original game on Sony s last generation console Game Director Mathijs de Jonge said “The cityscape ruins of LA and its surroundings are highly detailed and require a lot of processing power as well as fast streaming technology to run properly Continue reading German artist refuses award after his AI image wins photography prizeThe artist said AI is not photography Boris EldagsenAn AI generated photo called The Electrician by Boris Eldagsen took first prize in the Creative category at the recent World Photography Organization s Sony World Photography Awards ーdespite not being taken by a camera Eldagsen subsequently refused the award saying quot AI is not photography I applied to find out if the competitions are prepared for AI images to enter They are not quot Eldagsen explained he used his experience as a photographer to create the prize winning image acting as a director of the process with the AI generators as quot co creators quot Although photography inspired the work he said the point of the submission is it s not photography Continue reading This article originally appeared on Engadget at 2023-04-17 11:15:26
海外TECH CodeProject Latest Articles Adding images to a Winforms Project so they are accessible as resources https://www.codeproject.com/Tips/5359158/Adding-images-to-a-Winforms-Project-so-they-are-ac project 2023-04-17 11:52:00
海外TECH CodeProject Latest Articles libpe - PE32/PE32+ Binaries Viewer Library https://www.codeproject.com/Articles/5205732/libpe-PE32-PE32plus-Binaries-Viewer-Library information 2023-04-17 11:30:00
海外科学 NYT > Science Live Updates: SpaceX’s Starship Rocket Prepares for Launch https://www.nytimes.com/live/2023/04/17/science/spacex-starship-launch Live Updates SpaceX s Starship Rocket Prepares for LaunchThe nearly foot moon and Mars rocket is on the launchpad in South Texas as engineers prepare it for a test flight part of the way around the Earth 2023-04-17 11:58:44
ニュース @日本経済新聞 電子版 香港ファンド責任者「フジテック社長の再任に反対」 https://t.co/lultsOqB0a https://twitter.com/nikkei/statuses/1647927875163803650 香港 2023-04-17 11:39:57
ニュース @日本経済新聞 電子版 幕張新駅が映す千葉県鉄路の「南北問題」 開業1カ月 https://t.co/rArOfVMMXw https://twitter.com/nikkei/statuses/1647922827096625153 南北問題 2023-04-17 11:19:53
ニュース BBC News - Home Vladimir Kara-Murza: Russian opposition figure jailed for 25 years https://www.bbc.co.uk/news/world-europe-65297003?at_medium=RSS&at_campaign=KARANGA harsh 2023-04-17 11:41:37
ニュース BBC News - Home Sergeant charged with rape of woman while on duty in Plymouth https://www.bbc.co.uk/news/uk-england-devon-65300268?at_medium=RSS&at_campaign=KARANGA plymouth 2023-04-17 11:29:47
ニュース BBC News - Home AI-generated Drake and The Weeknd song goes viral https://www.bbc.co.uk/news/entertainment-arts-65298834?at_medium=RSS&at_campaign=KARANGA tiktok 2023-04-17 11:07:13
ニュース BBC News - Home Manchester Marathon runners get engaged at finish line https://www.bbc.co.uk/news/uk-england-manchester-65300545?at_medium=RSS&at_campaign=KARANGA manchester 2023-04-17 11:18:17
ニュース BBC News - Home Last chance to register to vote in England's local elections https://www.bbc.co.uk/news/uk-politics-65013652?at_medium=RSS&at_campaign=KARANGA england 2023-04-17 11:46:07
ビジネス ダイヤモンド・オンライン - 新着記事 ロシアによるWSJ記者拘束、国連加盟40カ国余りが非難声明 - WSJ発 https://diamond.jp/articles/-/321485 非難 2023-04-17 20:29:00
ニュース Newsweek シンガポールのセクシー系インフルエンサー、ソウルから下着ライブ配信で炎上 https://www.newsweekjapan.jp/stories/world/2023/04/post-101391.php また、キアラキティは自分のSNSに警官に制止された場面をアップロードして、「誰かが私が胸を露出したと警察に通報した」と主張した。 2023-04-17 20:50:38
ニュース Newsweek 酪農場爆発で牛1.8万頭が焼死、逃げられない牛たちの「最後の鳴き声」が動画に テキサス州 https://www.newsweekjapan.jp/stories/world/2023/04/18-34.php 酪農場爆発で牛万頭が焼死、逃げられない牛たちの「最後の鳴き声」が動画にテキサス州【動画】牛舎に取り残された、逃げられない牛たちのうめき声今月日、テキサス州の酪農場で爆発があり、その火災によって従業員人が重体、推定万頭の牛が焼死した。 2023-04-17 20:25:00
IT 週刊アスキー 『鳴潮(Wuthering Waves)』のCBTゲームプレイトレーラーが公開! https://weekly.ascii.jp/elem/000/004/133/4133252/ kurogame 2023-04-17 20:25: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件)