投稿時間:2022-05-12 23:40:23 RSSフィード2022-05-12 23:00 分まとめ(54件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita numbaインストール時のLLVMエラーの原因と解決法 https://qiita.com/muramasa2/items/b96476a0aa863388b842 pipinstallnumbacollectin 2022-05-12 22:27:21
python Pythonタグが付けられた新着投稿 - Qiita 最大値プーリングをPythonで実装 https://qiita.com/YH_BK/items/eccbefb956bc2416d7dc importnumpyasnp 2022-05-12 22:21:24
Linux Ubuntuタグが付けられた新着投稿 - Qiita numbaインストール時のLLVMエラーの原因と解決法 https://qiita.com/muramasa2/items/b96476a0aa863388b842 pipinstallnumbacollectin 2022-05-12 22:27:21
AWS AWSタグが付けられた新着投稿 - Qiita 【AWS】AWS認証情報の設定方法/保管場所/優先順位を理解する。 https://qiita.com/crml1206/items/d2726eef78cf57a9cbcf awsversionawscli 2022-05-12 22:49:27
Docker dockerタグが付けられた新着投稿 - Qiita dockerのVolumeにマウントするNFSサーバーをdockerで構築する https://qiita.com/moritalous/items/4878609c64145dc7dd8c createaservicewhi 2022-05-12 22:01:57
Azure Azureタグが付けられた新着投稿 - Qiita 【Terraform de Azure】 Azure CosmosDB をプロビジョニングされたスループット構成で作成してみました https://qiita.com/turupon/items/2cde7e28710b016acfed azurecli 2022-05-12 22:27:00
Azure Azureタグが付けられた新着投稿 - Qiita Cognitive Search カスタム Web API スキルを実装する時は入力データの単位に気を付ける https://qiita.com/nassy20/items/062ce1213af830c68f5a cognitivesearch 2022-05-12 22:18:37
Git Gitタグが付けられた新着投稿 - Qiita Gitの使い方 https://qiita.com/div_naoki/items/465de8a7be7bea0278ad 簡単 2022-05-12 22:45:38
海外TECH Ars Technica Feast your eyes on the first image of the black hole at the center of our Milky Way https://arstechnica.com/?p=1852704 different 2022-05-12 13:28:59
海外TECH MakeUseOf How to Choose a VPN Provider: 7 Tips to Keep in Mind https://www.makeuseof.com/tag/how-to-choose-a-vpn-provider/ choose 2022-05-12 13:45:13
海外TECH MakeUseOf Why Has Apple Discontinued the iPod? https://www.makeuseof.com/why-apple-discontinued-the-ipod/ product 2022-05-12 13:30:30
海外TECH MakeUseOf 7 Tips to Help You Search for the Best Items on Etsy https://www.makeuseof.com/tips-search-best-items-etsy/ Tips to Help You Search for the Best Items on EtsySearching for quality products on Etsy can be hard especially with so many options on there So here are seven tips to help you find the best items 2022-05-12 13:30:14
海外TECH MakeUseOf The 6 Biggest Reveals From the Google I/O Keynote 2022 https://www.makeuseof.com/google-io-2022-biggest-reveals/ google 2022-05-12 13:15:13
海外TECH MakeUseOf What Is Terra Luna and Why Has Its Priced Crashed? https://www.makeuseof.com/why-has-terras-luna-price-crashed/ crashed 2022-05-12 13:10:13
海外TECH MakeUseOf Is the Yeedi Vac Pro 2 the Best Vacuum/Mop Hybrid in Its Price Range? https://www.makeuseof.com/yeedi-vac-pro-2-vacuum-review/ Is the Yeedi Vac Pro the Best Vacuum Mop Hybrid in Its Price Range With its new oscillating mop head the Yeedi Vac Pro could be the answer to poor mopping functions that we ve all been waiting for 2022-05-12 13:05:13
海外TECH DEV Community Run Next.js functions in the background with events and cron schedules https://dev.to/djfarrelly/run-nextjs-functions-in-the-background-with-events-and-cron-schedules-g7g Run Next js functions in the background with events and cron schedulesThere comes a point in time when your application gets too complex to be completely comprised of synchronous API endpoints APIs are fantastic for CRUD actions that your users are taking that need an immediate response but there are use cases when you want to do some work in your application in the background Non critical path tasks When your API needs to do some work that isn t truly crucial you should move it off of the critical path of the request to ensure a timely response time for your users Your users shouldn t have to wait longer for a response because your app needs to send an email update a CRM or perform some data aggregation to store in your database Scheduled tasks You need to run something periodically like send a weekly digest email to your users or do a periodic data cleanup To accomplish these types of things you usually have options that require more infrastructure to be setup like message queues pub sub or deploying your code to another platform that does scheduling There are two considerations for this Time amp Complexity It requires building out some of your own infrastructure which is time consuming and if you re not familiar with these architectures you learn the issues and pitfalls and the hard way Logs amp Observability You don t get logs metrics or traces about whats happening in the background without even more configuration of other services and instrumentation of your code The Inngest platform can do this for you with full observability and audit trails without having to configure new infrastructure Let s see how we can get this done with your existing Next js project running on Vercel or Netlify in just a couple of minutes Schedule functionsIf you wanted to send a weekly email digest to your users you ll want to run this once a week at a particular time Maybe you ve written the code to query your database for users query their weekly product usage and format a well designed email to send them It s a fantastic feature and user retention tool Here s some hypothetical code in a Next js api route pages api sendWeeklyDigests js export default async function handler req res const results await sendWeeklyDigestEmailsToAllUsers res status json message Weekly digests sent to results sent users successfully To schedule this on Inngest is just a couple quick steps Install the inngest cli curl sfL sh amp amp sudo mv inngest usr local bin inngestNavigate to your project s repo and initialize a new function Here you get to choose your schedule you can change this later Crontab Guru is useful for generating a schedule Select “Call a URL this will be the URL of your endpoint that you d like to request Here we ll use once a week on Monday at pm Login and deploy your function inngest login inngest deploy Creating a scheduled function in the Inngest web appYou can also quickly create a scheduled function in the Inngest web app From the Functions tab click the New Function button and select Call an existing HTTP endpoint At the right you ll be able to click the function Trigger drop down and select Run on a schedule You then can choose to Run to test your function or Deploy to deploy it make it live Background jobs and event driven functionsMoving code out of the critical path of a request can give you several benefits in your API backend If you haven t done this before some advantages to moving some code to a background job or function Decouples key logic which you can re useEnsures the initial API request stays fast as possibleProvides an audit trail of what jobs got triggered by who and whenWhen you implement this pattern your initial endpoint shoots a message off to Inngest and immediately responds allowing you to return a response to the user Inngest logs the message aka event then dispatches a request to the endpoint of your choosing and waits for the response logging the response code and body The first step is choosing your event message to send to your background function This is comprised of an event name and any relevant data about that event and the associated user For this example our event name will be user signup and we ll pass the user s email and their role on their team captured in your signup survey Our event will look like this name user signup data signupReason some string user email the user email example com Let s define the function that will be called Install the inngest cli curl sfL sh amp amp sudo mv inngest usr local bin inngestNavigate to your project s repo and initialize a new function Here you get to choose your an event as the trigger and enter the new user signup Select “Call a URL this will be the URL of your endpoint that you d like to send the request e g inngest initLet s get you set up with a new serverless function Answer these questions to get started Function name Send Welcome Email Function trigger Event based Function type Call a URL Event trigger user signupDone Your project has been created in send welcome emailFor more information read our documentation at Using the inngest JavaScript library we can send this event in our API s signup function You can create as many unique source keys as you want pages api signup js import Inngest from inngest export default async function handler req res const email password signupReason req body const result await createNewUser email password const inngest new Inngest process env INNGEST SOURCE KEY await inngest send name user signup data signupReason user email res status json success true Our background job function will receive this event as the req body so for this example our function could look like this pages api sendWelcomeEmail js export default async function handler req res const event req body const result await sendEmail template welcome email to event user email data The template will use this to show useful content to our new user signupReason event user data signupReason const messasge result ok Successfully sent result error res status result ok json message Now we have everything in place and you can deploy your function to Inngest inngest login inngest deployWhen you next deploy your Next js app you ll now start offloading work to your background job Remember to add the Inngest Source Key to your environment variables first Creating a background job or event driven function in the Inngest web appVery similar to creating a scheduled function above you can create a function in our web app that is triggered by an event Clicking on the default event trigger will allow you to select a new event You can create a new event of your own and name it whatever you d like You can also easily edit the test event paylod and click Run to send the request to your server When you re happy with what you ve got click Deploy Funciton to make it live Viewing event and function historyWhen you deploy either a scheduled function or a background job you ll get full history of the event messages that your app has sent and the responses that your background function has sent Now go ship something Congrats You now know how you can easily move key logic in your app to be asynchronous and out of the critical path of a request Background jobs are important for any scaling and performant application that you have so we think this will really help you grow your amazing products PS If you need to run background jobs for event longer up to minutes you can deploy your functions directly to Inngest Here s a quick start guide to create and deploy a TypeScript function 2022-05-12 13:48:48
海外TECH DEV Community A Peek Into WebD https://dev.to/srijansriv/a-peek-into-webd-44h8 A Peek Into WebDThe fact that you re reading this blog right now is sufficient to support the fact that Web and it s Development has flooded the coding community We can t imagine learning and sharing without our webpages Naturally learning how to create such webpages in the early phase of coding is a bonus Fortunately there are various sources and explanations of how to begin with this idea using a certain language called HTML To make these pages presentable we use another handy tool CSS This blog will caress over the approach that I believe is certainly satisfactory to help you understand HTML and CSS A Handy SetupSince the output of whatever code you write would be in a webpage it feels handy to be able to launch the page quickly and see the changes made live Fortunately if you re using VSCode Editor and I have no idea why you re not it has such extensions that although mentioned in every good tutorial is still worth adding in this blog It s a basic Live Server launcher this is the one that I use and is probably the most popular This provides a simple Go Live button in the bottom right corner to well go live Again a minute detail but a life saver HTMLWeb browsers be it Chrome or Firefox have to agree upon a certain document type that they can show making it universal This happens to be a certain HyperText Markup Language or HTML for short that is basically a method of creating elements and objects in a certain way that browsers can understand These are basically some lt gt and lt gt tags that can be very powerful depending on what the tag does Every file that has some html code so like index html file will begin with a lt DOCTYPE html gt tag Following is an example With the preview at the webpage being Sources to learn HTMLThe Documentation for HTML is extensive WSchools is without a doubt the most perfect place to understand and refer to for HTML among several other things Mozilla has some handy guides under MDN that you can always use to freshen up your knowledge Some video tutorials might include the following I would also try to link some here Traversy Media has a nice video in English that s basically a walkthrough CodeWithHarry has both single and playlist wise videos in Hindi with depth to time tradeoff Quite frankly I think his playlist is more than enough to learn and create some projects CSSOf course our next priority would be to make this page presentable by styling the various elements present This is where Cascade Sheet Styling or CSS comes in There are certain things that you would already expect CSS to perform such as changing font or its color resizing images and so on But a tricky part of CSS for beginners is to grasp how to position the elements on the page the way you want and also how to make the site Responsive i e the idea that our webpage should look presentable on screens of all sizes be it a desktop or a phone A recommended way to tackle this problem is to plan early with position methods such as float and grid These are vastly discussed in CSS Tricks and the usual youtube platforms Not detailing everyone of these I would list the places that you may go through WSchools is always the place to go when you want to check any query that pops into your mind Just don t get carried away with the tons of ideas and definitions that it has to offer CwH is still really popular in this field Traversey has some quick to learn tricks that you can remember Thapa Technical also comes to mind These may look overwhelming at first but the main idea is to understand how you learn as you create One can not expect to remember everything at the end of a course but such a workflow is appreciated in the long run PlatformsThere are certain sites that let you showcase your website on the go together with the code present These are really handy if you quickly want to share your code and or the expected UI so usually what we call the Front End Some of the popular ones are CodeSandbox io is perfect for sharing relatively small projects quickly CodePen io will do just fine Closing ThoughtsThe above mentioned flow should be enough to get one started in the WebD field We have of course not discussed about the ocean of development supported by JavaScript and the modules created for it This is so as to prevent overwhelming of a developer Still interested devs can be channeled towards this blog that I actually started my whole journey of WebD from It includes clever framework that are based on JavaScript right after a basic intro of JS itself 2022-05-12 13:43:00
海外TECH DEV Community What have you learned from integrating CRMs into your product? https://dev.to/stripe/what-have-you-learned-from-integrating-crms-into-your-product-2imo What have you learned from integrating CRMs into your product CRM stands for “Customer Relationship Management and CRM software helps you do just that it provides tooling to track your interactions and commitments to prospects customers and visitors to your app service or site Often this comes in the form of integrations that automate part of the process keeping track of contact information logging important events and milestones in the customer journey and reminding you to follow up on leads before they go cold I ve come across a bunch of discussions lately on Indiehackers which have had me thinking about CRM Customer Relationship Management software of course there s many flavors of CRM with different value propositions and each has their own benefit to founders and product support teams…but I m curious about your experience as a developer Which CRMs have you integrated with Do any features stand out as particularly important or great to work with Let s talk about the good the bad and the ugly of CRM integration in your work 2022-05-12 13:42:18
海外TECH DEV Community The Engineer's Guide to Creating a Technical Debt Proposal🗺🧭 https://dev.to/alexomeyer/the-engineers-guide-to-creating-a-technical-debt-proposal-58o5 The Engineer x s Guide to Creating a Technical Debt ProposalTechnical debt is a slow killer of an engineering team s productivity At first technical debt might not seem to be a blocker but it can hinder your team s efficiency as time progresses In many cases teams reach a tipping point where technical debt becomes a blocker for making any progress in terms of implementing new features This article helps you craft a technical debt proposal to justify the time spent solving and more importantly prevent technical debt Let s look at what elements you should include in a technical debt proposal to help your management make a decision First of all let s explore why you need to write a technical debt proposal Why do you need to write a technical debt proposal ‍A technical debt proposal allows you to justify the time and resources spent resolving technical debt and creating a plan to further prevent tech debt Your management might be unaware of the technical issues that are slowing down your Engineering team Hence you need to gather the evidence propose a plan and metrics to measure success It s possible you made an incorrect estimation and a solution turns out not to work Therefore you want to be able to track the effectiveness of your technical debt proposal to be able to intervene when it doesn t work out as expected The rest of this article will guide you through the different steps you can follow to create a technical debt proposal The below plan focuses on identifying tooling and how you can build your plan around this tooling Step Identify issues with the biggest impact on tech debtTo get started identify tech debt issues that have the biggest impact on your engineering team s productivity Engineering teams are often aware of these issues as they linger around in issue tracking or project management tooling The best way to identify these issues is to start tracking technical debt in your editor Tracking technical debt in the editor allows engineers to get full visibility on technical debt see the context for each codebase issue and reduce context switching The best way to identify technical debt is to use free Stepsize extensions for VSCode or JetBrains that integrate with Jira Linear Asana and other project management tools It s a quick way to get started and collect all the key technical issues in your codebase Step Identify toolingDon t underestimate the power of proposing proper tooling to manage tech debt Some engineering teams might not be using any tooling while other companies are not using the correct tooling or use outdated tooling These scenarios are plausible and need to be considered when identifying tooling to be included in your tech debt proposal For many teams implementing correct tooling can resolve and prevent a lot of technical debt However engineering teams need to justify the costs of using particular tooling You need to ask yourself the following questions when selecting tooling Which tool offers the best capabilities to address your team s issues What are the implications of implementing a particular tool Some tools require a particular setup your engineering team might not be ready for or a tool requires self hosting including additional costs What s the tooling cost and are there cheaper options available that can address your tech debt issues Once you think you ve found the proper tooling make sure to include a summary of the above questions in your tech debt proposal This summary will help a CTO team lead or management better understand why you ve selected a specific tool There are plenty of tools to help you deal with technical debt Here are some examples of these tools A continuous integration CI tool can help a team guarantee the quality of their code Expanding on this a CI tool can enforce coding standards and perform complex types of testing such as integration or end to end testing to provide developer teams with trust in their code ​​ Static analyser tools such as SonarQube are used to analyse source code in search of technical debt These tools use quantitative data to help developers identify hotspots in the codebase likely to have technical debt One of their limitations is that they won t help you identify medium to large pieces of debt that span multiple parts of your codebase and won t provide you with the context necessary for you to truly understand each piece of debt and how to prioritise and ultimately tackle it Frontend to issue tracker tools like Stepsize helps Engineering teams track technical debt in the editor and link issues to code It would be the best choice for you if you want to Track and fix technical debt continuously Improve your coding standardsDecrease context switching by creating issues in the editor Step Set metrics and define your baselineNext you need to define metrics to justify the costs Metrics allow you to measure the effectiveness of your tech debt proposal and especially the effectiveness of the tooling you ve selected For instance the tooling you ve selected does not resolve your issues based on the metrics you re measuring It allows you to intervene and readjust your tech debt proposal or look for different tooling to address your issues In other words having metrics can potentially save you a lot of wasted money on incorrect tooling On top of that adding incorrect tooling can further increase tech debt because your engineers have to learn a new tool they are not familiar with Here s a quick list of metrics you can define for the continuous integration example Test coverage percentageNumber of issues related to coding standardsNumber of bugs discovered in productionFeature throughput of a software engineering teamMean time to repair a bugTip Don t forget to set your baseline Without a baseline it won t be possible to determine the effectiveness of your tech debt proposal Therefore only measure metrics for which you ve data available Step Look at other ways to solve technical debtWhile tooling can quickly resolve technical debt look at other ways to resolve technical debt Often you can combine a proposal to implement new tooling with other initiatives like a refactoring week or implementing a new type of meeting such as a retrospective meeting A refactoring week gives your team the needed breathing room to reassess the codebase and identify key issues that they want to address Besides that it can serve as a reset implementing new tooling to reduce the team s technical debt further Other potential initiatives are educational sessions where team members share knowledge about the codebase or educate other team members about new technology It all depends on the types of technical debt your team experiences Conclusion Stay alert Once your team has resolved technical debt don t let technical debt creep up on you again Therefore continue measuring the metrics you ve set out Besides that you can create a plan to measure additional metrics to better understand your team s performance and how technical debt builds up In short technical debt is an annoying monster that can quickly return Stay alert 2022-05-12 13:34:07
海外TECH DEV Community Have a look at my #appwritehack Web App InfoAbout.me and see What I built at #appwritehack https://dev.to/mdsahiloss/have-a-look-at-my-appwritehack-web-app-infoaboutme-and-see-what-i-built-at-appwritehack-379g Have a look at my appwritehack Web App InfoAbout me and see What I built at appwritehackThis Post is the extension of my previous InfoAbout me project submission post Go and check it out wrote info there about the InfoAbout me and now in this Post I m gonna post videos on InfoAbout me couldn t show these videos in my previous appwritehack post due to lack of time and summited my submission Post at the ending time of appwritehack This video shows the functionalities that InfoAbout me app has at current built Screencast from PM IST webm Google Drive drive google com This video shows how the Appwrite Backend hav been set up for InfoAbout me Applcation Screencast from PM IST webm Google Drive drive google com For Now the current built of InfoAbout me App is my submission for appwritehack but in future this App will be enhanced by me and I ll integrate other features of Appwrite like email verification etc to make this app eligible for deployment Thankyou for seeing this Post 2022-05-12 13:33:29
海外TECH DEV Community 10 Tips For Developers To Stay Healthy And Survive https://dev.to/getscreen/10-tips-for-developers-to-stay-healthy-and-survive-29l1 Tips For Developers To Stay Healthy And SurviveProgrammer is a profitable modern and exciting profession but also quite dangerous You don t have to risk your life as a fireman or policeman but several years of uninterrupted coding significantly undermine your health And sometimes even the psyche Cut out sugar and caffeineNot many people know it but sugar is the most powerful drug in the world Near percent of the world s population have a sugar addiction According to medics uncontrolled consumption of sugar has caused a global public health crisis Sugar makes you fat sick and sugar makes you want more sugar The same goes for caffeine And if you drink coffee with sugar you are a double blow to your health Want to sleep while debugging code at pm Give up sugar Eat regular and varied mealsEvery other developer eats at their desk and doesn t keep track of their menu Fast food from McDonald s or KFC is a favorite food during coding because it allows you not to distract from work and quickly satiates you But it s also much more harmful ーoverweight gastritis and skin problems Focus on low glycemic foods like vegetables fresh meat nuts eggs and avoid white bread pasta and sugary snacks Try to cook your own food at least once a week or go to places that show you what they put in your food and avoid fast food Try new foods you don t have to eat the same thing every day Also don t rush when you eat ーhunger is satisfied minutes after eating So don t pounce on food like a wolf even if you are very hungry Eat slowly and enjoy the process Drink more liquidsYes yes you ve heard all this from your mother and you re sick of this advice But they do work In addition to being awake if you drink water every minutes you ll go to the bathroom more often And that too is good for a sedentary lifestyle Oh yeah I totally forgot ーliquid doesn t mean soda Get enough sleepAnother important tip from your mom Try to sleep at least hours a night But this does not mean that you can go to bed at a m and wake up at noon Sleep at night when it s dark outside the window Put your phone aside one hour before bedtime Your body like your phone needs constant recharging A full night s sleep is it No laptop on your bellyWorking while lying down with a laptop on your stomach and drinking a cocktail is all a fairy tale for office workers who dream of becoming freelancers Anyone who has ever tried to work that way knows that it s impossible But we do it anyway when we work from home Because of this it reduces efficiency and ruins our eyesight and our health in general You have to sleep on the couch or rest on your lunch break Well you can do something else But there is no place for a laptop Sit uprightI know you ve missed your mom s advice so here s one for you watch your posture Get yourself a comfortable chair that follows the contour of your back and adjust it so that you sit upright The first time it will not be very comfortable but then you ll get used to it and your back will thank you Take breaks and exerciseThere is one great recommendation on how to allocate your time productively and get the most benefit work uninterruptedly every minutes and then rest for minutes If you follow this simple rule you will Have time to do all your scheduled tasksRest and strengthen your body During the minutes try not only to take a smoke break or lie flat but also to do light exercise a few push ups or jumping rope will return your tone and will not let your muscles get tired during the day from sitting Always plan your tasksThere is nothing worse than chaos and uncertainty And this applies to any activity not just development Use planning and management tools in your work If you know what you have to do only today ーmost likely you will cope with all the tasks and be able to fully perform point Of course there are urgent tasks ーdevelopers have nothing without them But they should not be a priority and turn your work into chaos Work fewer hoursIt may seem illogical but working fewer hours per week can improve your productivity Having less time makes you focus on the tasks you have to finish and makes you dedicate your entire attention to those specific tasks instead of wasting time on distractions This leads us to the second point Don t work weekendsEven if you work from home ーnever bring work home Your colleagues should clearly know that you are available only during working hours ーall urgent tasks will be done tomorrow If you are on call you will burn out very quickly Don t take extra part time work even if you really need the money Your body should rest and so should your brain Lack of free time will sooner or later affect not only your work but other aspects of life as well Use your days off to spend time with friends and family take up a new hobby read a book that has been on the shelf for a long time or go on a camping trip You ll be sure to notice that Monday morning you feel refreshed full of energy and ready for new accomplishments 2022-05-12 13:10:51
海外TECH DEV Community Cloudy- a storage service to store your files & folders https://dev.to/gulshanaggarwal/cloudy-a-storage-service-to-store-your-files-folders-26aa Cloudy a storage service to store your files amp folders Overview of My SubmissionCloudy is a storage service that allows users to store their files amp folders faster and securely At Cloudy users can create folders and store their files smoothly Cloudy is superfast at uploading your files a user can upload multiple files at a time amp It will take a very less amount of time compared to other services because of the Appwrite storage service Submission Category Web Wizards Link to CodeRepo Link FeaturesSuperfast file uploading multiple files included Support file extensions jpg png gif txt pdfEasy File PreviewFile DownloadFile Link CopyFile amp folder Delete right click on a file or folder to delete Tech StackNextJSAppwriteFirebaseMaterial UI We are already using Appwrite then FirebaseWe are using Appwrite s Login SignIn amp Storage services but for Database we preferred Firebase The reason for choosing Firebase is the lack amount of support from Appwrite s database service we have nested fields like the array of objects or deeply nested objects in our documents but Appwrite doesn t support these complex data structures I opened a comment in the discussion thread regarding the problem check it out here comment Additional resources and infoScreenshotsDashboard pageClick on folder Icon right side for a new folderFiles FoldersClick on a file for previewFile DetailsDelete file amp folder click right button on a file or folder Contributors gulshanaggarwal and aniruddhasoni If you like the post then don t forget like comments amp let s have some fun over the Twitter 2022-05-12 13:09:18
海外TECH DEV Community Let's stop wasting time https://dev.to/superface/lets-stop-wasting-time-3h4o Let x s stop wasting timeI ve known our founder Zdeněk for almost years now He probably won t remember but there is one particular conversation that strongly affected my decision to join Superface years after it had happened It must have been around Zdeněk had just resigned from his job likely not knowing he would join Apiary a couple of months later changing the course of his career and ultimately leading to Superface being born We were standing in front of a bar in Prague and he was telling me how a whole generation of the most brilliant brains gets wasted People become software engineers and designers to change the world only to spend careers in meaningless corporate jobs doing repetitive work building software nobody needs This strongly resonated with me I don t claim to possess a brilliant brain but I ve always looked for meaning in my work Apparently I was looking in all the wrong places Tried corporate was bored worked in agencies and founded one burnt out took a break to gain energy joined a startup ran out of money found a secure job was bored again I worked on countless projects the world could do without and wanted to break the cycle Then Zdeněk approached me with the idea behind Superface At first I thought nah A developer tool to make nerds nerdier Whatever But then after a couple of days the scene from came back to me In when we had just embarked on the Superface journey the estimated cost of API work was billion USD That s x the cost of getting the mankind to Mars Convert it to developer hours and you ll see we re talking about thousands of people spending their best years making machines talk to each other by integrating APIs and maintaining the connections A big part of the wasted time Zdeněk was talking about I m not a developer myself but I do have my share of experience with APIs Once I was a part of a project where the company responsible for backend development almost went bankrupt and several people resigned solely because they underestimated how tough it would be to integrate with the main vendor s API I have quite a few stories like this unfortunately Integrating the same APIs over and over again and trying to figure out how to integrate new ones usually ate up a serious part of the budget When I worked at agencies the development time we sold to do API integrations was an important part of our income But constantly reinventing the wheel would inevitably start to feel like a waste of time and potential for both our developers and clients Realizing all this I knew I had to join Superface Think about how most of the new products and services are built To create anything today we have to make machines talk to each other A new product is usually a new node of added value that can only function when connected to a couple of other such nodes This is made possible by integrating a bunch of APIs If we consider a typical commercial service of today we typically have to implement some payments communication capabilities user administration etc Many ideas never see the light only because of the cost and expertise necessary to do all the integrations If we manage to make machines do the hard work and ultimately discover and integrate digital capabilities autonomously it s going to be big We re on a difficult journey but what we do is important Superface is not an intellectual exercise to prove that our architectural pattern is superior to others We re in it to free people s hands and minds to do creative work We believe that enabling more connections between digital capabilities and having machines to handle the tedious stuff can speed up the evolution of mankind I wrote this post mainly for my friends who would never guess I d go build something for developers and now see me all fired up about APIs If you happen to be a developer who sometimes has to deal with integrating APIs I suggest checking out our GitHub and docs If you re not technical but are wondering how your organization can benefit from using Superface hit me at v superface ai to talk more 2022-05-12 13:08:54
Apple AppleInsider - Frontpage News MacBook Pro supplies will remain tight until well into July https://appleinsider.com/articles/22/05/12/macbook-pro-supplies-will-remain-tight-until-well-into-july?utm_medium=rss MacBook Pro supplies will remain tight until well into JulyProduction of laptop computers in China including the MacBook Pro is considerably slower now that it was a few months ago ーand not expected to be fully restored before July The continuing coronavirus lockdowns in China that have been affecting MacBook Pro production are now predicted to continue in part because of concomitant issues over logistics and travel According to Digitimes Asia multiple unspecified sources within the supply chain say that insufficient manpower is a factor As well as shutting factories the lockdown conditions have affected travel and it has proved harder than usual to recruit workers in the needed numbers Read more 2022-05-12 13:21:56
Apple AppleInsider - Frontpage News How to rearrange and delete your home screen pages in iOS 15 and iPadOS 15 https://appleinsider.com/articles/22/01/25/how-to-rearrange-and-delete-your-home-screen-pages-in-ios-15-and-ipados-15?utm_medium=rss How to rearrange and delete your home screen pages in iOS and iPadOS If you re lost in a sea of icons and can t find the app you want you may have too many pages of apps on your Home Screen Here s how to switch the pages around and get rid of extra ones in iOS and iPadOS You can reorder your Home Screen pages in iOS and iPadOS very easily The sheer number of apps available can be bewildering with apps available in the App Store for practically any task Our reliance on apps can lead to there being too many on your iPhone or iPad Read more 2022-05-12 13:14:00
海外TECH Engadget Scientists reveal first image of the black hole in the center of our galaxy https://www.engadget.com/milky-way-galaxy-black-hole-image-132605094.html?src=rss Scientists reveal first image of the black hole in the center of our galaxyScientists have imaged a black hole before but now they ve captured a picture of the most important example ーthe one at the heart of the Milky Way galaxy Researchers using the Event Horizon Telescope have revealed the first image of Sagittarius A aka Sgr A the supermassive black hole at the center of our home galaxy The snapshot confirms both the presence of the black hole and provides more details of how these extreme space objects work Like the black hole spotted inside M Sgr A is bending all the light around it ーhence why it looks so similar They re far from identical beyond this however The Milky Way s hole is over times smaller and less massive That made it a challenge to accurately visualize the gas whipping around the hole as it orbits in minutes where M s gas takes days or even weeks And while the object is huge at million times more massive than the Sun M s counterpart is billions of times more massive The team needed the Event Horizon Telescope s network of radio observatories to produce the imagery over the course of multiple nights They developed new imaging tools and used a mix of supercomputing power to analyze and combine data and black hole simulations to help compare their findings The project took five years to complete including million hours of supercomputer time at the US National Science Foundation The image finally helps humanity see the center of the galaxy which sits roughly light years away It should also help study black holes in general ーastronomers can now compare images of two different black holes to refine their models of how these supermassive examples behave The improved understanding of gas behavior could shape understandings of how galaxies form and evolve The light ring data also lined up well with predictions based on the Theory of General Relativity You can expect more data going forward The EHT is continuing to expand and conducted its largest observation effort yet this March Scientists hope for both more detailed images and videos of Sgr A and other black holes in the quot near future quot according to the NSF All told black hole visuals could be relatively commonplace before long Our own black hole Astronomers have just revealed the st image of the supermassive black hole at the center of our Milky Way galaxy using the ehtelescope a planet scale array of radio telescopes that emerged from decades of NSF support ourblackholepic twitter com pdCHVmーNational Science Foundation NSF May 2022-05-12 13:26:16
海外TECH Engadget Xbox update brings noise suppression to Party Chat https://www.engadget.com/xboxs-latest-update-cuts-annoying-background-noises-131348567.html?src=rss Xbox update brings noise suppression to Party ChatChatting while gaming on your Xbox One Series X S can be fun but party chat members poor quality mics that let in every barking dog and blaring TV Not so much Now Microsoft is doing something about it by introducing noise suppression to party chat in the latest Xbox update nbsp quot We ve enabled a new feature which will process your microphone input through a noise suppression step to help produce cleaner audio in your Party Chat session quot it wrote in the Xbox blog quot The setting is enabled by default but can be toggled from the dropdown options menu quot The feature appears to be taking a cue from Discord s Krisp audio filters along with NVIDIA s underrated Broadcast tech Krisp has been a mixed bag ーwhile the AI filters out most noises mechanical keyboards chip crunching except for voices some users have complained about reduced audio quality The Xbox update also includes various fixes for audio controllers HDMI CEC Guide and more It s entering the alpha skip ahead ring today but should roll out more widely in the near future nbsp 2022-05-12 13:13:48
Cisco Cisco Blog Becoming a Resilient Digital University https://blogs.cisco.com/education/becoming-a-resilient-digital-university Becoming a Resilient Digital UniversityLa Trobe University s decision to transform its technology infrastructure is a major step towards creating a university that is more resilient and adaptive to the changing landscape of higher education Watch the video to learn more 2022-05-12 13:38:17
海外科学 NYT > Science The Milky Way’s Black Hole Comes to Light https://www.nytimes.com/2022/05/12/science/black-hole-photo.html event 2022-05-12 13:32:51
金融 金融庁ホームページ 「Regional Banking Summit (Re:ing/SUM)地域金融のチカラでつくる未来」における取組みについて公表しました。 https://www.fsa.go.jp/common/about/kaikaku/openpolicylab/kinyuuhousetu.html albankingsummitreingsum 2022-05-12 15:00:00
金融 金融庁ホームページ 「ESG評価・データ提供機関等に係る専門分科会(第6回)」を開催します。 https://www.fsa.go.jp/news/r3/singi/20220512.html 評価 2022-05-12 15:00:00
ニュース BBC News - Home Ukraine conflict: Russian soldiers seen shooting dead unarmed civilians https://www.bbc.co.uk/news/world-europe-61425025?at_medium=RSS&at_campaign=KARANGA crime 2022-05-12 13:11:57
ニュース BBC News - Home Missing Bristol teenager found and three men arrested https://www.bbc.co.uk/news/uk-england-bristol-61426540?at_medium=RSS&at_campaign=KARANGA bristol 2022-05-12 13:49:51
ニュース BBC News - Home Zara starts charging shoppers for online returns https://www.bbc.co.uk/news/business-61423753?at_medium=RSS&at_campaign=KARANGA clothes 2022-05-12 13:27:45
ニュース BBC News - Home Levi Bellfield: Serial killer applies to marry in prison https://www.bbc.co.uk/news/uk-61418262?at_medium=RSS&at_campaign=KARANGA amelie 2022-05-12 13:12:17
ニュース BBC News - Home Untrained passenger lands Florida plane after pilot falls ill https://www.bbc.co.uk/news/world-us-canada-61416384?at_medium=RSS&at_campaign=KARANGA illthe 2022-05-12 13:16:18
ニュース BBC News - Home Brendon McCullum: England appoint former New Zealand captain as new men's Test coach https://www.bbc.co.uk/sport/cricket/61420661?at_medium=RSS&at_campaign=KARANGA brendon 2022-05-12 13:12:11
ニュース BBC News - Home Ted Hankey: Former darts champion jailed for sexual assault https://www.bbc.co.uk/news/uk-england-stoke-staffordshire-61423653?at_medium=RSS&at_campaign=KARANGA hankey 2022-05-12 13:24:26
サブカルネタ ラーブロ 担担麺 めだかTANTAN@昭島市<汁なし担担麺+チャーシュー+おんたま> http://ra-blog.net/modules/rssc/single_feed.php?fid=199070 担担麺めだかTANTAN昭島市lt汁なし担担麺チャーシューおんたまgt訪問日メニュー汁なし担担麺味担々コメント今日紹介するのは、東中神駅南口から少しの所にある担々麺のお店「めだかTANTAN」。 2022-05-12 14:28:17
GCP Google Cloud Platform Japan 公式ブログ Google のアースウィーク: 研究者、スタートアップ、デベロッパーによる持続可能な構築を支援 https://cloud.google.com/blog/ja/topics/sustainability/earth-week-2022-at-google-cloud/ GoogleCloudで大きな変化を起こそうとしている革新的なスタートアップのストーリーを紹介たとえば、Enexorとパートナー企業は、廃棄されたプラスチックや農業廃棄物からクリーンで持続可能なエネルギーを生産しています。 2022-05-12 13:50:00
北海道 北海道新聞 天の川にブラックホール 撮影初成功、存在裏付け https://www.hokkaido-np.co.jp/article/680091/ 国立天文台 2022-05-12 22:32:00
北海道 北海道新聞 米4月卸売物価、11%上昇 2桁続く、伸び率は縮小 https://www.hokkaido-np.co.jp/article/680090/ 縮小 2022-05-12 22:32:00
北海道 北海道新聞 北京、3日間の自宅待機指示 新型コロナ感染拡大防止 https://www.hokkaido-np.co.jp/article/680033/ 感染拡大 2022-05-12 22:10:43
北海道 北海道新聞 「国会議員は月100万円しか」 衆院議長発言に与野党から批判 「10増10減」否定意図か https://www.hokkaido-np.co.jp/article/680087/ 人当たり 2022-05-12 22:21:22
北海道 北海道新聞 バド日本、男女ともに準決勝進出 ユーバー杯・トマス杯第5日 https://www.hokkaido-np.co.jp/article/680089/ 準決勝進出 2022-05-12 22:20:00
北海道 北海道新聞 NY円、128円半ば https://www.hokkaido-np.co.jp/article/680083/ 外国為替市場 2022-05-12 22:11:00
北海道 北海道新聞 車から振り落とされ女性重傷 殺人未遂の疑いで捜査 当別 https://www.hokkaido-np.co.jp/article/680081/ 当別町当別太 2022-05-12 22:07:00
北海道 北海道新聞 北朝鮮が弾道ミサイル3発発射 韓国・尹大統領就任後で初 https://www.hokkaido-np.co.jp/article/680011/ 参謀本部 2022-05-12 22:05:11
ビジネス 東洋経済オンライン 中国政府が「第3世代原子炉」6基の建設を認可 うち4基は米ウエスチングハウスの技術採用 | 「財新」中国Biz&Tech | 東洋経済オンライン https://toyokeizai.net/articles/-/585515?utm_source=rss&utm_medium=http&utm_campaign=link_back biztech 2022-05-12 22:30:00
仮想通貨 BITPRESS(ビットプレス) SBIホールディングス、リミックスポイントとの資本業務提携に関するお知らせ https://bitpress.jp/count2/3_11_13201 業務提携 2022-05-12 22:53:42
仮想通貨 BITPRESS(ビットプレス) リミックスポイント、SBIホールディングスとの資本業務提携契約の締結及び連結子会社の異動ほか https://bitpress.jp/count2/3_11_13200 業務提携 2022-05-12 22:47:53
仮想通貨 BITPRESS(ビットプレス) [Bloomberg] 26兆円超が1日で消失、仮想通貨市場に大規模売り-テラが引き金 https://bitpress.jp/count2/3_9_13199 bloomberg 2022-05-12 22:44:45
海外TECH reddit T1 vs. DetonatioN FocusMe / MSI 2022 - Group A / Post-Match Discussion https://www.reddit.com/r/leagueoflegends/comments/uo0ktl/t1_vs_detonation_focusme_msi_2022_group_a/ T vs DetonatioN FocusMe MSI Group A Post Match DiscussionMSI Official page Leaguepedia Liquipedia Live Discussion Eventvods com New to LoL T DetonatioN FocusMe T Leaguepedia Liquipedia Website Twitter Facebook YouTube DFM Leaguepedia Liquipedia Website Twitter Facebook YouTube MATCH T vs DFM Winner T in m Game Breakdown Bans Bans G K T D B T urgot nautilus renata glasc xin zhao poppy k H I H C B DFM caitlyn twisted fate lucian yuumi aphelios k M T vs DFM Zeus jayce TOP sett Evi Oner wukong JNG viego Steal Faker leblanc MID ahri Yaharong Gumayusi jhin BOT ezreal Yutapon Keria pyke SUP karma Harp Patch This thread was created by the Post Match Team submitted by u adzr to r leagueoflegends link comments 2022-05-12 13:03:14
GCP Cloud Blog JA Google のアースウィーク: 研究者、スタートアップ、デベロッパーによる持続可能な構築を支援 https://cloud.google.com/blog/ja/topics/sustainability/earth-week-2022-at-google-cloud/ GoogleCloudで大きな変化を起こそうとしている革新的なスタートアップのストーリーを紹介たとえば、Enexorとパートナー企業は、廃棄されたプラスチックや農業廃棄物からクリーンで持続可能なエネルギーを生産しています。 2022-05-12 13:50: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件)