投稿時間:2023-07-03 19:28:33 RSSフィード2023-07-03 19:00 分まとめ(32件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] 新作アニメ「機動戦士ガンダム 復讐のレクイエム」制作へ UE5を利用 一年戦争中の欧州戦線を描く https://www.itmedia.co.jp/news/articles/2307/03/news154.html engine 2023-07-03 18:53:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders セキュリティリスクを可視化する「Trend Vision One」が生成系AIを搭載、アラートや攻撃内容を解説 | IT Leaders https://it.impress.co.jp/articles/-/25042 セキュリティリスクを可視化する「TrendVisionOne」が生成系AIを搭載、アラートや攻撃内容を解説ITLeadersトレンドマイクロは年月日、サイバーセキュリティ基盤ソフトウェア「TrendVisionOne」に生成系AIを搭載した。 2023-07-03 18:36:00
Google Official Google Blog Leonardo da Vinci: Inside a genius mind https://blog.google/outreach-initiatives/arts-culture/leonardo-da-vinci-inside-a-genius-mind/ colorful 2023-07-03 09:30:00
python Pythonタグが付けられた新着投稿 - Qiita 【Python】スネークケースの文字列をキャメルケースの文字列にする方法を2種類紹介 (+モデルクラスにアクセスする方法) https://qiita.com/Ryo-0131/items/f46557a7f4bdc2834f90 companycode 2023-07-03 18:53:19
python Pythonタグが付けられた新着投稿 - Qiita 【Kaggle学習日記】第一回 Titanicコンペ https://qiita.com/yoshiosaru13/items/eb9154a2c2821a6e87a0 kaggle 2023-07-03 18:43:39
python Pythonタグが付けられた新着投稿 - Qiita python try except https://qiita.com/aizwellenstan/items/1e3426c3666f3331c1b5 format 2023-07-03 18:33:58
python Pythonタグが付けられた新着投稿 - Qiita ChatGPで月の満ち欠けプログラム https://qiita.com/Sand_m/items/d6859f7b5ed5d11a2181 chatgp 2023-07-03 18:28:39
js JavaScriptタグが付けられた新着投稿 - Qiita プログラマーへの道 #35 今までの動画の知識でメモ帳アプリを作る #16(プログラミング入門)のメモ https://qiita.com/emioiso/items/69293340d9bc1cd8b8b2 childnodes 2023-07-03 18:06:20
js JavaScriptタグが付けられた新着投稿 - Qiita Top 10 JavaScript Frameworks to Use in 2023 https://qiita.com/techavidus/items/1e24229f7258ad8dd2a2 vital 2023-07-03 18:00:32
golang Goタグが付けられた新着投稿 - Qiita 最近ハマっているGo言語で単体テストを書くまでを整理してみた https://qiita.com/_otakakot_/items/b5b7813fc867d7939a26 golangmocku 2023-07-03 18:57:22
技術ブログ Developers.IO 営業統括本部AWS営業部にジョインしました佐藤です! https://dev.classmethod.jp/articles/join-satok/ 色々 2023-07-03 09:37:53
技術ブログ Developers.IO AWS事業本部 オペレーション部にジョインしました武田です https://dev.classmethod.jp/articles/to-takeda-joined-classmethod/ 北海道の観光地 2023-07-03 09:36:51
技術ブログ Developers.IO 営業統括本部 AWS営業部にジョインしました八木です!! https://dev.classmethod.jp/articles/join-yagis/ 自己紹介 2023-07-03 09:31:49
技術ブログ Developers.IO [アップデート] Amazon QuickSight のレポートでスケジュール設定オプションが追加され、より柔軟にスケジュール設定出来るようになりました https://dev.classmethod.jp/articles/quicksight-report-schedule/ amazonquicksight 2023-07-03 09:20:54
技術ブログ Developers.IO クラスメソッドコリアにジョインしました名越結以です! https://dev.classmethod.jp/articles/join-nagoshiy/ 株式会社 2023-07-03 09:12:38
技術ブログ Developers.IO AWS事業本部 コンサルティング部にジョインしました有福です! https://dev.classmethod.jp/articles/aripon-joined-classmethod/ 自己紹介 2023-07-03 09:05:56
技術ブログ Developers.IO ChromaticをFigmaとGitHubと連携させてUI実装の品質向上 https://dev.classmethod.jp/articles/chromatic-figma-github/ chromatic 2023-07-03 09:04:28
海外TECH DEV Community 12-Factor App Methodology To Your Flutter Application https://dev.to/yatendra2001/12-factor-app-methodology-to-your-flutter-application-p31 Factor App Methodology To Your Flutter ApplicationIf you re developing a Flutter application and you re striving for robustness scalability and maintainability you re in the right place The Factor App methodology though initially designed for web apps or SaaS applications offers a set of best practices that many developers find invaluable for mobile app development as well Each of the twelve factors can serve as a guideline to help you avoid common pitfalls and build a better app Let s explore each of them and see how they can apply to a Flutter app Factor CodebaseYour application should have one codebase tracked in revision control with many deploys In the context of Flutter development this means Use a version control system like Git This helps keep track of changes facilitates collaboration and makes it easier to revert changes if needed Each separate service should have its own repository This separation allows for independent scaling and development Different environments such as production staging and development should be managed through configurations This ensures a consistent behavior across all environments Aim for codebase consistency across your team Having a shared understanding of the codebase structure and coding conventions can significantly improve team productivity Factor DependenciesYour Flutter application should explicitly declare and isolate dependencies This means Do not rely on the implicit existence of system wide packages Instead specify all dependencies like Flutter libraries in a pubspec yaml file This makes your app environment agnostic and reduces the risk of discrepancies between different environments Ensure isolation of dependencies to prevent version conflicts This can help you avoid issues arising from different services depending on different versions of the same package Factor ConfigStore your app s config in the environment not in the code This means Any aspect of your application that varies between deployments should be exposed as a configuration that can be read from the environment This could include API endpoints secret keys etc Use Dart s dotenv package to manage these configurations Keep your configs separate for each environment to avoid accidentally using the wrong config Factor Backing ServicesYour Flutter app should treat backing services as attached resources This means Your app should make no distinction between local and third party services For example if you re using a database it should be able to switch between a local SQLite database and a remote Postgres database with just a change in configuration All services are resources that can be attached or detached at any time This makes your app more flexible and allows for easy scaling and replacement of services Factor Build Release RunStrictly separate your build and run stages This means Your build script should transform your codebase into an executable bundle A release should take the build and combine it with the current config The run stage in this case the Flutter runtime runs the app in the execution environment Each stage should be able to operate without dependence on the previous stages This makes your deployment process more robust and makes it easier to identify and fix issues Factor ProcessesExecute your app as one or more stateless processes For a Flutter app this might mean Your app should not rely on saving state between invocations Instead save necessary state to a persistent data store Consider using Flutter s state management solutions like Provider or Riverpod to manage the state of your app effectively Stateless apps are easier to reason about and manage since they don t need to maintain a connection or remember previous interactions Factor Port BindingWhile this factor is more relevant for server side services for a Flutter app it s important to think about how your app communicates with the network Having a specific port for network communication can help with testing and debugging Consider using a mock server for testing network interactions This can help you test how your app behaves under different network conditions Factor ConcurrencyYour app should scale out via the process model i e it should handle multiple users or sessions concurrently For a Flutter app this means Use Flutter s asynchronous capabilities effectively This can help you handle multiple user inputs or network requests at the same time Keep your app responsive no matter how many users you have This includes handling long running tasks without blocking the user interface Use Futures and Streams in Dart to handle asynchronous operations This can help you manage complex asynchronous workflows in a more readable and maintainable way Factor DisposabilityYour app should be disposable i e it should start quickly and shut down gracefully This means Your app should be able to handle being shut down at any moment without losing data This is particularly relevant for mobile apps as users may close your app at any time Fast startup and graceful shutdown are key This makes your app more robust and improves the user experience Consider using persistent local storage like Hive or Shared Preferences for saving state This allows your app to restore its state when it s started again Factor Dev prod ParityKeep your development staging and production environments as similar as possible This means The backing services you use in development should be as close as possible to the ones you use in production This reduces the risk of bugs appearing in production that weren t present in development Use feature flags to test new features in production without impacting all users This can help you get feedback on new features quickly and safely Factor LogsTreat logs as event streams For a Flutter app this means Each process writes its event stream unbuffered to stdout This makes it easy to observe the behavior of your app in real time Use logging packages like logger in Dart to manage logs in a structured way This can make it easier to search and analyze your logs Factor Admin ProcessesRun administrative tasks as one off processes This means Any one off admin tasks like database migrations or data analysis scripts should be run in an environment as close to the production environment as possible Automate these tasks to avoid human error and to make them reproducible Remember these twelve factors are guidelines not strict rules They re designed to help you build better more maintainable apps How you apply them will depend on the specifics of your app and your development and deployment environments Use them as a guide and watch your Flutter app flourish Before we go Thanks for reading If you loved this consider following me Got any doubt or wanna chat React out to me on twitter or linkedin 2023-07-03 09:38:01
海外TECH DEV Community AWS open source newsletter, #163 https://dev.to/aws/aws-open-source-newsletter-163-m0a AWS open source newsletter July rd Instalment Welcome to of the AWS open source newsletter As always we search high and low for the best and latest open source content and I think you will love what we have lined up this week This weeks featured projects include a Cedar authorisation service and demo examples a tool to help you find dangling DNS records a new CLI for those using Amazon ECR an accelerator for observability on AWS a serverless web analytics solution so good that I implemented it myself and several more projects Also featured is content on Redis ActiveMQ OpenSearch AWS SAM Kubernetes Apache Flink Amazon Linux Spring AWS CDK AWS Amplify Steampipe and AWS Lambda Powertools Head over to the Videos section to check out a link for last weeks Build on Live open source and AI and finally check out events that are coming up and put them in your diary Also be sure to check out the events section as there are a few events happening this week FeedbackBefore you dive in however I need your help Please please please take minute to complete this short survey and you will forever have my gratitude Celebrating open source contributorsThe articles and projects shared in this newsletter are only possible thanks to the many contributors in open source I would like to shout out and thank those folks who really do power open source and enable us all to learn and build on top of what they have created So thank you to the following open source heroes Ran Isenberg Bob Tordella Spot Mo Malaka Vacha Shah Benoit Tellier Suraj Narwade Rehan van der Merwe Aniruddha Biyanithat Daniel Aniszkiewicz Jared Evans Chris Fregly and Antje Barth Latest open source projectsThe great thing about open source projects is that you can review the source code If you like the look of these projects make sure you that take a look at the code and if it is useful to you get in touch with the maintainer to provide feedback suggestions or even submit a contribution Toolscedar authorization servicecedar authorization service is a lightweight standalone server developed in Rust that is designed to evaluate and enforce access control policies written in Cedar an open source policy language developed by AWS Creator Daniel Aniszkiewicz adds that whilst there is an official Cedar playground this is a view only mode for the Rust code which means you can t edit the Rust code there This project provides a playground where you can play around with both the Cedar policies and the Rust code Check out Daniels blog post the second in the series Authorization and Cedar A New Way to Manage Permissions Part II that looks at how you might use Cedar in a typical e commerce use case findmytakeoverfindmytakeover is a tool from Aniruddha Biyanithat detects dangling DNS record in you cloud environment It does this by scanning all the DNS zones and the infrastructure present within the configured cloud service provider either in a single account or multiple accounts and finding the DNS record for which the infrastructure behind it does not exist anymore rather than using wordlist It can easily detect and report potential subdomain takeovers that exist Make sure you check out the project README for full details including limitations cdk aws observability acceleratorcdk aws observability accelerator is a set of opinionated modules to help you set up observability for your AWS environments with AWS Native services and AWS managed observability services such as Amazon Managed Service for Prometheus Amazon Managed Grafana AWS Distro for OpenTelemetry ADOT and Amazon CloudWatch It provides curated metrics logs traces collection cloudwatch dashboard alerting rules and Grafana dashboards for your EKS infrastructure Java JMX NGINX based workloads and your custom applications ecrctlecrctl is the latest project from AWS Community Builder Suraj Narwade and one that I think I will most certainly be using a lot Taking inspiration from kubectl ecrctl provides a CLI tool for working with Amazon Elastic Container Registry ECR I guess the only remaining question is how exactly should you pronounce this tool serverless website analyticsserverless website analytics is a fantastic project from AWS Hero Rehan van der Merwe that provides a very feature rich click stream analytics solution that you can easily integrate into your projects I was so impressed I decided to ditch what I was using and switch over to this project so the AWS open source newsletter is now getting its clickstream data using this tool I put together a quick blog post Deploying a serverless web analytics solution for your websites to share my setup but Rehan has put together detailed docs on how you can configure and tailor this to your own needs cloud seedcloud seed is a very minimal alternative to cloud init If you are not familiar with cloud init it is an open source package that bootstraps Linux images in a cloud computing environment cloud seed exists because it is often necessary to provide some seed data to an otherwise ready to run image some values should not be baked into the image due to them varying from server to server It can set the hostname and write files based on directives provided in user data The doc provides additional information as to what you can define OpenAPI AWS DecoratorOpenAPI AWS Decorator this tool from Jared Evans will decorate an Open API v document with specific x amazon OpenAPI syntax The README provides a useful example of how you can get started with this tool Demos Samples Solutions and Workshopsdata science on awsdata science on aws this workshop shows AWS users how to use Amazon SageMaker and other associated services to build train and deploy generative AI models These labs go through data science topics such as data processing at scale model fine tuning real time model deployment and MLOps practices all through a generative AI lens This workshop is based on the O Reilly Book Data Science on AWS from my colleagues Chris Fregly and Antje Barth Essential reading so if you are looking for a book recommendation or something to add to your wish list this might be the one llm hosting containerllm hosting container This repository contains Dockerfile and associated resources for building and hosting containers for large language models specifically the HuggingFace Text Generation Inference TGI container Watch this repo to keep up to date as others are added llm apps workshopllm apps workshop this repository provides the source code for Large Language Model LLM based applications that include inference generating embeddings question answer zero shot and few shot learning prompt engineering retrieval augmented generation RAG and domain adapted fine tuning The repo links to a walk through blog post to help guide you through this Introduction to Terraform on AWSIntroduction to Terraform on AWS this is a new workshop that will help you gain hands on experience in creating and managing AWS resources using Terraform and leverage Terraform best practices AWS and Community blog postsAWS Lambda PowertoolsAWS Hero and regular contributor to this newsletter Ran Isenberg has put together another great post Serverless API Idempotency with AWS Lambda Powertools and CDK In this post Ran helps you get to grips idempotency looking at what it is and why it s essential using a sample serverless orders service to bring it to life Expect plenty of open source goodness with AWS CDK and AWS Lambda Powertools for Python Make sure you check this post out hands on SteampipeSteampipe is an open source CLI to instantly query cloud APIs using SQL In Using Steampipe Relationship Graphs to Navigate Cloud Resources on AWS Spot and Bob Tordella follow up on previous posts this time showing you how you can navigate between resources using the new relationship graph capabilities added to Steampipe AWS Insights dashboards hands on AWS AmplifyAWS Amplify is an open source project that lets frontend web and mobile developers easily build ship and host full stack applications on AWS The AWS Amplify team recently announced a brand new way to recognise and reward the hard work and dedication of our open source community contributors The Amplify Badge Program Mo Malaka has put together more details in his post New Introducing the AWS Amplify Badge Program that looks at what these badges look like and how this will work OpenSearchVacha Shah and Benoit Tellier have put together Improving JSON parsing performance in opensearch java that looks at how Benoit and his team at Linagora contributing to the Apache James project we able to identify and address a performance issue in the OpenSearch Java client using benchmark tools and flame graphs in collaboration with the OpenSearch community Other posts and quick readsAnnouncing watchOS and tvOS Support on AWS Amplify Library for Swift is a hands on guide on how to build an app for the iOS macOS watchOS and tvOS platforms using a single Swift project powered by Amplify Library for Swift hands on Deploy a serverless ML inference endpoint of large language models using FastAPI AWS Lambda and AWS CDK shows you how to easily deploy and run serverless ML inference by exposing your ML model as an endpoint using FastAPI Docker Lambda and Amazon API Gateway and automated using AWS CDK hands on Approach to migrate Spring Cloud microservices applications to Amazon EKS explains how you can migrate microservices from Spring Cloud to Amazon EKS hands on Case StudiesLife s journey to a multi cluster Amazon EKS architecture to improve resiliency looks at how Life improved our resiliency by implementing a multi cluster Amazon EKS architecture Quick updatesApache FlinkCustomers can now use Apache Flink with Amazon Kinesis Data Analytics Studio to perform ad hoc queries to quickly inspect data streams and build and run stream processing applications in minutes Kinesis Data Analytics Studio allows you to query data streams in real time and more easily build and run stream processing applications using standard SQL Python and Scala in an interactive notebook Studio notebooks are powered by Apache Zeppelin and use Apache Flink as the stream processing engine Studio notebooks seamlessly combine these technologies to make advanced analytics on data streams accessible to developers of all skill sets Amazon LinuxSupport for UEFI Secure Boot on Amazon Linux instances is now available Starting with AL customers can now use Secure Boot on Amazon Linux instances to verify the digital signature of all boot components Secure Boot is a feature of UEFI that builds on EC s long standing secure boot process and provides additional defense in depth that helps customers secure software from threats that persist across reboots It ensures that EC instances run authentic software by verifying the digital signature of all boot components and halts the boot process if signature verification fails Starting today customers who want to use this capability on EC can use this capability on Amazon Linux instances Secure boot is supported on all AWS Nitro based AL instances with UEFI capability To get started with secure boot on AL instances see the documentation here AWS Serverless Application Model SAM The AWS Serverless Application Model SAM Command Line Interface CLI announces the launch of remote invoke command which enables developers to quickly invoke their AWS Lambda functions deployed to the AWS cloud The AWS SAM CLI is a developer tool that makes it easier to build test package and deploy serverless applications Customers can now use the SAM CLI to test a Lambda function with a simple command sam remote invoke This command takes an event payload and Lambda logical id as input to invoke the Lambda function then outputs the response It supports multiple invocation modes such as response streaming asynchronous invoke dry run and request response Previously customers had to use AWS Console or AWS CLI to test their Lambda functions With this launch SAM CLI users can use this feature along with sam sync command to speed up the build deploy test iteration loop This feature is available with SAM CLI version ActiveMQAmazon MQ now supports cross region data replication for ActiveMQ brokers on Amazon MQ This feature allows you to build regionally resilient messaging applications using continuous asynchronous message replication from a primary broker to a replica broker in a standby AWS region with a few clicks eliminating the need to use third party tools or custom code to replicate data between regions Cross region data replication enables messages to be replicated across ActiveMQ brokers in different regions with robust monitoring metrics In case of a regional failure you can trigger a failover quickly and confidently from the primary to standby region allowing you to resume operations Cross region data replication pricing consists of cross region data replication charges plus broker instance and storage charges for both brokers Data transfer between the primary AWS Region and a secondary AWS Region is billed based on the data transfer pricing of the applicable AWS Regions RedisAmazon MemoryDB for Redis is now in scope for FedRAMP Moderate in the US East Ohio US East N Virginia US West N California and US West Oregon Regions You can now use MemoryDB to build applications for workloads that are subject to FedRAMP Moderate compliance In addition to achieving FedRAMP Moderate authorization MemoryDB is also HIPAA eligible HITRUST ISO certified SOC and PCI DSS compliant Videos of the weekBuild on Open Source amp AIIf you missed the latest Build on Live event last week fear not The latest instalment was all about open source and machine learning with Falcon and Hugging Face featured Check out the show notes hereBuild on Open SourceFor those unfamiliar with this show Build on Open Source is where we go over this newsletter and then invite special guests to dive deep into their open source project Expect plenty of code demos and hopefully laughs We have put together a playlist so that you can easily access all sixteen of the episodes of the Build on Open Source show Build on Open Source playlist We are currently planning the third series if you have an open source project you want to talk about get in touch and we might be able to feature your project in future episodes of Build on Open Source Events for your diaryIf you are planning any events in either virtual in person or hybrid get in touch as I would love to share details of your event with readers OpenSearchConSeattle September Registration is now open source OpenSearchCon Check out this post from Daryll Swager Registration for OpenSearchCon is now open that provides you with what you can expect and resources you need to help plan your trip CDK Day Online th September Back for the fourth instalment this Community led event is a must attend for anyone working with infrastructure as code using the AWS Cloud Development Kit CDK It is intended to provide learning opportunities for all users of the CDK and related libraries The CFP is open so if you have some ideas for some talks then make sure you check that section out Also this year they are accepting talks in Espanol Woohoo love it Check more at the website CDK Day CortexEvery other Thursday next one th FebruaryThe Cortex community call happens every two weeks on Thursday alternating at UTC and UTC You can check out the GitHub project for more details go to the Community Meetings section The community calls keep a rolling doc of previous meetings so you can catch up on the previous discussions Check the Cortex Community Meetings Notes for more info OpenSearchEvery other Tuesday pm GMTThis regular meet up is for anyone interested in OpenSearch amp Open Distro All skill levels are welcome and they cover and welcome talks on topics including search logging log analytics and data visualisation Sign up to the next session OpenSearch Community Meeting Stay in touch with open source at AWSRemember to check out the Open Source homepage to keep up to date with all our activity in open source by following us on AWSOpen 2023-07-03 09:02:32
海外TECH Engadget Amazon is offering a $5 credit when you buy a $50 eGift card for Prime Day https://www.engadget.com/amazon-is-offering-a-5-credit-when-you-buy-a-50-egift-card-for-prime-day-094827231.html?src=rss Amazon is offering a credit when you buy a eGift card for Prime DayAmazon s Prime Day starts on July th and based on the early access deals we ve seen so far you can expect some exceptional savings Now the retailer is adding a small additional Prime Day bonus with a promo credit if you purchase a Amazon eGift Card for someone special yourself included You ll want to check the lengthy terms amp conditions but the basic idea is this If you purchase a or higher eGift card between today and July th at PST you ll get a promotional code that must be cashed in by August th The main things to note are that it can only be applied to products sold by Amazon com not third parties or any e books and that you won t be refunded the promo credit if you return or cancel that order nbsp If you re good with all that there are already a number of options to use it For example Amazon s Fire HD tablet is or half off the regular price and other Amazon products like its all new Echo Buds and Eero Pro mesh WiFi router carry significant savings Other stellar deals include the Motorola Razr flip phone at off and the Apple AirPods Pro nd generation at off If you really want to max out that promo in terms of percentage you can get Samsung s Pro Plus GB microSD memory card for making it exactly half off nbsp Your Prime Day Shopping Guide See all of our Prime Day coverage Shop the best Prime Day deals on Yahoo Life Follow Engadget for the best Amazon Prime Day tech deals Learn about Prime Day trends on In the Know Hear from Autoblog s car experts on must shop auto related Prime Day deals and find Prime Day sales to shop on AOL handpicked just for you This article originally appeared on Engadget at 2023-07-03 09:49:02
海外科学 NYT > Science A New Kind of Disaster Aid: Pay People Cash, Before Disaster Strikes https://www.nytimes.com/2023/07/03/climate/cash-disaster-relief.html A New Kind of Disaster Aid Pay People Cash Before Disaster StrikesExperiments suggest that sums as low as can help the world s poorest protect themselves and their property in ways they couldn t otherwise 2023-07-03 09:01:15
海外科学 NYT > Science A Blood Test Predicts Pre-eclampsia in Pregnant Women https://www.nytimes.com/2023/07/03/health/pregnancy-preeclampsia-test.html pregnant 2023-07-03 09:00:45
金融 ニッセイ基礎研究所 今週のレポート・コラムまとめ【6/27-7/3発行分】 https://www.nli-research.co.jp/topics_detail1/id=75309?site=nli 2023-07-03 18:33:26
海外ニュース Japan Times latest articles Four injured as explosion hits building in Tokyo’s Shimbashi district https://www.japantimes.co.jp/news/2023/07/03/national/tokyo-shimbashi-explosion/ blast 2023-07-03 18:43:58
海外ニュース Japan Times latest articles As heavy rain pounds Kyushu, evacuation ordered for 360,000 https://www.japantimes.co.jp/news/2023/07/03/national/kyshu-floods-rain-evacuation/ As heavy rain pounds Kyushu evacuation ordered for The Meteorological Agency warned of torrential rain and thunder continuing across the region through around Tuesday noon and called on residents to be on alert 2023-07-03 18:42:18
ニュース BBC News - Home France riots ease as mayors call anti-violence rally https://www.bbc.co.uk/news/world-europe-66084677?at_medium=RSS&at_campaign=KARANGA violence 2023-07-03 09:16:01
ビジネス 不景気.com ディー・ディー・エスに上場廃止決定、内部管理体制不備で - 不景気com https://www.fukeiki.com/2023/07/dds-delisting.html 上場廃止 2023-07-03 09:56:13
マーケティング MarkeZine 広告を見て商品を購入する人は8割超/広告接触の機会は「新聞」が「テレビ」を凌ぐ【ナビット調査】 http://markezine.jp/article/detail/42637 購入 2023-07-03 18:15:00
IT 週刊アスキー わずか3分で利用可! 楽天モバイル、データ通信専用「Rakuten最強プラン」を開始 https://weekly.ascii.jp/elem/000/004/143/4143657/ rakuten 2023-07-03 18:55:00
IT 週刊アスキー 注目の画家、甲斐荘楠音の26年ぶりの回顧展が、東京駅構内の東京ステーションギャラリーで、映画界での活動など全貌を集めて開催 https://weekly.ascii.jp/elem/000/004/143/4143641/ 丸の内北口 2023-07-03 18:40:00
IT 週刊アスキー カプコン×動画クリエイタープロジェクト「Capcom Creators JP(CCJP)」が始動! https://weekly.ascii.jp/elem/000/004/143/4143643/ capcomcreatorsjpccjp 2023-07-03 18:10:00
IT 週刊アスキー GeForce NOW、月額料金を1980円から550円に値下げ https://weekly.ascii.jp/elem/000/004/143/4143646/ geforce 2023-07-03 18:45:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)