IT |
気になる、記になる… |
今日12月12日は「バッテリーの日」!! − トリニティのスタイリッシュなモバイルバッテリー「NuAns TAGPLATE」が当たるキャンペーンが開催中 |
https://taisy0.com/2022/12/12/165986.html
|
nuanstagplate |
2022-12-12 12:49:39 |
AWS |
lambdaタグが付けられた新着投稿 - Qiita |
API GatewayとLambdaを連携させる |
https://qiita.com/m0m0ca/items/08a3f4ebb18e9d900e6b
|
apigateway |
2022-12-12 21:37:27 |
python |
Pythonタグが付けられた新着投稿 - Qiita |
【個人開発】大人の盛り付けcom:盛り付け画像からレシピを探せるサービス【暇つぶしWEBアプリ】 |
https://qiita.com/bluenouni/items/b68004c832e000035fa9
|
暇つぶし |
2022-12-12 21:31:19 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
javascript を使用してみる_2 ポケモンカードのクイズまで 20221210作業 |
https://qiita.com/TaichiEndoh/items/55b2eec0a13684db8c66
|
javascript |
2022-12-12 21:29:14 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
[小ネタ]スプレッドシートのデータからSQLを泥臭く作るときにRubyを使ってみる |
https://qiita.com/suruseas/items/a736d72f0d838ee0fff4
|
小ネタ |
2022-12-12 21:27:36 |
Linux |
Ubuntuタグが付けられた新着投稿 - Qiita |
LinuxとVsCodeでC# GUIアプリをデバッグする |
https://qiita.com/iota_11/items/77ef0f2947ba0023d57c
|
linux |
2022-12-12 21:35:07 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
API GatewayとLambdaを連携させる |
https://qiita.com/m0m0ca/items/08a3f4ebb18e9d900e6b
|
apigateway |
2022-12-12 21:37:27 |
Azure |
Azureタグが付けられた新着投稿 - Qiita |
App Service における Java SE stack への Jar デプロイの挙動 |
https://qiita.com/georgeOsdDev@github/items/436b21ffad30f7ca31d8
|
appservice |
2022-12-12 21:07:52 |
Git |
Gitタグが付けられた新着投稿 - Qiita |
初心者向けgit&githubの使い方(実用編) |
https://qiita.com/usamaro/items/6871cda76a43f2484617
|
gitampgithub |
2022-12-12 21:03:20 |
技術ブログ |
Mercari Engineering Blog |
メルカリにおけるA/Bテスト分析自動化の取り組み |
https://engineering.mercari.com/blog/entry/20221212-dc31d8e3d8/
|
hellip |
2022-12-12 14:00:43 |
技術ブログ |
Developers.IO |
[レポート] QTC002 Amazon Braket でのハイブリッド量子機械学習ワークロード |
https://dev.classmethod.jp/articles/reinvent2022-qtc002-hybrid-quantum-machine-learning-workloads-on-amazon-braket/
|
qtcamazonbraket |
2022-12-12 12:59:41 |
海外TECH |
DEV Community |
🐍FastAPI vs Flask 🌶️v⚡ |
https://dev.to/chainguns/fastapi-vs-flask-v-1cjb
|
FastAPI vs Flask ️v FastAPI vs Flask ️vFastAPI is a modern fast high performance web framework for building APIs with Python based on standard Python type hints It is built on top of Starlette for the web parts and Pydantic for the data parts Flask is a lightweight Python web framework that provides useful tools and features for creating web applications It is built on top of the Werkzeug WSGI toolkit and Jinja template engine One key difference between FastAPI and Flask is the speed at which they can handle requests FastAPI is built on top of Starlette and is therefore capable of handling a large number of concurrent requests efficiently This makes it a good choice for building highly scalable performance critical APIs Flask on the other hand is not designed for high performance and may struggle to handle a large number of concurrent requests Another difference is the way in which the two frameworks handle data validation FastAPI uses Pydantic a powerful data validation and parsing library to validate the data sent to the API This allows developers to define the data schemas using Python type hints and ensures that the data sent to the API is always valid Flask on the other hand does not have a built in data validation system and developers must manually validate the data sent to the API Here is a simple example of how to create a GET endpoint in FastAPI from fastapi import FastAPIapp FastAPI app get def read root return Hello World And here is the same example in Flask from flask import Flaskapp Flask name app route methods GET def read root return Hello World As you can see FastAPI provides a more concise and user friendly syntax for creating endpoints compared to Flask Additionally FastAPI automatically generates an OpenAPI schema for your API allowing users to easily interact with it using tools like Postman or Swagger UI Flask does not have this built in functionality and developers must manually create the OpenAPI schema for their API One of the advantages of using FastAPI is its built in support for asynchronous programming Asynchronous programming allows you to write non blocking code that can improve the performance of your application FastAPI uses the asyncio library from the Python standard library to support asynchronous programming This means that you can write async code in FastAPI simply by adding the async keyword to your functions Here is an example of how to use asynchronous programming in FastAPI from fastapi import FastAPIapp FastAPI app get async def read root return Hello World Flask on the other hand does not have built in support for asynchronous programming If you want to use asyncio in Flask you must use a separate extension like Flask Aiohttp or Flask SocketIO This can make it more difficult to use asynchronous programming in Flask compared to FastAPI Another advantage of FastAPI is its support for automatic documentation and code generation FastAPI automatically generates an OpenAPI schema for your API which can be used to generate interactive documentation using tools like Swagger UI This makes it easy for developers to understand and use your API FastAPI also provides a command line interface CLI that can be used to generate code for your API based on the OpenAPI schema This can save you a lot of time and effort when building your API Flask does not have these features built in and developers must create the documentation and code manually Despite the advantages of FastAPI Flask is still a popular choice for building APIs in Python One of the reasons for this is its simplicity and lightweight design Flask is easy to learn and use making it a good choice for developers who are new to building APIs Flask is also highly customizable allowing you to choose the right tools and libraries for your project This flexibility can be useful if you have specific requirements for your API that are not supported by FastAPI Additionally Flask has a large and active community with many third party extensions and libraries that can be used to add extra features to your API This can make it easier to find solutions to common problems when building your API with Flask ConclusionIn conclusion FastAPI and Flask are both popular choices for building APIs with Python FastAPI is a modern high performance web framework that makes it easy to build efficient and scalable APIs It has built in support for data validation asynchronous programming and automatic documentation and code generation Flask on the other hand is a simple and lightweight framework that is easy to learn and customize It is a good choice for developers who are new to building APIs and need a flexible framework that can be adapted to their specific requirements Ultimately the choice between FastAPI and Flask will depend on your specific needs and preferences In my opinion if you re using a python web server just as a webhook other kind of glue to connect different processes Flask will do the job and is a bit faster to get up and running and for me is easier to debug However FastAPI is arguably a straight upgrade of Flask and is still a fairly new framework that will probably continue to improve at a fast rate Thank you for reading If you enjoyed follow for more and check BLST Out Star our Github repo and join the discussion in our Discord channel Test your API for free now at BLST |
2022-12-12 12:42:25 |
海外TECH |
DEV Community |
Resume Tips That Will Get You Hired-#1 |
https://dev.to/shubhicodes/resume-tips-that-will-get-you-hired-1bac
|
Resume Tips That Will Get You Hired ResumeA one page resume with no smaller than to font size is highly encouraged which means you cannot just spill information Lets start by filling in these important sections of your resume HeaderAdd your name contact number email and address A photograph is NOT needed but you may add Remember content is more important than aesthetics for a software engineering role Add links to your portfolios Website LinkedIn Github etc Qualification List your university name degree and timeline Add your GPA Include your coursework only when it s very specific to the job niche In most cases you should save that space maybe use it to include another project Technical SkillsKeep this section focused on the job niche and rest can be generic List your programming skills Try to include some of the widely used and popular languages like Java C Python Javascript C C only if you know it List industry standard libraries frameworks that you are familiar with OpenCV React Tensorflow RxJava etc List popular development SDL tools that you have used IntelliJ Matlab Tableau XCode Jira SVN s etc Optionally list the cloud services PaaS IaaS AWS OpenShift Azure Heroku etc Work ExperienceStarting with the most recent experience list all your internships and full time jobs typically not more than Include your job title role and timeline Describe your key tasks by creating bullet points for each company instead of adding a very long paragraph ProjectsList all projects that are most relevant to the job description Add project name and a brief summary Add “Hackathons section to highlight my top hackathon projects and wins companies often dig your passion to build projects outside your academics But you can also add them under the “Projects section A section for “Objective“is NOT needed it will just waste valuable space Instead attach a cover letter to your application Best practicesKnow Your NicheHighlight Project s That Stand Out From CompetitionKeep It CrispAdd Measurable Data To Your Projects SummaryAdd KeywordsAdd Links To Important PortfoliosFormatting amp GrammarProofread Your ResumeIterate On Your ResumeMake Multiple Copies If NeededRefer To Successful Samples Quick highlight of DOs and DONTs one page resume that pops outhighlight personal projects outside academicsuse bullet pointsadd keywordsadd links to portfolios especially LinkedIn amp Githubproofread long paragraphsspelling and formatting mistakesspamming keywordshighlighting too many words or sentences Conclusion Software engineers are in demand thanks to the digitalization of all sectors and continued technological revolution But just because you hold a Computer Science or related degree and know how to design a software system or write a recommendation engine the job won t just walk up to you You will need a killer software engineer resume to stand out amongst your competitors Hopefully you will have one now In case you have any further queries pertaining to the Resume building tips above please drop them in the comments section below and I ll try to respond ASAP Thank you for reading To learn more check out my other blogs If you liked this article consider following me on Dev to for my latest publications You can reachout to me on Twitter Linkedin and Github Keep learning Keep coding |
2022-12-12 12:26:37 |
海外TECH |
DEV Community |
Best API to generate profile avatars |
https://dev.to/mavensingh/best-api-to-generate-profile-avatars-55ne
|
Best API to generate profile avatarsProfile avatars nowadays very popular in websites which helps its users to generate their profile instead of using a own picture as profile and its obvious websites should provide this feature as default so if anyone like me doesn t have a good picture of my face then i can use an avatar In this article we are going to generate our own avatars using rapidAPI s funky pixel avatar API which is free and paid both Now question comes why we are only using this because this api helps to generate the avatar based on gender means you can generate avatar for male and female both by passing gender as query and it also supports multiple image formats like png jpeg jpg and gif which is good for it s user We can directly test the api on rapidAPI because rapidAPI provides the users to test the api in realtime directly so let s start generate our avatars Go to API Hub Free Public amp Open Rest APIs RapidAPI Type funky avatar Type funky avatar in the search box and click enter Click on funky pixel avatars…Now we can see the funky avatar api card is visible on search page of rapidAPI let s click on it Click on Test EndpointNow we re on the page of the funky pixel avatars api let s test it with the default inputs it have click on the Test Endpoint button to test the API Click on tabRequset is sent it s a successful request now go to the Results tab to see the response and you can see it have returned a url and a message that the generate image will be deleted after minutes so let s copy our URL Open image URL into new tabNow as we have copied our avatar url let s open it into new tab Now let s change the image extension uname and gender to generate another avatarUpdate image format from jpeg to png Update the gender from male to femaleUpdate the uname as well Now Click on Test Endpoint to test the endpoint Now copy the generate URL of you avatar and open it into new table Now we have our response again let s copy the URL and open it in new tab Open URL in new tabSo as you can see the avatars looks good for both male and female and also provide us to choose which format of image we need so it seems a good api to use for our projects API Funky Pixel AvatarsMy Personal Blogging Website Programming Geeks ClubMy Facebook Page Programming Geeks ClubMy Telegram Channel Programming Geeks ClubMy Twitter Account Kuldeep SinghMy Youtube Channel Programming Geeks Club |
2022-12-12 12:18:43 |
Apple |
AppleInsider - Frontpage News |
SNL riffs on 'A Christmas Carol' & Apple Pay in bloody holiday skit |
https://appleinsider.com/articles/22/12/12/snl-riffs-on-a-christmas-carol-apple-pay-in-bloody-holiday-skit?utm_medium=rss
|
SNL riffs on x A Christmas Carol x amp Apple Pay in bloody holiday skitNBC s Saturday Night Live used Apple Pay as the punchline to a sketch that turned the concluding scene from A Christmas Carol into a bloodbath SNL s A Christmas Carol featuring Apple PaySaturday s broadcast of SNL included a lengthy sketch featuring joint hosts show alumni Steve Martin and Martin Short performing part of the Charles Dickens classic A Christmas Carol As you would expect from an SNL skit the affair turns into a farce very quickly Read more |
2022-12-12 12:44:48 |
Apple |
AppleInsider - Frontpage News |
Apple looking at giant iPhone expansion in India at both retail & manufacturing |
https://appleinsider.com/articles/22/12/12/apple-looking-at-giant-iphone-expansion-in-india-at-both-retail-manufacturing?utm_medium=rss
|
Apple looking at giant iPhone expansion in India at both retail amp manufacturingApple is planning expansion in India in both its retail and production arms reports on Monday claim including new franchise stores and a tripling of iPhone manufacturing in the next two years Mumbai IndiaApple has for some time considered and planned the move of some of its supply chain out of China and into other countries While it will be a slow move overall the changes could have a big impact on India s manufacturing capability Read more |
2022-12-12 12:07:04 |
海外TECH |
Engadget |
Anker charging accessories are up to 48 percent off in Amazon sale |
https://www.engadget.com/anker-charging-accessories-48-percent-off-amazon-sale-125031367.html?src=rss
|
Anker charging accessories are up to percent off in Amazon saleAnker makes some of the most desirable charging products out there but the extra quality comes at a price If you ve been waiting for a sale you can now grab a number of Anker chargers and other smartphone accessors at Amazon with discounts of up to percent Some of the key items include the Anker Charger GaNPrime W or percent off the Anker Magnetic Battery or percent off and the Power Bank priced at instead of the usual nbsp Shop Anker charging accessories at AmazonThe Anker Magnetic Battery MagGo snaps right on to your iPhone boosting range by a mAh It s relatively thin at mm attaches using a super strong magnet and charges either wirelessly or via the USB C port and included cable It also doubles as a kickstand letting you prop up your phone for video chats movie watching and more It s normally priced at but you can now grab one for for a savings of percent Meanwhile Anker s GaNPrime charger offers an impressive W of charging power in a small size thanks to the GaN technology That lets you charge a single device quickly or up to three at a time via the two USB C and one USB A ports Normally priced at you can pick it up now for off And if you need portable power for up to four devices the Power Bank delivers mAh with USB C high speed charging for MacBooks iPhones or Android smartphones tablets smartwatches and more You can connect devices via the two USB C and two USB A ports to ensure they stay charged on the go It s on sale for right now saving your percent off the full price nbsp Finally Anker s USB C to Lightning cable is available in a two pack for or percent off the regular price That gets you two six foot cables compatible with USB C chargers up to watts They also allow you to connect your iPhone to a Mac for seamless sync and charging Plenty of other Anker devices or on sale too including a charging dock for Meta s Quest magnetic desktop charging stations and more Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice |
2022-12-12 12:50:31 |
海外TECH |
Engadget |
The Morning After: Juul will pay $1.2 billion to settle thousands of lawsuits |
https://www.engadget.com/the-morning-after-juul-will-pay-12-billion-to-settle-multiple-lawsuits-122044121.html?src=rss
|
The Morning After Juul will pay billion to settle thousands of lawsuitsJuul has agreed to pay billion to settle thousands of lawsuits including personal injury cases If you think that s a huge amount for a relatively young company it s got substantial financial backing Marlboro owner Altria invested billion in Juul back in In Juul was the leader in the US e cigarette market but after a string of controversies it slipped to second place behind Vuse The US Food and Drug Administration ordered e cigarette brands to stop selling flavored pods if they can t prove they can keep them out of minors hands and it attempted to ban the sale of Juul items Still California sued Juul in accusing the company of targeting minors in the state failing to verify the age of its customers and failing to warn users of their exposure to chemicals linked to cancer and birth defects 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 missedThe Biden administration may be working on an executive order to streamline space rules Hitting the Books America might not exist if not for a pre Revolution smallpox outbreakRecommended Reading The Diablo IV crunch The best laptops and tablets to give as holiday gifts in Twitter Blue will relaunch on Monday with an per month price tag on iOSYou don t need a PS VR invite to pre order direct from SonyUS prosecutors are reportedly investigating FTX founder Sam Bankman Fried for fraudDJI s Mini drone is cheaper but more limited than the Pro model it s based onNASA s Artemis Moon mission has returned to EarthThe Orion crew vehicle landed in the Pacific Ocean NASA s Artemis mission has returned to Earth following a successful trip around the Moon On Saturday at approximately PM ET the uncrewed Orion vessel landed off the coast of Baja California Its almost day journey included a new spaceflight record and some stunning photos of Earth s natural satellite Continue reading A new self driving tractor prototype has an electric motorAnother tractor can run on manure gases CNHCNH Industrial has unveiled what it says is the quot first quot electric light tractor prototype with self driving features The machine promises zero emissions quieter operation than diesel models and according to CNH lower running costs Sensors and cameras on the roof help the vehicle complete tasks dodge obstacles and work in harmony with other equipment You can even activate it from your phone Continue reading Engadget Podcast AI chat and avatars dominated our socials this weekPlus This year in drones and action cams This week many of us saw our social media feeds taken over by colorful surreal pictures of people we follow except they don t quite look like themselves Lensa AI generated the imagesI the latest in what feels like a now annual trend to use a new app to create mockups of your face in various scenarios This week s Engadget Podcast discusses the fascination with them and Engadget Editor at Large James Trew joins the team for a check in on the state of action cameras Continue reading Chevy s first hybrid Corvette leaks ahead of summer arrivalThe E Ray could pair a V with an electric motor to offer all wheel drive ChevyFans on CorvetteBlogger and Corvette Forum discovered GM briefly made the Corvette E Ray hybrid available through Chevy s online visualizer tool The design combines the wide body of the C Z with the regular model s exhaust pipes There are some new colors Cacti green anyone and model specific wheels The biggest changes as you might guess are in the engine Images of the engine bay suggest the E Ray will use the regular C Corvette s LT V engine The absence of a charging port suggests this is a conventional hybrid rather than a plug in Continue reading |
2022-12-12 12:20:44 |
海外科学 |
NYT > Science |
Winter Storm System Bringing Heavy Snow, Rain and Wind Across the U.S. |
https://www.nytimes.com/article/winter-storm-snow-west-northern-plains.html
|
Winter Storm System Bringing Heavy Snow Rain and Wind Across the U S The system has clobbered the Sierra Nevada with snowfall of up to three inches an hour and is expected to affect travel from the Central Plains to the Upper Midwest forecasters said |
2022-12-12 12:08:34 |
金融 |
RSS FILE - 日本証券業協会 |
新規公開に際して行う株券の個人顧客への配分状況 |
https://www.jsda.or.jp/shiryoshitsu/toukei/shinkikoukai/index.html
|
新規公開 |
2022-12-12 13:00:00 |
ニュース |
BBC News - Home |
Solihull: Three children die in icy lake tragedy |
https://www.bbc.co.uk/news/uk-england-63944005?at_medium=RSS&at_campaign=KARANGA
|
emergency |
2022-12-12 12:51:55 |
ニュース |
BBC News - Home |
UK weather: Heavy snow falls over UK after cold weekend |
https://www.bbc.co.uk/news/uk-63939132?at_medium=RSS&at_campaign=KARANGA
|
blankets |
2022-12-12 12:20:34 |
ニュース |
BBC News - Home |
Harry and Meghan on Netflix: Duke speaks of 'lies' in new Netflix trailer |
https://www.bbc.co.uk/news/uk-63945810?at_medium=RSS&at_campaign=KARANGA
|
duties |
2022-12-12 12:43:03 |
ニュース |
BBC News - Home |
Emergency Cobra meeting to be held as strikes loom |
https://www.bbc.co.uk/news/uk-63939396?at_medium=RSS&at_campaign=KARANGA
|
border |
2022-12-12 12:50:43 |
ニュース |
BBC News - Home |
Ukraine war: Odesa port reopens after energy network hit |
https://www.bbc.co.uk/news/world-europe-63943162?at_medium=RSS&at_campaign=KARANGA
|
russian |
2022-12-12 12:16:16 |
ニュース |
BBC News - Home |
Queensland shooting: Two police officers, and member of public, killed at remote property |
https://www.bbc.co.uk/news/world-australia-63943292?at_medium=RSS&at_campaign=KARANGA
|
brisbane |
2022-12-12 12:26:07 |
ニュース |
BBC News - Home |
Majidreza Rahnavard: Iran carries out second execution over protests |
https://www.bbc.co.uk/news/world-middle-east-63939428?at_medium=RSS&at_campaign=KARANGA
|
rahnavard |
2022-12-12 12:40:46 |
ニュース |
BBC News - Home |
In pictures: Snow blankets parts of the UK |
https://www.bbc.co.uk/news/in-pictures-63942122?at_medium=RSS&at_campaign=KARANGA
|
blankets |
2022-12-12 12:37:42 |
コメント
コメントを投稿