投稿時間:2023-08-22 16:30:41 RSSフィード2023-08-22 16:00 分まとめ(39件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 体調急変を察知し「ドライバー緊急時自動運転」の実現を目指す ヘルステック企業とEVメーカーが事業提携 https://robotstart.info/2023/08/22/hw-electro-medirom-mother-labs.html 2023-08-22 06:20:11
IT @IT 全フォーラム 最新記事一覧 CentOSを使い続けたい? サイバートラストが小規模ユーザー向けに延長サポートサービス https://atmarkit.itmedia.co.jp/ait/articles/2308/22/news148.html centos 2023-08-22 15:30:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 女性にもっと「かつ丼」食べてほしい ファミマが「チルド丼」を強化するワケ https://www.itmedia.co.jp/business/articles/2308/22/news138.html 取り込み 2023-08-22 15:36:00
IT ITmedia 総合記事一覧 [ITmedia News] 「王様戦隊キングオージャー」制作の裏側 バーチャルプロダクション撮影のメイキング公開 https://www.itmedia.co.jp/news/articles/2308/22/news154.html itmedia 2023-08-22 15:33:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] エイサー、有機ELパネルを採用したウルトラワイド仕様の湾曲44.5型ゲーミングディスプレイ https://www.itmedia.co.jp/pcuser/articles/2308/22/news152.html itmediapcuser 2023-08-22 15:24:00
js JavaScriptタグが付けられた新着投稿 - Qiita cytoscape.jsでfitするときは直前でresizeすると効くかも https://qiita.com/nkmrtkhd/items/d384f21911cdfda733f3 cylayoutruncyresize 2023-08-22 15:26:01
js JavaScriptタグが付けられた新着投稿 - Qiita PipedreamでLINE BotのNode.js SDKを使う実験 https://qiita.com/n0bisuke/items/a93e2799e3ca6487ef13 importlinefr 2023-08-22 15:15:45
Ruby Rubyタグが付けられた新着投稿 - Qiita マルチテナントって? https://qiita.com/yuukinakamura0925/items/6c1dd9d8dae03a1a1c3b 複数 2023-08-22 15:30:10
Ruby Rubyタグが付けられた新着投稿 - Qiita 配列の交換 https://qiita.com/edward_aki/items/b38d2fcdc0f6c485eb00 arrayaarraybarraybarraya 2023-08-22 15:02:21
Linux @IT Linux&OSSフォーラム 最新記事一覧 CentOSを使い続けたい? サイバートラストが小規模ユーザー向けに延長サポートサービス https://atmarkit.itmedia.co.jp/ait/articles/2308/22/news148.html centos 2023-08-22 15:30:00
AWS AWSタグが付けられた新着投稿 - Qiita AWS Cognito徹底入門!簡単にユーザー認証を実装する方法 https://qiita.com/itinerant_programmer/items/d6d1841239b35b509c57 awscognito 2023-08-22 15:55:11
Ruby Railsタグが付けられた新着投稿 - Qiita マルチテナントって? https://qiita.com/yuukinakamura0925/items/6c1dd9d8dae03a1a1c3b 複数 2023-08-22 15:30:10
技術ブログ Developers.IO Amazon AthenaのIcebergテーブルのbucket関数で、ハッシュによるパーティション分割を利用してみる https://dev.classmethod.jp/articles/athena-iceberg-table-bucket-hidden-partition/ hiddenpartitioning 2023-08-22 06:51:22
海外TECH DEV Community Importance of Idempotency in Microservice Architectures https://dev.to/amplication/importance-of-idempotency-in-microservice-architectures-1gom Importance of Idempotency in Microservice Architectures IntroductionMicroservices have emerged as a transformative paradigm allowing organizations to create highly scalable and agile applications Microservices divide applications into loosely coupled independently deployable services fostering flexibility and accelerating development However the decentralized nature of microservices introduces challenges in ensuring smooth interactions between distributed components This is where idempotency becomes pivotal acting as a fundamental pillar to achieving reliability and data integrity within this intricate ecosystem What is Idempotency Idempotency stands as a cardinal principle with far reaching implications An Operation is considered Idempotent if executing it multiple times yields the same outcome as performing it once This seemingly subtle property ensures consistency reliability and predictability in the interactions between distributed services It guarantees that repeating an operation won t alter the result if it has already been executed For instance if a payment transaction is idempotent applying it multiple times will yield the same outcome as using it once regardless of retries or network anomalies Within distributed systems where services communicate over networks they might encounter issues such as network failures timeouts and service crashes In such scenarios idempotency becomes an essential principle Without idempotency unexpected consequences can arise from repeated operations leading to data inconsistencies and undesirable states What are some applications of Idempotency Consider the following examples Order Processing For instance in an e commerce application there can be order creation requests that could potentially fail but can be retried automatically However this could often lead to cases where your orders can be duplicated in the system By adopting idempotency you can guarantee that the order is created only once regardless of when the request is retried Inventory Management When updating inventory levels after a purchase idempotency ensures that stock quantities are adjusted correctly regardless of network hiccups or retries preventing inaccuracies in inventory levels Payment Processing When processing payments providing idempotency is crucial Repeated payment requests could lead to multiple charges on a customer s account Idempotency ensures that the payment processing operation remains consistent preventing double charges and maintaining accurate financial records Reference In this instance the payment and confirmation fail in their initial attempts However the payment goes through on the subsequent try while the confirmation still faces an issue Consequently the system recognizes the idempotence key upon the user s next retry This recognition prompts the system to solely transmit the confirmation to the user avoiding the need to reprocess the payment What are the benefits of Idempotency in microservices Data Consistency and Integrity In microservices where data flows across multiple services idempotency ensures that updates are uniform across the board This maintains data integrity and coherence preventing disparities from arising due to conflicting changes Unintended Side Effects PreventionNon idempotent operations risk unintentional consequences when repeated Idempotency guarantees that executing the same operation multiple times doesn t introduce unexpected side effects safeguarding against accidental duplications or undesired changes Reliable Retries and Error HandlingNetwork disruptions or service failures are common in distributed systems Idempotent operations allow for reliable retries without concern for negative outcomes Repeated attempts remain consistent with the first preserving data accuracy Scalability and Fault ToleranceThe scalability and fault tolerance of microservices hinge on idempotent operations They permit horizontal scaling and retries without jeopardizing system stability Consequently the architecture adapts gracefully to changing workloads and ensures consistent service availability How can you design idempotent operations in microservices It is important to design idempotent operations into microservices to yield the benefits we discussed Let s explore some of the strategies involved Identifying Suitable Operations for IdempotencyBegin by discerning which operations can feasibly be designed as idempotent Focus on HTTP methods that inherently align with idempotent characteristics GET PUT POST and DELETE These methods offer a foundation for building interactions that reliably produce consistent outcomes regardless of the number of repetitions Handling Idempotent CRUD Operations for Data ManipulationIntroduce idempotency to the equation for data manipulation tasks like creating updating or deleting records This involves crafting operations to ensure repeated requests yield identical results to a single request Consistency in these operations maintains the accuracy and coherence of data across microservices Implementing Idempotent State Changing Operations e g Transactions Meticulous implementation is imperative when dealing with state changing operations such as transactions The idempotent nature of these operations ensures that performing them multiple times or after failures yields consistent outcomes This consistency is vital for maintaining the desired state within the microservices ecosystem Leveraging HTTP Methods for IdempotencyMaximize the inherent idempotent properties of HTTP methods to design interactions that align with idempotency principles Capitalize on the reliable behavior of methods like PUT and DELETE to craft consistent operations regardless of retries or failures Visual Diagrams Illustrating Idempotent Microservices InteractionsHarness the power of visual aids to elucidate complex concepts Employ diagrams to visualize the flow of idempotent interactions across microservices These visuals serve as valuable guides for developers facilitating the seamless implementation of idempotent design patterns What are the challenges of implementing idempotency While idempotency brings valuable benefits to microservices architecture it has some challenges that you should consider before adopting it Concurrency Challenges and Race ConditionsSimultaneous requests can lead to concurrency challenges and race conditions in a distributed environment Guaranteeing consistent outcomes amidst concurrent operations demands careful synchronization and concurrency control mechanisms Failing to manage these challenges could result in unexpected and undesirable states Managing Unique Identifiers for Request TrackingTracking requests is pivotal for preventing unintentional duplicates and managing retries However generating and handling unique identifiers across services can be intricate Finding a good balance between maintaining uniqueness and managing requests efficiently is essential for effective idempotency implementation Handling Idempotency Across Multiple Interconnected ServicesIn a microservices ecosystem where services collaboratively execute tasks ensuring idempotency across interconnected services can be complex Coordinating state changes and managing service interactions while upholding idempotency principles requires meticulous planning to avoid inconsistencies A form of a Distributed Transaction should be considered in such cases Balancing Idempotency with Eventual Consistency ConsiderationsMicroservices architectures often prioritize eventual consistency to maintain performance and responsiveness Balancing the principles of idempotency with the eventual consistency model is a delicate endeavor Finding the proper equilibrium between these two aspects is critical to prevent compromise between system reliability and performance How can you overcome idempotency implementation challenges Effectively addressing the challenges associated with implementing idempotency is critical to realizing the full potential of reliable and consistent interactions within a microservices architecture Here are the strategies and techniques to overcome these challenges Generating and Managing Request IDs or TokensTo ensure request uniqueness and prevent unintended duplicates generate and attach unique identifiers or tokens to each request These identifiers help track the progress of requests and enable the server to recognize and handle duplicate requests gracefully Implementing Optimistic Concurrency Control MechanismsTo navigate concurrency challenges and race conditions adopt optimistic concurrency control mechanisms This approach allows concurrent operations but verifies that the resource s state remains unchanged before applying modifications If conflicts arise the system can handle them systematically Utilizing Distributed Locks and Synchronization TechniquesDistributed locks and synchronization techniques are pivotal in managing concurrent access to resources By employing locking mechanisms you can ensure that only one process can modify a resource at a time thereby preventing inconsistent states due to concurrent modifications Monitoring and Logging Strategies for Tracking Idempotent OperationsImplement robust monitoring and logging practices to track idempotent operations Comprehensive logs allow you to trace requests detect anomalies and diagnose potential issues ensuring transparency and accountability in the system s behavior Adopting a Graceful Retry StrategyIncorporate a graceful retry strategy that aligns with idempotency principles For example when a request fails due to network issues a well designed system can automatically retry the operation without risking unintended side effects Key TakeawaysIdempotency ensures reliable interactions and data integrity By embracing the idempotent properties of HTTP methods and implementing strategies to address challenges architects can create a dependable foundation for distributed systems This reliability fosters seamless communication consistent operations and a resilient user experience As microservices evolve idempotency s principles will continue to guide software design toward excellence maintaining the integrity of interactions in an ever changing landscape The journey to mastering microservices is one of continuous learning and adaptation With platforms like Amplication championing best practices including idempotency developers are equipped with the right tools to build reliable future proof applications that stand the test of time 2023-08-22 06:51:55
海外TECH DEV Community Collection of retry patterns for SDK calls in AWS SDK for Go v2 https://dev.to/aws-builders/collection-of-retry-patterns-for-sdk-calls-in-aws-sdk-for-go-v2-14p4 Collection of retry patterns for SDK calls in AWS SDK for Go vWhen using the AWS SDK AWS SDK for Go v in Golang you may want to retry the SDK call There are several patterns of how to do this so I wrote this AssumptionsThe example in this article uses v Go and v aws sdk go v version Also regarding retries it is possible to centrally configure retries for all SDK calls set at client instance creation but this article assumes that you want to set change retries for each SDK call API call e g Changing retry behavior between s ListObjects and iam DeleteRole RepositoryThe source code for this project is available on GitHub Retry Patterns Options RetryMaxAttemptsHere is the simplest one first In the Options structure used for Client generation and API calls in the AWS SDK there are parameters for retries called RetryMaxAttempts and RetryMode as shown below Implementation Exampleinput amp iam DeleteRoleInput RoleName roleName optFn func o iam Options o RetryMaxAttempts o RetryMode aws RetryModeStandard err i client DeleteRole ctx input optFn Simply specifying these will cause exponential backoff retries to be performed up to the number of times specified in RetryMaxAttempts Retry Patterns Options RetryerIn addition Options has a parameter called Retryer to implement a fine tuned retry algorithm If this parameter is specified the retry behavior specified implemented here will be applied instead of RetryMaxAttempts and RetryMode listed above The Options Retryer should be an interface called Retryer or RetryerV There are functions to adjust the retry decision logic IsErrorRetryable the maximum number of attempts MaxAttempts and the sleep time RetryDelay which allow you to customize the retry behavior Specifically IsErrorRetryable allows you to specify in more detail when to retry The RetryDelay allows you to set up logic like wait a random number of seconds Jitter not just an exponential backoff Code in SDK module not example implementation type Retryer interface IsErrorRetryable returns if the failed attempt is retryable This check should determine if the error can be retried or if the error is terminal IsErrorRetryable error bool MaxAttempts returns the maximum number of attempts that can be made for an attempt before failing A value of implies that the attempt should be retried until it succeeds if the errors are retryable MaxAttempts int RetryDelay returns the delay that should be used before retrying the attempt Will return error if the if the delay could not be determined RetryDelay attempt int opErr error time Duration error GetRetryToken attempts to deduct the retry cost from the retry token pool Returning the token release function or error GetRetryToken ctx context Context opErr error releaseToken func error error err error GetInitialToken returns the initial attempt token that can increment the retry token pool if the attempt is successful GetInitialToken releaseToken func error error RetryerV is an interface to determine if a given error from an attempt should be retried and if so what backoff delay to apply The default implementation used by most services is the retry package s Standard type Which contains basic retry logic using exponential backoff RetryerV replaces the Retryer interface deprecating the GetInitialToken method in favor of GetAttemptToken which takes a context and can return an error The SDK s retry package s Attempt middleware and utilities will always wrap a Retryer as a RetryerV Delegating to GetInitialToken only if GetAttemptToken is not implemented type RetryerV interface Retryer GetInitialToken returns the initial attempt token that can increment the retry token pool if the attempt is successful Deprecated This method does not provide a way to block using Context nor can it return an error Use RetryerV and GetAttemptToken instead GetInitialToken releaseToken func error error GetAttemptToken returns the send token that can be used to rate limit attempt calls Will be used by the SDK s retry package s Attempt middleware to get a send token prior to calling the temp and releasing the send token after the attempt has been made GetAttemptToken context Context func error error error If you use this method define a structure named Retryer in a separate file The retry decision logic functions that should be implemented in the above IsErrorRetryable can be defined by the caller and passed to the constructor for general use In the RetryDelay in the middle of the example below logic is written to retry in a random number of seconds Example implementation retryer options go package retryerimport context math rand time github com aws aws sdk go v aws const MaxRetryCount var aws RetryerV Retryer nil type Retryer struct isErrorRetryableFunc func error bool delayTimeSec int func NewRetryer isErrorRetryableFunc func error bool delayTimeSec int Retryer return amp Retryer isErrorRetryableFunc isErrorRetryableFunc delayTimeSec delayTimeSec func r Retryer IsErrorRetryable err error bool return r isErrorRetryableFunc err func r Retryer MaxAttempts int return MaxRetryCount func r Retryer RetryDelay int error time Duration error rand Seed time Now UnixNano waitTime if r delayTimeSec gt waitTime rand Intn r delayTimeSec return time Duration waitTime time Second nil func r Retryer GetRetryToken context Context error func error error error return func error error return nil nil func r Retryer GetInitialToken func error error return func error error return nil func r Retryer GetAttemptToken context Context func error error error return func error error return nil nil Then based on this retries are specified when the SDK is called In the following implementation example the variable retryable contains a function with a decision logic such as retry if there is an api error Throttling Rate exceeded message in SDK error response Then in optFn define a function to specify a Retryer instance created with the retryable and SleepTimeSec to Options Retryer and specify it as the third argument of the SDK call in this case DeleteRole Example Implementation Caller iam go const SleepTimeSec input amp iam DeleteRoleInput RoleName roleName retryable func err error bool return strings Contains err Error api error Throttling Rate exceeded optFn func o iam Options o Retryer retryer NewRetryer retryable SleepTimeSec err i client DeleteRole ctx input optFn Retry Patterns Golang GenericsThe above Options Retryer follows the official retry method and allows you to define your own logic but here is a method that allows you to create your own logic This method uses Go s relatively new generics feature Retryer it is difficult to freely create error messages to be output when an error occurs through retries e g outputting information such as the name of the resource where the error occurred etc I describe here how to make these points even more flexible First define the retry function with generics in a separate file Example implementation retryer generics go T Input type for API Request U Output type for API Response V Options type for API Request type RetryInput T U V any struct Ctx context Context SleepTimeSec int TargetResource string Input T ApiOptions func V ApiCaller func ctx context Context input T optFns func V U error RetryableChecker func error bool T Input type for API Request U Output type for API Response V Options type for API Request func Retry T U V any in RetryInput T U V U error retryCount for output err in ApiCaller in Ctx in Input in ApiOptions if err nil return output nil if in RetryableChecker err retryCount if err waitForRetry in Ctx retryCount in SleepTimeSec in TargetResource err err nil return nil err continue return nil err func waitForRetry ctx context Context retryCount int sleepTimeSec int targetResource string err error error if retryCount gt MaxRetryCount errorDetail err Error nRetryCount strconv Itoa MaxRetryCount over but failed to delete return fmt Errorf RetryCountOverError v v targetResource errorDetail select case lt ctx Done return ctx Err case lt time After getRandomSleepTime sleepTimeSec return nil func getRandomSleepTime sleepTimeSec int time Duration rand Seed time Now UnixNano waitTime if sleepTimeSec gt waitTime rand Intn sleepTimeSec return time Duration waitTime time Second Here is the explanation Define a function that performs a retry called Retry with the type RetryInput as input First as the type T U V any used for the RetryInput generics the caller should pass iam DeleteRoleInput for T iam DeleteRoleOutput for U and iam Options for V ApiCaller is the actual SDK function itself ex iam DeleteRole RetriableChecker is a function that defines the logic to determine when to retry T Input type for API Request U Output type for API Response V Options type for API Request type RetryInput T U V any struct Ctx context Context SleepTimeSec int TargetResource string Input T ApiOptions func V ApiCaller func ctx context Context input T optFns func V U error RetryableChecker func error bool T Input type for API Request U Output type for API Response V Options type for API Request func Retry T U V any in RetryInput T U V U error retryCount for output err in ApiCaller in Ctx in Input in ApiOptions if err nil return output nil if in RetryableChecker err retryCount if err waitForRetry in Ctx retryCount in SleepTimeSec in TargetResource err err nil return nil err continue return nil err The waitForRetry function is a process that returns an error that outputs an original error message when the maximum number of retries MaxRetryCount is exceeded Also using the context passed as an argument checks whether the context has been canceled Done each time a retry is performed i e whether some error has occurred in some other process and the program should be terminated abnormally and if it has been canceled it returns ctx Err without executing sleep for the next retry func waitForRetry ctx context Context retryCount int sleepTimeSec int targetResource string err error error if retryCount gt MaxRetryCount errorDetail err Error nRetryCount strconv Itoa MaxRetryCount over but failed to delete return fmt Errorf RetryCountOverError v v targetResource errorDetail select case lt ctx Done return ctx Err case lt time After getRandomSleepTime sleepTimeSec return nil Then with getRandomSleepTime which appears in the above waitForRetry function I write the logic to adjust the sleep time for retries Here I am writing a process that randomly waits Jitter within a specified upper time limit sleepTimeSec func getRandomSleepTime sleepTimeSec int time Duration rand Seed time Now UnixNano waitTime if sleepTimeSec gt waitTime rand Intn sleepTimeSec return time Duration waitTime time Second And here is an example implementation of the caller of this Retry function Example implementation caller iam go input amp iam DeleteRoleInput RoleName roleName retryable func err error bool return strings Contains err Error api error Throttling Rate exceeded err retryer Retry amp retryer RetryInput iam DeleteRoleInput iam DeleteRoleOutput iam Options Ctx ctx SleepTimeSec SleepTimeSec TargetResource roleName Input input ApiCaller i client DeleteRole RetryableChecker retryable The feature of this method is that by using generics it is possible to implement retry processing with a generic type relationship guarantee by combining input output and options types even though it is a function created by the user However if there is no particular reason I think it would be better to use Options Retryer which is officially provided FinallySeveral retry patterns using AWS SDK for Go V were presented In particular Retryer is not familiar to some of you so please take this opportunity to use it 2023-08-22 06:45:30
海外TECH DEV Community Learn How to Boost Web Development with Vite.js - A Step-by-Step Guide https://dev.to/me_janki/learn-how-to-boost-web-development-with-vitejs-a-step-by-step-guide-50l2 Learn How to Boost Web Development with Vite js A Step by Step Guide IntroductionVite js is a lightning fast build tool that focuses on providing a swift development experience With its unique approach to build processes Vite js eliminates the need for time consuming bundling making development and testing cycles quicker than ever before What is Vite js Vite js is a cutting edge build tool and development server that significantly accelerates the development process It harnesses the power of native ES modules to provide an ultra fast hot module replacement HMR experience This means that changes to your code are reflected in the browser almost instantly without the need for a full page reload Setting Up Vite jsTo begin using Vite js in your projects you ll first need to ensure you have Node js installed Node js is a prerequisite for Vite js as it powers the build processes Once Node js is installed you can create a new Vite js project using the following steps Open your terminal and navigate to the desired directory for your project Run the command npm init vite latest my vite project Follow the prompts to set up your project name framework e g Vue js and other options Once the project is created navigate into the project directory using cd my vite project Install dependencies using npm install or yarn install Exploring Vite js Project StructureWhen you navigate into your Vite js project you ll notice a well organized project structure The main files and folders include node modules This folder houses the project s dependencies src The heart of your project containing the source code public Static assets like HTML files and images reside here package json The configuration file for your project Development Server with Vite jsRunning a local development server is a breeze with Vite js Simply use the command npm run dev or yarn dev within your project directory This starts the development server and allows you to preview your application in your browser Any changes you make to your code will trigger HMR updating the browser without requiring a manual refresh Creating Components in Vite jsComponents are building blocks of web applications With Vite js creating components is straightforward You can generate a new component by following these steps Navigate to the src folder in your project Create a new vue file for your component e g MyComponent vue Define your component s template script and styles using the single file component syntax Managing CSS in Vite jsVite js supports various CSS pre processors like Sass Less and Stylus out of the box To add styles to your project Create a new CSS file in the src directory e g styles css Import the CSS file into your component using import styles css Integrating PluginsVite js allows seamless integration of plugins to extend its functionality To integrate a plugin Install the desired plugin using npm or yarn Configure the plugin in your project s vite config js file Optimizing PerformanceVite js shines in terms of performance optimization It leverages efficient code splitting and lazy loading to ensure only necessary code is loaded reducing initial load times Working with Vue js in Vite jsVite js is perfectly suited for Vue js projects To incorporate Vue js Install the Vue js dependency using npm or yarn Create a new Vue component and use it within your application Handling AssetsAssets like images fonts and icons are crucial for web projects Vite js simplifies asset management Place your assets in the public folder Reference assets in your code using relative paths Code Splitting with Vite jsCode splitting is essential for efficient loading Vite js automatically analyzes your code and splits it into smaller chunks that are loaded on demand Building for ProductionTo build your Vite js project for production use the command npm run build or yarn build This generates optimized and minified assets ready for deployment Deployment OptionsVite js offers flexibility in deployment Hosting platforms like Netlify Vercel or GitHub Pages Server environments using Node js or other server solutions Compatibility and Browser SupportVite js ensures compatibility with modern browsers including Chrome Firefox Safari and Edge It leverages native ES modules for optimal performance Debugging TechniquesDebugging in Vite js is made easy by leveraging browser developer tools You can set breakpoints inspect variables and analyze network requests Community and ResourcesThe Vite js community is active and vibrant Engage with other developers on forums GitHub repositories and social media Additionally there are plenty of tutorials documentation and videos to enhance your learning experience Advantages of Vite jsVite js brings several advantages to the table Lightning fast development cycles Immediate updates through HMR Simplified build processes Efficient code splitting and lazy loading Extensible through plugins Challenges and How to Overcome ThemWhile Vite js offers numerous benefits developers might face challenges like Compatibility issues with older browsers Learning curve for new users Plugin compatibility and customization hurdles To overcome these challenges stay updated with the latest releases refer to documentation and actively participate in the community Future of Vite jsThe future of Vite js looks promising With ongoing developments and community support the tool is likely to evolve with even more powerful features and improved performance FAQs about Vite jsIs Vite js suitable for large scale applications Yes Vite js is well suited for large scale applications due to its efficient code splitting and lazy loading capabilities Can I use Vite js with frameworks other than Vue js Absolutely while Vite js integrates seamlessly with Vue js it can also be used with React or other JavaScript frameworks Does Vite js support server side rendering SSR Vite js primarily focuses on client side rendering CSR but there are workarounds to enable SSR using plugins What s the difference between Vite js and webpack Vite js excels in development speed and HMR while webpack is more mature and suitable for complex build configurations How can I contribute to the Vite js project You can contribute by submitting bug reports feature requests or even by working on the project s source code on GitHub Is Vite js suitable for beginners Yes Vite js can be a great choice for beginners due to its simplicity and ease of use How to Install Vite js on your computer Installing Vite js is a straightforward process After setting up Node js open your terminal navigate to your project folder and use the command npm install g create vite This global installation command allows you to create Vite js projects easily using create vite followed by the project name For local installations navigate to your project directory and run npm install vite This ensures that Vite js is ready for use in your project ConclusionIncorporating Vite js into your web development projects can significantly enhance your workflow and productivity With its remarkable speed and developer friendly features Vite js empowers developers to build modern and efficient web applications By following the steps outlined in this tutorial you ll be well equipped to leverage the power of Vite js in your projects bringing your web development journey to new heights 2023-08-22 06:20:24
海外TECH DEV Community Scratch is Addictive: How to get rid of your Scratch addiction https://dev.to/alteca/scratch-is-addictive-how-to-get-rid-of-your-scratch-addiction-28cg Scratch is Addictive How to get rid of your Scratch addiction IntroYou probably all know scratch but for those who don t Scratch is an online platform for kids to learn how to code but the truth about it is it can also be very addictive While I was still a full time scratcher I was also sucked into this hole but managed to get out of it In this article I will share how Scratch can be addictive and how to overcome your addiction if you notice something unusual about your behavior How do you become addicted At launch Scratch was a playground for anyone who didn t know how to code to create great games without writing code At first kids were actually learning coding and that was great for Scratch and the kids But everything changed when Scratch added the community features because they ultimately wanted to attract otherwise not attracted users to the platform Loves and FavoritesStarting with loves and favorites this is one of the key drivers of Scratch addiction People want to be famous this is what drives the addiction to Twitter Instagram Facebook Snapchat and Tiktok Loves and Favorites have now lost their previous glory now people are manipulated and pop ups telling them to Love Fav and follow are everywhere The Projects themselves may be good but the ways people promote these projects are just not appropriate Games are the most bloated because of this Some like to make a script to make the player get an upgrade when you click on the love and fav buttons tricking them to love and fav Some geeks have even found a way to let the player follow their account for a reward in a game Something else to point out is that so many games are bloated with this that even projects on the trending page pick up these features though they are made by famous scratchers who can get followers by quite literally just publishing a project CommentsComments in scratch have now become very toxic and rude A few months ago someone was asking me to ff though just by tracking who I follow it is easy to devise that I don t do ff Also they write nasty things like All of this was copied from someone else and only put together by you What these people don t know though is that programming and Scratch are both based on stealing code adding your spin onto it and saying that you made it The same scripts are used largely not because the person who made them was lame and didn t want to make his own But because these scripts have been so perfected over the years that they to put it simply are the best Scratch is also Scratch and the name was chosen exactly because the Scratch Team wanted users to innovate already existing things They say that they chose their name because DJs take discs and then scratch them to make the music sound different My point here is that no matter what the comments tell you your project can only be judged by you and you alone If you think it s good enough then move on to something else but if you think that it needs improvement continue fine tuning your project until you think it s good enough for you to move on FollowsFollows are usually the consequences of loves and favs there are many strategies to make someone follow you one of which is Follow for Follow This strategy is so old that now nobody can rely on it so they innovate For example I found a strategy I called Liking what you do here is you Love a few projects of the person you re trying to make to follow you You type a few friendly comments even though the projects themselves may be trash and then you wait After a while like two days the person will follow you with a chance which is insane There are countless amounts of follow strategies used by Scratchers but they don t differentiate between a real engaged follower and a follower that will never come back to your profile Followers at first seem to be people who like you but then you dread more and you adopt the most outrageous of strategies to get more StudiosLoves and Favs and Follows are the main reason you become addicted to Scratch but what takes this a step further are Studios For those who aren t familiar studios are groups of projects with a certain group of people who can curate the studio Politics in studios are brutal you can be demoted anytime and the only safe person is the host Scratch studios used to be friendly places with cooperation and everything you would want in a studio Now studios are just spam pure spam Most of the projects in studios are very low quality but get loves and favs Many people are promoted to curate studios not because they have good projects or would help others no they are promoted to make the studio grow faster and get featured so that it can grow even faster than before Many scratchers have more than projects but most of these users aren t experienced and are very low quality When someone like that is promoted then they add all their projects to the studio making the studio grow fasterWhat people usually do is spam their project into a few hundred studios and watch it gain popularity even though it is complete trash or not Not every project in a studio is bad but the good and quality projects just drown in the sea of low quality cheap projects How to Stop Being Addicted to ScratchSo now that we know that Scratch can be very addictive you have to somehow get out of that addiction well you re in luck because in this part of the article I ll be sharing how I overcame my addiction to Scratch and maintained a healthy relationship with the website How many people on scratch are addicted During my study of my studio I devised that of non school Scratch accounts are addicted to Scratch And since there are also student accounts that we have to take into account one th of the Scratch userbase or is addicted to Scratch This results in a mind blowing addicted accounts When do I Know I m AddictedIf of the following statements are true for you then you are probably spending too much time on Scratch addicted You waste time commenting on projects profiles or studiosYou forget about real life and think about Scratch all the timeYou dread becoming famous on Scratch so badly that you want to do it by any meansYou waste your time by loving and favoriting other people s projectsYou don t spend most of the time in the scratch editor but on the websiteYou want your project to be on the trending page and work only because of thisYou spam everyone with ff requestsYou promote your projects by spamming studios and comment feeds What can You do So now What can you do about all this How can you get rid of your Scratch addiction I know you won t like the thing I am about to say and I understand why but face it you must quit Scratch for a month no not for a day not for a week but for a month The truth is that when I was addicted I started doing HTML and CSS and making my website so I completely forgot that Scratch even existed while everyone was still asking me for my Scratch profile which I won t share here It is crucial for you to focus on something else when you quit Scratch if you think that you are ready to learn HTML and CSS How to make websites go on and do that but what your hobby will be has to make you forget about your scratch followers who will be roasting you for not posting something every day Also check out the free HTML course on codecademy How to ACTUALLY Become FamousFirst of all after you ve quit Scratch for a month ask yourself if you actually want to become famous on Scratch or if you want to continue with another language or another hobby altogether If you want to keep doing Scratch keep in mind that you don t want to become addicted again So how do you really become famous on Scratch It s actually very simple value quality create quality projects and the followers will eventually come put your project into a couple of studios and the views and followers will come themselves if the project you made is valuable But what if you want to be the next CrystalKeeper Chipmnk Will Wam or Griffpatch you have a long journey ahead of you because all of these people behind the scenes are software developers that work in big tech companies They can create stunning projects only because they know other more powerful programming languages like Java JavaScript and Python If you really have decided to become the next Guru on Scratch then you should learn at least one real programming language like JavaScript I found this JavaScript course very useful You can also learn Java and Python on codecademy com My StoryNow I will share my own story with anyone still eager to read along this far Decades back in this random bloke of a kid made a scratch account by the name of MatveiCephei and started making scratch projects most of them were bad but there was one that was good it was called Platformer sadly a version was never developed and released due to technical difficulties that the developer faced during the development and all progress was abandoned After releasing the version the developers realized that you can stuff the project into like studios for it to become noticed so the dev did exactly that in a day or two the project skyrocketed alongside two other projects First views then then then and then the growth slowed down but the project still managed to get to and until now even The project is my best project overall on that account so don t think it gained popularity only because I marketed it well but this demonstrated to me how well marketing can pay out I kind of forgot though that this works well only for quality projects but other games don t get this kind of popularity with studio promotion I was starting to make two other games that were a ball roll game and a generic platformer Then happened the best event of my life or so I thought someone followed me Back then this was a very big event for me and so I wanted more so I followed myself and let my mom follow me too The other followers came shortly after seeing that people wanted to follow me then I started releasing more games dumping them into even more studios and people came slowly but surely Now that I was addicted I wanted the maximum number of followers possible so I stopped making projects and used the technique described as Liking earlier in the article I attracted a few followers this way but fewer than if I would continue to make projects Finally in February I quit Scratch since I had started my website and little did I know that it would take me half a year to make in pure code A website builder would ve been faster but the customizability wouldn t be there ConclusionSo this is how I let go of my addiction to scratch and I hope with the help of this article you will too In conclusion you can still use Scratch but make sure that your relationship with Scratch remains healthy Thanks for reading 2023-08-22 06:07:33
海外TECH DEV Community Differences Between ASP.NET and ASP.NET Core - ASP.NET vs ASP.NET Core https://dev.to/ifourtechnolab/differences-between-aspnet-and-aspnet-core-aspnet-vs-aspnet-core-1pc0 Differences Between ASP NET and ASP NET Core ASP NET vs ASP NET Core What is ASP NET ASP NET is a fundamental web development platform used to create websites applications and web services It is the integration of HTML CSS and JavaScript Originally ASP net was released in The first version of Asp Net deployed was The Recent Version of Asp Net is Asp Net works on HTTP Hypertext Transfer Protocol and uses the HTTP commands and policies to set a browser to server bilateral communication ASP NET is a part of the Microsoft NET Framework The following image shows the component stack ASP NET provides three development styles for creating web applications Web FormsASP NET MVCASP NET Web Pages Read More What To Choose For Server side Apps NET Core Or NET FrameworkWeb Forms ASP NET web forms extend the event driven model of interaction to web applications It is used to develop an application with data access and also provides server side and event to create an application Asp Net MVC The ASP NET MVC web development framework employs the MVC design pattern Unlike ASP NET where the view is predetermined NET MVC separates app functionality view data and model data It enables you to use critical features like URL authorization Windows and form authentication data caching output management state management configuration system and many more Asp Net Web Pages It is used to create dynamic web pages It combines server code with HTML in a fast way The following table illustrates each development model Sources The ASP NET application code can be written in any of the following languages C VB NetJ Looking to hire NET developer for your next project ASP NET Architecture and its ComponentsASP NET basic architecture is shown below This NET framework has the following key components Language A NET Framework is a variety of programming languages including VB NET and C Library The NET Framework is a set of a standard class library of reusable classes interfaces and value types for ASP NET development process and system functionalityCommon Language Runtime CLR The CLR is used to perform code activities Activities include exception handling and garbage collection mostly What Is ASP NET Core Asp net Core is a new version of Asp net released by Microsoft It is an open source platform used to develop a web framework and can be executed with different browsers like Windows Mac or Linux ASP Net Core is a new version of asp net It is a free open source that can run on different OS like Mac Windows and Linux It was originally launched as ASP NET but later it was renamed to ASP NET Core and still with the same name ASP NET Core is a cloud based cross platform framework to build web apps on Windows Mac and Linux including the MVC framework It is a combination of MVC and WEB API in a single web programming framework Asp Net Core is a cloud based cross platform framework to build web apps on Windows Mac and Linux including the MVC framework It is a combination of MVC and WEB API in a single web programming framework Turn your vision into reality with the best ASP NET Web Development Company Major Benefits of ASP NET Core Asp Net core is a much leaner and modular framework because of multiple architecturesAsp Net Core is an open source framework Easy to build cross platform Asp net apps on Windows Mac and Linux The configuration is a cloud ready environment Ability to host on a Kestralb IISc HTTP sysd Nginxe Apachef Docker ASP NET Core Version History Difference Between Asp Net VS Asp Net CoreNow that you are perfectly aware of the key distinctions between ASP NET Core vs ASP NET there are certain questions that many experts still get confused about Let s go through them Is NET Core and ASP NET Core the same Many individuals get puzzled when they discover about Net Core vs Asp Net Core Even though they seem similar but there is a small yet critical difference between them ASP NET Core is a web specific framework used for API and web app development It is simply implemented on top of NET CORE While NET Core is a general purpose programming framework for app development Difference between NET vs NET CoreAnother difference where individuals get confused is NET vs NET Core NET framework is an open source and leading modern web and app development platform with impeccable support for cross platform compatibility while NET CORE is an upgraded version of ASP NET framework Another difference where individuals get confused is NET vs NET Core Understanding the differences between ASP NET vs NET Core and ASP NET Core vs NET Core is essential especially when you try to pick NET as your career ASP NET development has established itself as a standard in the world of cutting edge technologies convincing clients to embrace it for commercial efforts ASP NET framework has gained new levels of flexibility and increased performance with its newest foundation NET Core while remaining a tried and true framework and a cornerstone for top notch web app development Let s delve into the key disparities between these two frameworks NET vs ASP NET Core Key Features of ASP NET Framework ASP NET is a rich ecosystem for custom software development offering WebForm features and MVC architecture support Although this framework provides you with such amazing features it also has the limitation of being supported by just the Windows platform However the newest version of the ASP NET framework NET Core has cross platform compatibility making NET even more secure This is the most important difference between asp net and asp net core that everyone should be aware of Advantages of ASP NET Core Over ASP NET Enhanced modularity ASP NET Core helps you with enhanced modularity that makes developers easily use the components they require Cross platform support ASP NET CORE is open source in nature and offers you amazing features What makes it even more interesting is its cross platform compatibility support This allows developers to build projects of various requirements scenarios Lightweight and high performance The platform is lightweight and known for delivering high performance This platform helps you with seamless speed and scalability for your business application Remarkable security ASP NET Core offers both built in and third party identity providers to manage authentication You may enhance project security using CORS management HTTPS enforcement app secrets and so on ConclusionIn conclusion learning the key differences between ASP NET and ASP NET Core is essential to make effective decisions during NET web development Of course these two frameworks belong to the so called ASP NET ecosystem and have similar goals of creating robust and dynamic web applications they exhibit distinct features catering to different development scenarios Ultimately the choice between NET and NET Core hinges on project requirements technical constraints and long term goals Evaluating factors such as platform compatibility performance demands development team expertise and deployment environment will guide the decision making process As the technology landscape continues to evolve both frameworks will play distinct roles ensuring that developers have the tools they need to build powerful and responsive web applications 2023-08-22 06:06:21
海外TECH DEV Community Walking Boot https://dev.to/dimple031/walking-boot-38oc walking 2023-08-22 06:05:49
海外TECH DEV Community Font-size slider https://dev.to/preetsuthar17/font-size-slider-5kf Font size slider IntroductionHere what I when i said font size font size slider Well It basically means that we create a input with type of range and give it some magic of javascript to make that slider adjust the font size property in CSSLive exampleWhen we change value of slider it also changes value of font size in css for the specified div Let s get startedFirst of in your index html file we write the structure code for slider and the the text of which we want the size to change when slider takes input index html lt div class slider container gt lt label for font size slider gt Adjust font Size lt label gt lt input type range id font size slider min max value gt lt div gt lt div class display text id display text gt Here what I when i said font size font size slider Well It basically means that we create a input with type of range and give it some magic of javascript to make that slider adjust the font size property in CSS lt div gt This is most basic code for stucture of slider and para Here in the lt input gt we gave the type of input range so we get the slider and in attr we have min and max values and also we gave default value of slider which is So whenever the page is opened that stays as default font sizeNow let s give it bit of css to make everything in center style css slider container display flex padding top rem justify content center align items center display text text align center padding top rem Now it s time for magic of javaScript Logic Here is basic logic what we want is to get the value of slider and we want to give the slider value to font size value in CSS which means slider value fontSize correct yeah Now to do this let s fetch the value of slider first This is out javascript codeconst fontSizeSlider document getElementById font size slider const displayText document getElementById display text We target the slider by its ID we gave in HTML and we also target the text of which size we want to be changed lt label for font size slider gt Adjust font Size lt label gt lt div class display text id display text gt Here what I when i said font size font size slider Well It basically means that we create a input with type of range and give it some magic of javascript to make that slider adjust the font size property in CSS lt div gt We got the element it self Now to get the value of range slider we need to use eventListener in JavaScriptfontSizeSlider addEventListener input gt Here in this code we use an eventListener to check when the input slider has any change and if yes then we fetch the value of change in input slider const fontSize fontSizeSlider value Now we got the value of range input The last step is to set the value of slider as value of FontSize in CSS displayText style fontSize fontSize px And yeah here we are done Your JavaScript code should look something like this const fontSizeSlider document getElementById font size slider const displayText document getElementById display text fontSizeSlider addEventListener input gt const fontSize fontSizeSlider value displayText style fontSize fontSize px So that s how we easily created Font Size Adjusting slider using HTML and JavaScript We can also achieve this functionality in React but code will be different because we ll need to make use of useSate to set the font size and all Let me know in the comments if you want the article for same functionality but using reactjs That s for this article Thanks for reading 2023-08-22 06:05:36
海外TECH DEV Community How to pick the perfect Domain Name? https://dev.to/alteca/how-to-pick-the-perfect-domain-name-4mo3 How to pick the perfect Domain Name If you re into websites and web development you probably know that every website needs something to cover up its IP address a domain name But how exactly do you pick one There are so many most of those which you want are already taken and there are also many variable domain extensions to choose from This may be a bit overwhelming at the start so I will explain here in a simple and intuitive tutorial how to choose the perfect domain name for your website Think about your NicheThink about what the Niche of your website is going to be is it tech fashion or perhaps cooking Think about what type of website it will be a blog a business website or an ecommerce online shop If you already have a niche planned Great Then you re free to proceed to the next step BrainstormAt the first step of the process just brainstorm some ideas don t think about the availability or price Perhaps an awesome idea will strike you in the middle of your shower or lunch break You may also be struck when you wake up in the middle of the night Wherever the idea strikes you don t wait write it down or you ll maybe forget it Brainstorm and come up with at least five domains that you really like because most of them will be taken and only one may be free Sometimes even all five domains are taken so this step may take a while TryAfter brainstorming some domains you should go to a domain registrar website like namecheap com and check the availability of your desired domains If your top pick was already taken don t stress this happened to me too and to many other website creators It is common that very branded domains for example www pineapplejuice com are already taken while unknown and SEO optimized domains like www warbrokergaragelondon com aren t taken It doesn t have to be comNow it is time to choose your domain extension there are many net org tech store shop and so on I m here to say that your SEO won t be impacted by having another domain extension what will matter though is that com domains are more memorable for users themselves but judging by the fact that many websites with very absurd domain extensions still get millions of visits every month This happens because the users have by then memorized the domain well enough and don t care about domain extensions the users are there for the content not the domain extension if the content is good users will come anyway If you still don t believe me here are some examples rytr mescratch mit educopy aidev toAnd are these websites dying Absolutely not all of them are making waves in the tech industry and are growing steadily I know that a com domain is desirable but if you don t get one it s fine judging the examples here you can absolutely become the next big thing in your industry Which Domain Registrar to use The Places where you buy your domain are called domain registrars they can be of different quality all over the internet A good domain registrar usually has built in domain privacy protection low prices and good customer service Good domain Registrars Namecheap is a great domain registrar for those starting out and offers relatively cheap prices compared to the others out there Google Domains is another outstanding domain registrar which is very reliable and will result in lower costs than Namecheap which offer a discount at the beginning but bump the price up afterwards Cloudflare is also another great tool with the lowest prices found anywhere but this registrar has some work for you because you have to do everything manually and yourself Bad Domain RegistrarsDomain com is a bad domain registrar due to high prices upsells and most importantly a separate fee for domain privacy protection making up for an astronomical yearly fee GoDaddy is also another example of a bad domain registrar because it is pricy and gives you so many useless upsells like premium domain privacy protection Also if you reach out to them then they ll respond but only write something about their other products Trust me and don t use these domain registrars and go with the ones listed on the other list Many people have had so much trouble with Godaddy and domain com and don t let the high Google rankings fool you these companies have paid millions so that they would be the top pick on Google ConclusionThis article might have helped you a lot with choosing your domain name but regardless of the domain you choose you will have the chance to become the next big thing on the internet I hope this article helped you with choosing your domain so thanks for reading 2023-08-22 06:04:31
海外TECH Engadget X plans to remove news headlines and text in shared articles https://www.engadget.com/x-plans-to-remove-news-headlines-and-text-in-shared-articles-063101122.html?src=rss X plans to remove news headlines and text in shared articlesThose who follow publications like Engadget on X the social network formerly known as Twitter will know that the articles they share on the platform appear with a text snippet an image and a sometimes truncated version of their headline That may not be the case in the near future According to Fortune the company is planning to implement major changes to the way shared articles appear on a tweet or a post as it s now called by removing their text elements and leaving just their lead images with an overlay of the URL In a post about the update Elon Musk has confirmed that X is working on the new format and that the idea came from him directly This is coming from me directly Will greatly improve the esthetics ーElon Musk elonmusk August That corroborates Fortune s report which says Musk is pushing for the new format It also says that the change going to happen even though X ran it by advertisers who didn t like it The company s main reason for removing the text in shared tweets is apparently to make posts look less compact and to fit more of them in the portion of the timeline that appears on screen Musk also thinks it could help lessen instances of clickbait shared on the website As the publication explains X s current format typically cuts part of the headline in shared articles which works to the advantage of websites that write clickbait headlines and posts nbsp It s also very much possible that X is implementing this change to encourage not just news publications but also individuals to write meatier posts on the website itself After all they will have to add context to the URL they share in order to get readers to click through the lead image Musk has been encouraging users to post long form pieces directly on the platform and allows Blue subscribers to write as many as characters in a single post More recently Musk tweeted that journalists who want quot more freedom to write and a higher income quot should publish directly on X As toMac notes though X recently had some issues paying creators part of its ad revenue sharing program because the number of interested users far exceeded its expectations nbsp This article originally appeared on Engadget at 2023-08-22 06:31:01
金融 JPX マーケットニュース [東証]新規上場の承認(グロース市場):(株)AVILEN https://www.jpx.co.jp/listing/stocks/new/index.html avilen 2023-08-22 15:30:00
金融 JPX マーケットニュース [東証]新規上場の承認(グロース市場):(株)ネットスターズ https://www.jpx.co.jp/listing/stocks/new/index.html 新規上場 2023-08-22 15:30:00
金融 JPX マーケットニュース [東証]新規上場の承認(スタンダード市場):(株)オートサーバー https://www.jpx.co.jp/listing/stocks/new/index.html 新規上場 2023-08-22 15:30:00
金融 JPX マーケットニュース [東証]グロース市場からプライム市場への変更:(株)M&A総研ホールディングス https://www.jpx.co.jp/listing/stocks/transfers/index.html 総研 2023-08-22 15:30:00
金融 JPX マーケットニュース [東証]グロース市場からプライム市場への変更:(株)FPパートナー https://www.jpx.co.jp/listing/stocks/transfers/index.html 東証 2023-08-22 15:30:00
ニュース BBC News - Home Lucy Letby: NHS managers must be held to account, whistleblower doctor says https://www.bbc.co.uk/news/uk-66578698?at_medium=RSS&at_campaign=KARANGA hospital 2023-08-22 06:36:30
ニュース BBC News - Home Former Thai prime minister ending 15 years of exile https://www.bbc.co.uk/news/world-asia-66577725?at_medium=RSS&at_campaign=KARANGA divisive 2023-08-22 06:10:55
ニュース BBC News - Home Two Ukrainian drones downed over Moscow region, says Russia https://www.bbc.co.uk/news/world-europe-66576996?at_medium=RSS&at_campaign=KARANGA ukrainian 2023-08-22 06:54:33
マーケティング MarkeZine オトナル、アドビのポッドキャスト新シリーズを制作 マーケターの日々の気づきや課題を対談形式で配信 http://markezine.jp/article/detail/43158 課題 2023-08-22 15:30:00
IT 週刊アスキー アクションRPG『ザナドゥ(X1版)』が「プロジェクトEGG」で配信開始! https://weekly.ascii.jp/elem/000/004/151/4151116/ 配信サービス 2023-08-22 15:40:00
IT 週刊アスキー 『Lies of P』gamescom 2023向け最新トレーラーを公開!「特製USBメモリ」のプレゼントも決定 https://weekly.ascii.jp/elem/000/004/151/4151068/ games 2023-08-22 15:25:00
IT 週刊アスキー WordPress専用クラウドサーバー「ウェブスピード ライトプラン」提供開始 https://weekly.ascii.jp/elem/000/004/151/4151162/ wordpress 2023-08-22 15:30:00
IT 週刊アスキー 「チロルチョコ<ミルク>」がケーキに!! かっぱ寿司の限定スイーツ https://weekly.ascii.jp/elem/000/004/150/4150913/ 限定スイーツ 2023-08-22 15:55:00
IT 週刊アスキー すき家「いわしつみれ汁」本日スタート! しじみ汁は終売に https://weekly.ascii.jp/elem/000/004/150/4150947/ 開始 2023-08-22 15:30:00
IT 週刊アスキー 北海道の名店「とん田」監修の焼豚丼も! ファミマ「めちゃうま丼」順次発売 https://weekly.ascii.jp/elem/000/004/151/4151013/ 麻婆豆腐 2023-08-22 15:10:00
マーケティング AdverTimes 6年目を迎えた『おくる福島民報』、今年のメッセージは「帰っておいで」 https://www.advertimes.com/20230822/article431038/ 帰っておいで 2023-08-22 06:32:09
マーケティング AdverTimes 「もしも企業のSNSアカウント運用を任されたら」押さえておくべき10のこと https://www.advertimes.com/20230822/article430963/ 企業イメージ 2023-08-22 06:21:22

コメント

このブログの人気の投稿

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