投稿時間:2023-07-04 21:18:10 RSSフィード2023-07-04 21:00 分まとめ(26件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Anker、「楽天お買い物マラソン」で130製品以上を最大40%オフで販売するセールを開催中(7月11日まで) https://taisy0.com/2023/07/04/173633.html anker 2023-07-04 11:15:31
TECH Techable(テッカブル) NFTデジタル会員権でホテル・別荘に宿泊!保有権を簡単に売買できるプラットフォーム「MikoSea リゾート」 https://techable.jp/archives/212762 mikosea 2023-07-04 11:00:36
python Pythonタグが付けられた新着投稿 - Qiita streamlit helloで失敗する場合のメモ https://qiita.com/isonov/items/5bcda5313cc3159235e7 pipinstallstreamlit 2023-07-04 20:52:02
python Pythonタグが付けられた新着投稿 - Qiita 【アマゾンで安価更新されたらをLINEに送信】をできなかった話 https://qiita.com/kohsukeve/items/184689189ba08957a36a amazon 2023-07-04 20:35:28
python Pythonタグが付けられた新着投稿 - Qiita ChatGPTをマスターしたいなら読むべき書籍TOP5 https://qiita.com/Raio14f/items/a0d9c5fb1fd257567d09 chatgpt 2023-07-04 20:02:43
Azure Azureタグが付けられた新着投稿 - Qiita 【AZ-900】クラウドの基礎まとめ https://qiita.com/mei2678/items/dab1537971da2fef720d 資格 2023-07-04 20:23:03
海外TECH DEV Community Introducing Operator-Caska: The Perfect Blend of CaskaydiaCove and Operator Mono https://dev.to/anantmishra1729/introducing-operator-caska-the-perfect-blend-of-caskaydiacove-and-operator-mono-4o0b Introducing Operator Caska The Perfect Blend of CaskaydiaCove and Operator MonoFonts play a crucial role in the coding and development process making the text more readable and aesthetically pleasing Today I am excited to introduce Operator Caska a unique cursive font which combines the elegance of CaskaydiaCove Nerd Font with the sophistication of Operator Mono Operator Caska offers ligature and cursive support making it an excellent choice for developers who appreciate both style and functionality in their coding environment In this blog post we ll delve into how you can integrate it into your preferred code editor Installation and Usage Download Operator CaskaVisit the GitHub repository and download the Operator Caska font files Anant mishra Operator caska Font Operator Caska Cursive font Operator caska Cursive FontFont with ligature and cursive support combination of both CaskaydiaCove Nerd Font and Operator Mono Use a theme which supports italics such as Monokai Pro Change Font Family to Operator Caska Operator Caska in One monokai italic theme View on GitHubgit clone LinuxMove both files Operator Caska Italic ttf and Operator Caska Regular ttf fonts inside directory fonts create fonts directory in your HOME if it does not exists WindowsRight click both ttf files and install them Configure your Code EditorOpen your preferred code editor and navigate to the settings or preferences menu Locate the Font or Typography section and set the font family to Operator Caska Adjust the font size and line spacing to your liking Enable LigaturesIf your code editor supports ligatures ensure that the ligature option is enabled In VsCode you can paste this in settings json to activate both features editor fontFamily Operator Caska editor fontLigatures true Apply themeIf you haven t already install and apply the Monokai Pro One monokai italic or any other theme with supports italics in your code editor Configure the theme s settings to match your preferences and enjoy the perfect combination of Operator Caska s elegance 2023-07-04 11:40:46
海外TECH DEV Community 🦄 Building a pricing page with NextJS 🤯 🤯 https://dev.to/github20k/building-a-pricing-page-with-nextjs-1b1f Building a pricing page with NextJS TL DRIn this article we will build a page with multiple pricing tiers Visitors can press the Purchase button and go to a checkout page Once completed we will send the customers to a success page and save them into our database This use case can be helpful in Purchase a coursePurchase a subscriptionPurchase a physical itemDonate moneyBuy you a coffee And so many more Can you help me out ️I love making open source projects and sharing them with everybody If you could help me out and star the project I would be super super grateful this is also the source code of this tutorial Let s set it up Let s start by creating a new NextJS project npx create next app latestJust click enter multiple times to create the project I am not a big fan of Next JS s new App router so I will use the old pages folder but feel free to do it your way Let s go ahead and add the pricing packages Let s make a new folder called components and add our pricing component mkdir componentscd componentstouch pricing component tsxAnd add the following content export const PackagesComponent gt return lt div className mt gt lt h className text center text xl max sm text xl font bold gt Packages lt h gt lt div className flex sm space x max sm space y max sm flex col gt lt div className flex text xl mt rounded xl border border EE bg C p w full gt lt div className text de gt Package one lt div gt lt div className text xl my font light gt lt div gt lt div gt Short description lt div gt lt button className my w full text black p max sm p rounded xl bg EE text xl max sm text lg hover bg adfc transition all gt Purchase lt button gt lt ul gt lt li gt First feature lt li gt lt li gt Second feature lt li gt lt ul gt lt div gt lt div className flex text xl mt rounded xl border border FF bg dd p w full gt lt div className text FF gt Package lt div gt lt div className text xl my font light gt lt div gt lt div gt Short Description lt div gt lt button className my w full text black p max sm p rounded xl bg FF text xl max sm text lg hover bg BBFF transition all gt Purchase lt button gt lt ul gt lt li gt First Feature lt li gt lt li gt Second Feature lt li gt lt li gt Thired Feature lt li gt lt ul gt lt div gt lt div className flex text xl mt rounded xl border border FEF bg d p w full gt lt div className text FEF gt Package lt div gt lt div className text xl my font light gt lt div gt lt div gt Short Description lt div gt lt button className my w full text black p max sm p rounded xl bg FEF text xl max sm text lg hover bg fdfbb transition all gt Purchase lt button gt lt ul gt lt li gt First Feature lt li gt lt li gt Second Feature lt li gt lt li gt Thired Feature lt li gt lt li gt Fourth Feature lt li gt lt li gt Fifth Feature lt li gt lt ul gt lt div gt lt div gt lt div gt This is a very simple component with Tailwind CSS to show three types of packages and Once clicked on any of the packages we will move the visitor to a purchase page where they can purchase the package Go to the root dir and create a new index page if it doesn t exist cd pagestouch index tsxAdd the following code to the file import React from react import PackagesComponent from components pricing component const Index gt return lt gt lt PackagesComponent gt lt gt Setting up your payment provider Most payment providers work in the same way Send an API call to the payment provider with the amount you want to charge and the success page to send the user after the payment You get a URL back from the API call with a link to the checkout page and redirect the user user leaving your website Once the purchase is finished it will redirect the user to the success page The payment provider will send an API call to a specific route you choose to let you know the purchase is completed asynchronically I use Stripe it is primarily accessible everywhere but feel free to use your payment provider Head over to Stripe click on the developer s tab move to API Keys and copy the public and secret keys from the developer s section Go to the root of your project and create a new file called env and paste the two keys like that PAYMENT PUBLIC KEY pk test PAYMENT SECRET KEY sk test Remember that we said Stripe would inform us later about a successful payment with an HTTP request Well we need toSet the route to get the request from the paymentProtect this route with a keySo while in the Stripe dashboard head to Webhooks and create a new webhook You must add an Endpoint URL Since we run the project locally Stripe can only send us a request back if we create a local listener or expose our website to the web with ngrok I prefer the ngrok option because for some reason the local listener didn t always work for me sometimes send events sometimes not So while your Next JS project runs just run the following commands npm install g ngrokngrok http And you will see Ngrok serves your website in their domain Just copy it And paste it into the Stripe webhook Endpoint URL also adding the path to complete the purchase api purchaseAfter that click Select Events Choose checkout session async payment succeeded and checkout session completed Click Add event and then Add endpoint Click on the created eventClick on Reveal on Signing key copy it and open env and addPAYMENT SIGNING SECRET key Sending users to the checkout page Let s start by installing Stripe and also some types since I am using typescript npm install stripe savenpm install D stripe event typesLet s create a new API route to create a checkout URL link for our users depending on the price cd pages apitouch prepare tsxHere is the content of the file import type NextApiRequest NextApiResponse from next const stripe new Stripe process env PAYMENT SECRET KEY as any export default async function handler req NextApiRequest res NextApiResponse if req method GET return res status json error Method not allowed if req query price req query price lt return res status json error Please enter a valid price const url await stripe checkout sessions create payment method types card line items price data currency USD product data name GrowChief description Charging you unit amount req query price quantity mode payment success url http localhost success session id CHECKOUT SESSION ID cancel url http localhost return req json url Here is what s going on here We set a new Stripe instance with the SECRET key from our env file We make sure the METHOD of the route is GET We check that we get a query string of price higher than We make a Stripe call to create a Stripe checkout URL We purchased item you can probably see that the unit amount is multiplied by If we send it would be multiplied by a hundred will make it We send the URL back to the client Let s open back our packages component tsx component and add the api call const purchase useCallback async price number gt const url await await fetch http localhost api prepare price price json window location href url And for the full code of the pageexport const PackagesComponent gt const purchase useCallback async price number gt const url await await fetch http localhost api prepare price price json window location href url return lt div className mt gt lt h className text center text xl max sm text xl font bold gt Packages lt h gt lt div className flex sm space x max sm space y max sm flex col gt lt div className flex text xl mt rounded xl border border EE bg C p w full gt lt div className text de gt Package one lt div gt lt div className text xl my font light gt lt div gt lt div gt Short description lt div gt lt button onClick gt purchase className my w full text black p max sm p rounded xl bg EE text xl max sm text lg hover bg adfc transition all gt Purchase lt button gt lt ul gt lt li gt First feature lt li gt lt li gt Second feature lt li gt lt ul gt lt div gt lt div className flex text xl mt rounded xl border border FF bg dd p w full gt lt div className text FF gt Package lt div gt lt div className text xl my font light gt lt div gt lt div gt Short Description lt div gt lt button onClick gt purchase className my w full text black p max sm p rounded xl bg FF text xl max sm text lg hover bg BBFF transition all gt Purchase lt button gt lt ul gt lt li gt First Feature lt li gt lt li gt Second Feature lt li gt lt li gt Thired Feature lt li gt lt ul gt lt div gt lt div className flex text xl mt rounded xl border border FEF bg d p w full gt lt div className text FEF gt Package lt div gt lt div className text xl my font light gt lt div gt lt div gt Short Description lt div gt lt button onClick gt purchase className my w full text black p max sm p rounded xl bg FEF text xl max sm text lg hover bg fdfbb transition all gt Purchase lt button gt lt ul gt lt li gt First Feature lt li gt lt li gt Second Feature lt li gt lt li gt Thired Feature lt li gt lt li gt Fourth Feature lt li gt lt li gt Fifth Feature lt li gt lt ul gt lt div gt lt div gt lt div gt We have added onClick on each button of the page with the right price to create the Checkout page Notion blew my mind Notion is an excellent tool for knowledge amp documentation I have been working for Novu for over a year and used Notion primarily for our team If you have ever played with Notion you have probably noticed they have a slick editor one of the best I have ever played with at least for me I HAVE REALIZED YOU CAN USE NOTION CONTENT WITH AN API I opened a notion free account and went out to check their pricing I was sure they would not offer API for their free tier I was very wrong they do and it s super fast Their most significant limitation is that they let you make a maximum of requests per second but that s not a big problem if you cache your website aka getStaticProps Processing the purchase request and adding the leads to Notion ‍ ️Remember we set a webhook for Stripe to send us a request once payment is completed Let s build this request validate it and add the customer to Notion Since the request is not a part of the user journey and sits on a different route it s exposed to the public It means that we have to protect this route Stripe offers a great way to validate it with Express but since we are using NextJS we need to modify it a bit so let s start by installing Micro npm install micro And open a new route for the purchase cd pagestouch purchase tsxOpen it up and add the following code lt reference types stripe event types gt import Stripe from stripe import buffer from micro import type NextApiRequest NextApiResponse from next const stripe new Stripe process env PAYMENT SECRET KEY as any export const config api bodyParser false export default async function handler req NextApiRequest res NextApiResponse const signature req headers stripe signature as string const reqBuffer await buffer req const event stripe webhooks constructEvent reqBuffer signature process env PAYMENT SIGNING SECRET as Stripe DiscriminatedEvent if event type checkout session async payment succeeded amp amp event type checkout session completed res json invalid true return if event data object payment status paid res json invalid true return request is valid let s add it to notion This is the code to validate the request let s see what s going on here We start by import typing remember we installed stripe event types before We set a new Stripe instance with our secret key We tell the route not to parse it into JSON because Stripe sends us the request in a different format We extract the stripe signature from the header and use the constructEvent function to validate the request and tell us the event Stripe sent us We check that we get the event checkout session async payment succeeded if we get anything else we ignore the request If we succeeded but the customer didn t pay we also ignored the request We have a place to write the logic of the purchase After this part this is your chance to add your custom logic it could be any of the Register the user to a newsletterRegister the user to the databaseActivate a user subscriptionSend the user a link with the course URLAnd so many more For our case we will add the user to Notion Setting up notion Before playing with Notion let s create a new Notion integration Head over to My integrations And click New Integration After that just add any name and click SubmitClick on Show and copy the keyHead over to your env file and add the new keyNOTION KEY secret Let s head over to notion and create a new DatabaseThis database won t be exposed to the API unless we specify that so click on the and then Add connections and click the newly created integration Once that is done copy the ID of the database and add it to your env file NOTION CUSTOMERS DB your idNow you can play with the field in the database any way you want I will stick with the Name field and add the customer s name from the Stripe purchase Not let s install notion client by runningnpm install notionhq client saveLet s write the logic to add the customer s name to our database import Client from notionhq client const notion new Client auth process env NOTION KEY await notion pages create parent database id process env NOTION CUSTOMERS DB properties Name title text content event data object customer details name This code is pretty straightforward We set a new Notion instance with the Notion secret key and then create a new row in our database with the prospect s name And the full purchase code lt reference types stripe event types gt import Stripe from stripe import buffer from micro import type NextApiRequest NextApiResponse from next import Client from notionhq client const notion new Client auth process env NOTION KEY const stripe new Stripe process env PAYMENT SECRET KEY as any export const config api bodyParser false export default async function handler req NextApiRequest res NextApiResponse const signature req headers stripe signature as string const reqBuffer await buffer req const event stripe webhooks constructEvent reqBuffer signature process env PAYMENT SIGNING SECRET as Stripe DiscriminatedEvent if event type checkout session async payment succeeded amp amp event type checkout session completed res json invalid true return if event data object payment status paid res json invalid true return await notion pages create parent database id process env NOTION CUSTOMERS DB properties Name title text content event data object customer details name res json success true You should have something like this You nailed it That s all You can find the entire source code here You will find more stuff there such asDisplaying DEV TO analyticsCollecting information from Notion and displaying it on the website CMS style Entire purchase flow Can you help me out ️I hope this tutorial was helpful for you Any star you can give me would help me tremendously 2023-07-04 11:34:40
海外TECH DEV Community You can NOT and should NOT stop procrastinating https://dev.to/jmfayard/you-can-not-and-should-not-stop-procrasting-2ooh You can NOT and should NOT stop procrastinatingProcrastination has such an universally bad reputation that one has to wonder why it exists in the fist placeThis post is an answer to a reader s question Ask me anything if you have something important on your mind I am struggling with imposter syndrome Oscar a reader contacted me and opened up with his struggle with imposter syndromeI ve felt imposter syndrome all my career I think I put myself into a bad position when joining PreviousCompany I just said to myself “This time is going to work I ll get rid of imposter syndrome It is pretty stupid put yourself against the wall into a binary position where the result is “complete success or “complete failure We devised strategies against imposter syndrome which he agreed with and which I then wrote down here The Real Imposter is The Inner Judge On Imposter Symdrome Jean Michel Fayard ・May ・ min read career beginners mentalhealth Procrastination kicks inTim Urban Wait but WhyOscar told me a couple weeks later the didn t make much progress He believed in the strategies but didn t much because I am bad at following strategies And when I asked why and how he gave me following example I am stuck in the same patternI get the determination to exercise more I start doing exercise I keep it ok the first week I feel I should exercise more Second week something comes up and I can t do it The inner judge turns up to punish And in spite of knowing I should kind with my self say the inner judge fuck off I do my best bla bla bla I am still feeling bad for not having achieved my expectation So today let s talk about procrastination s bad reputation Procrastination has a bad reputationIf you read the productivity and success bloggers on Medium com you will learn that Procrastination is a terrible enemy one enemy that you should destroy without mercy if you want to achieve anything in life And the success bloggers over there at Medium have all the weapons you need to kill once for all any kind of procrastination Procrastination Got Me Six Year in Prison The HavenThis Strategy Makes It Impossible To Procrastinate MediumEliminate Procrastination By Asking Two Incredibly Simple Questions MediumProcrastination Sucks ーSo Here s The “Eat That Frog Way to Powerful Productivity MediumRewire Your Brain to Beat Procrastination MediumWhy the Second Rule Will Destroy Your Procrastination According to Science MediumBeat Procrastination Forever with One Habit MediumSay Goodbye to Procrastination with ChatGPT ーThese Prompts Will Make You a Productivity Superstar MediumWhy Learning Is A New Procrastination Medium That actually makes me feel worse because I love learning and I don t want to spend years of prison Will ChatGPT really keep me free With so much tips on how to destroy procrastination one has to wonder how it still survives Probably the next think piece will do it If we don t procrastinate on applying the best strategies to do so obviously But procrastinate we will because our brain is smart How to not outrun an antilopeFigure this you are a prehistoric man in the African savannah Your eyes are focused on a delicious antilope that could feed your family minutes ago you tried to ambush her but she escaped You tried to pursue her but she runs damn well Not so easy Don t worry if its the only source of food available you can still catch her As a human being you have an overpowered ability which she doesn t have You can sweat much better than most animals That gives you an edge in the long run The antilope runs faster but at every stop she needs more time than you recover So don t procrastinate Follow her As long as necessary You will catch her if you are disciplined enough And you will catch her if you are desperate enough But otherwise you probably won t Instead you will procrastinate Your brain is smart and lazyYour brain is lazy because it is smartI should know I am a lazy programmer I am a lazy developer Jean Michel Fayard ・Apr ・ min read career watercooler beginners productivity The brain understands why you are trying to run in the first place You are not trying to play the damn olympics You are trying to catch food for your famliy So he is scanning your environment for easier sources of food instead of letting you exhaust yourself in the poursuit of a damn fit antilope And that s why we procrastinate and always will So instead of labelling yourself a procrastinator you might as well label yourself as a smart and lazy human being Beating Procrastination is the Wrong GoalThe olympics is a fine entertainment but I think it s a poor metaphor of life Usually we don t need to beat everyone else and be disciplined like a machine What we need is to show up be good enough and find an easy source of food that will feed our family How boring would we be if the great strategies of Medium s success bloggers worked and we could be disciplined like a machine We would become a machine basically Wouldn t be loose an important part of our humanity in the process The pain is realTim Ferris from Wait but Why has made some very famous content on procrastination including a TED talk ️Tim Urban Inside the mind of a master procrastinator TED TalkBut what I find most interesting is not his solutions like setting you up with frequent small deadlines that make the distraction monkey afraid What is most interesting to me is the pain expressed by his readers That feels so relatable So what happens here Why do we feel so much pain for something that is natural and good Don t Fight Your Procrastination Try to Understand ItThe reason we resent procrastination so deeply is that we need action Action is the best remedy But action ain t easy it requires clarity of mind the right context quiet time meeting people So what do I do I listen to my procrastination I know the trick sounds too simple to possibly work But hey if there is a reason we procrastinate procrastination itself can be our teacher to understand better the obstacles and ourselves ‍Why exactly am I procrastinating in the first place There is not any single strategy that works against procrastination because well the problem is different every time If I procrastination tells me the deadline is too far in the futureHere I would probably folllow Tim Ubran s adviceIf procrastination tells me I find a task meaninglessThen I probably need to first find my WHY Or give it up If procrastination tells me the task makes sense but is unclearThen I probably ask for clarificationIf procrastination tells me the task is too bigThen I should probably focus on dividing it in manageable chuncksIf procrastination tells me there too much steps involvedThen I should probably focus on just my next step If procrastination tells me I have spent too much time sitting behind a screenThen I should probably go for a walkIf procrastination tells me I feel aloneThen I should probably invite a friend for coffeeIf procrastination tells me I feel a bit downThen I will probably listen to my Cumbia playlistIf procrastination tells me I m too tired Then I should probably sleepHi I m Jean Michel Fayard Ask me anything if you have something important on your mind️Please send my article to a friend that needs it 2023-07-04 11:30:00
海外TECH DEV Community Is JavaScript Dying? 💀 https://dev.to/akashpattnaik/is-javascript-dying-1joe Is JavaScript Dying Outline Introduction The Evolution of JavaScript The Popularity of JavaScript Challenges Faced by JavaScript The Rise of Alternative Technologies The Future of JavaScript Conclusion FAQs Is JavaScript still relevant in web development Can other languages replace JavaScript How can developers stay updated with JavaScript What are the advantages of learning JavaScript Will JavaScript continue to dominate the web Introduction In the realm of web development JavaScript has reigned supreme for many years powering interactive and dynamic web applications However with the ever evolving landscape of technology it is natural to wonder whether JavaScript is gradually fading away or if it still holds its position as a dominant programming language This article explores the topic of whether JavaScript is dying and examines the various factors influencing its future The Evolution of JavaScript JavaScript created by Brendan Eich in was initially designed as a scripting language to enhance interactivity on web pages Over the years it has grown to become a versatile and powerful language capable of handling complex tasks on both the client and server sides The continuous development of JavaScript has led to the introduction of modern frameworks and libraries such as React Angular and Vue js which have further elevated its capabilities and popularity The Popularity of JavaScript Despite being around for several decades JavaScript remains one of the most popular programming languages globally Its versatility browser compatibility and extensive community support contribute to its widespread adoption JavaScript enables developers to create interactive user interfaces build scalable web applications and even develop mobile applications using frameworks like React Native and Ionic With its vast ecosystem and widespread use JavaScript continues to be a go to language for many developers Challenges Faced by JavaScript While JavaScript has a dominant presence in the web development landscape it is not without its challenges One of the primary concerns is the fragmentation of the JavaScript ecosystem with numerous frameworks and libraries competing for attention This can lead to confusion and decision paralysis among developers Additionally JavaScript has faced criticism for its quirks inconsistencies and performance limitations which have motivated the development of alternative technologies The Rise of Alternative Technologies The emergence of alternative technologies such as TypeScript WebAssembly and various front end frameworks has sparked discussions about the future of JavaScript TypeScript a statically typed superset of JavaScript offers improved developer experience and enhanced tooling support WebAssembly enables running high performance code on the web allowing developers to utilize languages like C Rust and Go for web applications These advancements have opened up new possibilities and prompted developers to explore alternatives to JavaScript The Future of JavaScript Despite the rise of alternative technologies JavaScript is far from being on its deathbed The JavaScript community is actively addressing its challenges and continuously improving the language Major frameworks like React Angular and Vue js continue to evolve providing developers with efficient ways to build web applications Moreover JavaScript s compatibility with web browsers and its ubiquitous nature make it difficult to replace entirely It is more likely that JavaScript will continue to coexist with emerging technologies adapting and evolving to meet the demands of modern web development Conclusion In conclusion while JavaScript faces challenges and competition fromalternative technologies it is far from dying JavaScript has evolved significantly and remains a crucial language in the web development ecosystem Its widespread adoption versatility and constant innovation contribute to its continued relevance As the technology landscape evolves FAQs Q Is JavaScript still relevant in web development Yes JavaScript is still highly relevant in web development It powers interactive web pages enables the creation of dynamic user interfaces and offers a vast ecosystem of frameworks and libraries Q Can other languages replace JavaScript While other languages like TypeScript and WebAssembly offer alternative approaches JavaScript s compatibility and extensive community support make it challenging to replace entirely Q How can developers stay updated with JavaScript Developers can stay updated with JavaScript by following online resources joining developer communities attending conferences and exploring new frameworks and libraries Q What are the advantages of learning JavaScript Learning JavaScript opens up numerous opportunities in web development It allows developers to create interactive websites build web applications and even develop mobile applications using frameworks like React Native Q Will JavaScript continue to dominate the web While JavaScript may face competition from emerging technologies it is likely to continue dominating the web due to its compatibility versatility and constant innovation Connect with me Mail akashpattnaik github gamil comGithub iAkashPattnaikTwitter akash am 2023-07-04 11:23:26
Apple AppleInsider - Frontpage News Apple, Google confirm new EU 'gatekeeper' law applies to them https://appleinsider.com/articles/23/07/04/apple-google-confirm-new-eu-gatekeeper-law-applies-to-them?utm_medium=rss Apple Google confirm new EU x gatekeeper x law applies to themA swathe of Big Tech firms ranging from Apple to TikTok owner Bytedance have told the EU that they fall under the provisions of the Digital Markets Act DMA signalling that they accept its rules about messaging apps It s not that there was any doubt over whether the major Big Tech companies came under the aegis of the new law especially since it was effectively created to target them But now European Commission industry chief Thierry Breton says the firms have formally notified the EU that they qualify According to Reuters Breton and the EU have announced that six companies have said they come under the new rules Read more 2023-07-04 11:34:46
Apple AppleInsider - Frontpage News Rumored Apple Watch Ultra with microLED may not arrive as soon as predicted https://appleinsider.com/articles/23/07/04/rumored-apple-watch-ultra-with-microled-may-not-arrive-as-soon-as-predicted?utm_medium=rss Rumored Apple Watch Ultra with microLED may not arrive as soon as predictedA version of the Apple Watch Ultra incorporating a microLED display may arrive later than previously rumored with claims that production problems are popping up Apple Watch UltraThe Apple Watch Ultra is the top of the line model in the wearables range with the largest display available While there have been rumors about the OLED display being replaced by a microLED version in the future it seems that the timing of production may be again a bit later than first anticipated Read more 2023-07-04 11:07:17
海外TECH Engadget The Morning After: Meta's Instagram-linked Twitter rival could arrive this week https://www.engadget.com/the-morning-after-metas-instagram-linked-twitter-rival-could-arrive-this-week-111508536.html?src=rss The Morning After Meta x s Instagram linked Twitter rival could arrive this weekAs Twitter continues to figuratively kneecap itself by limiting tweet views Meta is hustling to bring its Twitter rival to reality A listing for an app called Threads was spotted on the iOS App Store with an estimated release date of July th In May a report said the microblogging service was nearing completion and could be out as soon as the end of June While an end of June launch didn t quite happen the app could arrive when Twitter users are more willing and maybe even eager to finally jump ship Twitter boss Elon Musk announced at the weekend that verified accounts ーwhich translates to paying users ーcan read posts daily while non paying users can only read He said the website is adopting the measure to quot address extreme levels of data scraping and system manipulation quot From both the app listing and rumors we re expecting Threads will migrate your followers and circles from your existing Instagram handle ensuring you should have an active timeline right from the outset That is if you re an Instagram user Mat SmithYou can get these reports delivered daily direct to your inbox Subscribe right here ​​The biggest stories you might have missedAmazon is offering a credit when you buy a eGift card for Prime DayBlue Origin is planning to open new launch sites outside the US Tidal is increasing its HiFi plan to per monthThe best mobile microphones for The best cameras for Compacts DSLRs action cams and of course mirrorless cameras EngadgetSince smartphones started eating casual photography s lunch camera makers have focused on devices designed for very specific uses Action cams provide sharp fluid video Compact cameras target both tourists and vloggers And DSLRs are available at some of the best prices we ve seen Then there are mirrorless cameras which continue to improve their autofocus and video And that s where some guidance helps Whether you re a creator looking for just the right vlogging camera an aspiring wildlife photographer or a sports enthusiast we ll help you find the perfect camera to match your budget and needs Continue reading There s an animated GIF generator nowAre your group chats ready for this level of nonsense Remember the early days of the AI hype train when everyone spent their time making stupid images using text prompts If you want to recapture the nostalgic haze of uh late Picsart has you covered The popular image editor just launched an AI powered animated GIF generator calling the tool its “most unhinged platform yet Type a bunch of nonsense into the chat box wait a minute or so and marvel at your “chaotic and eccentric creation The platform s integrated into the regular Picsart app and is available for iOS Android devices and on the web Continue reading Twitter launches new TweetDeck as the old version breaks downThe feature will also be exclusive to Twitter Blue in days If you ve been having trouble using Twitter recently you aren t alone ーthe service has been having issues since it started limiting the daily number of posts users could view Although many of the platform s issues stabilized over the weekend TweetDeck remains broken unless users switch to the beta version of the list aggregator Now Twitter is gearing up to solve the issue by making that beta version of TweetDeck the main version According to Twitter Support the feature will become exclusive to Twitter Blue subscribers in the near future noting that quot in days users must be Verified to access TweetDeck quot Continue reading Some HBO shows are streaming on Netflix in the US for the first time Insecure is now on the platform with Band of Brothers and Six Feet Under arriving later There really is an HBO show on Netflix All five seasons of Issa Rae s highly acclaimed comedy drama series Insecure are now streaming on Netflix in the US Even more HBO shows are on the way too Band of Brothers The Pacific Six Feet Under and Ballers are also coming to Netflix as part of the deal the company told Deadline Meanwhile Netflix users outside the US can stream True Blood on the service Continue reading This article originally appeared on Engadget at 2023-07-04 11:15:08
海外科学 NYT > Science See Photos of the July Supermoon https://www.nytimes.com/2023/07/04/science/supermoon-buck-moon-photos.html photos 2023-07-04 11:34:22
医療系 医療介護 CBnews 生殖補助医療管理料の算定、情報登録必須-精巣内精子採取術も、22年度改定疑義解釈 https://www.cbnews.jp/news/entry/20230704202603 医療機関 2023-07-04 20:35:00
医療系 医療介護 CBnews 【感染症情報】ヘルパンギーナが7週連続で増加-過去10年で最多の患者報告数 https://www.cbnews.jp/news/entry/20230704202444 医療機関 2023-07-04 20:30:00
医療系 医療介護 CBnews 国立大病院の光熱水費122億円増-22年度は総額367億円に https://www.cbnews.jp/news/entry/20230704194857 国立大学病院 2023-07-04 20:10:00
金融 JPX マーケットニュース [東証]監理銘柄(確認中)の指定:八千代工業(株) https://www.jpx.co.jp/news/1023/20230704-11.html 八千代工業 2023-07-04 20:10:00
ニュース BBC News - Home Jamie Barrow: Man found guilty of murdering mum and daughters in fire https://www.bbc.co.uk/news/uk-england-nottinghamshire-65988132?at_medium=RSS&at_campaign=KARANGA children 2023-07-04 11:45:56
ニュース BBC News - Home Nigel Farage bank account shut for falling below wealth limit https://www.bbc.co.uk/news/business-66097039?at_medium=RSS&at_campaign=KARANGA account 2023-07-04 11:54:16
ニュース BBC News - Home Mortgage rates: Average five-year fix rises above 6% https://www.bbc.co.uk/news/business-66088718?at_medium=RSS&at_campaign=KARANGA rises 2023-07-04 11:57:35
ニュース BBC News - Home Thames Water fined £3.3m over river sewage https://www.bbc.co.uk/news/uk-england-sussex-66097906?at_medium=RSS&at_campaign=KARANGA rivers 2023-07-04 11:45:49
ニュース BBC News - Home China accuses UK of harbouring Hong Kong fugitives https://www.bbc.co.uk/news/world-asia-china-66098796?at_medium=RSS&at_campaign=KARANGA activists 2023-07-04 11:03:08
ニュース BBC News - Home Orkney votes to explore 'alternative governance' https://www.bbc.co.uk/news/uk-scotland-north-east-orkney-shetland-66090102?at_medium=RSS&at_campaign=KARANGA alternative 2023-07-04 11:16:11
ニュース BBC News - Home The Ashes 2023: Ollie Pope out for rest of summer with shoulder injury https://www.bbc.co.uk/sport/cricket/66098368?at_medium=RSS&at_campaign=KARANGA The Ashes Ollie Pope out for rest of summer with shoulder injuryEngland batter Ollie Pope is ruled out of the rest of the Ashes series with a dislocated shoulder sustained in the second Test defeat at Lord s 2023-07-04 11:50:31
ニュース BBC News - Home The Ashes 2023: England's Ollie Pope leaves the field injured after diving https://www.bbc.co.uk/sport/av/cricket/66044229?at_medium=RSS&at_campaign=KARANGA The Ashes England x s Ollie Pope leaves the field injured after divingEngland s Ollie Pope leaves the field after injuring his shoulder diving at backward point on day one of the second Ashes Test at Lord s 2023-07-04 11:17:58

コメント

このブログの人気の投稿

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