投稿時間:2022-07-21 21:29:58 RSSフィード2022-07-21 21:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] KinKi Kids、デビュー25周年でYouTubeチャンネル開設 17万人が生配信視聴 https://www.itmedia.co.jp/business/articles/2207/21/news206.html itmedia 2022-07-21 20:50:00
IT ITmedia 総合記事一覧 [ITmedia News] 動く「AIスーツケース」、空港で実証実験 視覚障害者の移動を支援 https://www.itmedia.co.jp/news/articles/2207/21/news205.html itmedia 2022-07-21 20:27:00
python Pythonタグが付けられた新着投稿 - Qiita Kaggleコンペで出されるタスクと評価指標まとめてみた https://qiita.com/charles_gs/items/96dc8eeea22f3acd01ad rmsem 2022-07-21 20:25:28
技術ブログ Developers.IO Brazeのコミュニティ「Braze Bonfire」への登録&参加方法のご紹介! https://dev.classmethod.jp/articles/braze-bonfire/ braze 2022-07-21 11:20:04
海外TECH DEV Community Continuous Integration with Drone on Kubernetes https://dev.to/kameshsampath/continuous-integration-with-drone-on-kubernetes-1jil Continuous Integration with Drone on Kubernetes OverviewOver the past few years lots of organizations have started to adopt Cloud Native architectures Despite the adoption of Cloud Native architectures many companies haven t achieved optimal results Wondering why One of the reasons is our adherence to traditional ways of building and deploying Cloud Native applications Kubernetes has become the de facto Cloud Native deployment platform solving one of the main Cloud Native problems deploying applications quickly efficiently and reliably It offers radically easy scaling and fault tolerance Despite this not many Continuous Integration CI systems utilize the benefits of Kubernetes None of the existing build systems offer the capabilities that are native to Kubernetes like in cluster building defining the build resources using CRDs leveraging underlying security and access controls etc These missing features of Kubernetes made the Cloud Native architectures to be less effective and more complex Let me introduce an Open Source project Drone a cloud native self service Continuous Integration platform years ago old Drone was the first CI tool to leverage containers to run pipeline steps independent of each other Today with over M Docker pulls and the most GitHub stars of any Continuous Integration solution Drone offers a mature Kubernetes based CI system harnessing the scaling and fault tolerance characteristics of Cloud Native architectures Drone help solve the next part of the puzzle by running Kubernetes native in cluster builds In this blog let see how we setup kind and Drone together on our laptops to build Kubernetes native pipelines which could then be moved to cloud platforms like Harness CI for a broader team based development This blog is a tutorial where I explain the steps required to use KinD and Drone to set up CI with Kubernetes on your local machine At the end of these steps you will have a completely functional Kubernetes CI setup that can help you build and deploy Cloud Native applications on to Kubernetes on your laptop Required toolsTo complete this setup successfully we need the following tools on your laptop Docker Desktop or Docker on LinuxkindHelmKustomizeKubectlenvsusbstAll linux distributions adds envsubst via gettext package On macOS it can be installed using Homebrew like brew install gettext Demo SourcesThe accompanying code for this blog i e the demo sources is available on my GitHub repo Let us clone the same on to our machine git clone amp amp cd basename git export PROJECT HOME PWD NOTE Through out this blog we will use the name PROJECT HOME to refer to demo sources folder that we cloned above Alright we are all set to get started Setup Kubernetes ClusterAs said earlier we will use kind as our local Kubernetes cluster But for this blog we will do the following customisations Set up a local container registry where we can push and pull container images that will be used in our Kubernetes Check the kind docs for more details Do extra port mappings to make allow us to access the Drone Server and Gitea git repository To make things easier all the aforementioned customisations has been compiled into a utility script PROJECT HOME bin kind sh To start the KinD cluster with these customisations just do PROJECT HOME bin kind sh Version Control SystemWithout Version Control System VCS CI makes no sense One of the primary goal of this blog is to show how to run local VCS so that you can build your applications without a need for external VCS like GitHub Gitlab etc For our setup we will use on Gitea A painless self hosted Git service Gitea is so easy to set up and does provide helm charts for Kubernetes based setup Helm ValuesThe contents of the helm values file that will be used to setup Gitea is shown below The settings are self explanatory for more details check the cheat sheet service http the Kubernetes service gitea http service type type NodePort the gitea http service port port this port will be used in KinD extra port mappings to allow accessing the Gitea server from our laptops nodePort gitea the admin credentials to access Gitea typically push pull operations admin DON T use username admin as its reserved and gitea will fail to start username demo password demo email admin example com config server for this demo we will use http protocol to access Git repos PROTOCOL http the port gitea will listen on HTTP PORT the Git domain all the repositories will be using this domain DOMAIN gitea sslip io The clone base url e g if repo is demo foo the clone url will be demo foo ROOT URL webhook since we will deploy to local network we will allow all hosts ALLOWED HOST LIST since we are in http mode disable TLS SKIP TLS VERIFY trueAdd the gitea helm repo helm repo add gitea charts helm repo updateRun the following command to deploy Gitea helm upgrade install gitea gitea charts gitea values PROJECT HOME helm vars gitea values yaml waitA successful deployment of gitea should show the following services in the default namespace when running the command kubectl get pods svc lapp kubernetes io instance giteaNAME READY STATUS RESTARTS AGEpod gitea Running mspod gitea memcached b kqvp Running mspod gitea postgresql Running msNAME TYPE CLUSTER IP EXTERNAL IP PORT S AGEservice gitea http NodePort lt none gt TCP msservice gitea memcached ClusterIP lt none gt TCP msservice gitea postgresql ClusterIP lt none gt TCP msservice gitea postgresql headless ClusterIP None lt none gt TCP msservice gitea ssh ClusterIP None lt none gt TCP ms Environment VariablesAs a convenience let us set few environment variables which will be used by the commands in upcoming sections of the blog Gitea Gitea domainexport GITEA DOMAIN gitea sslip io Gitea URLexport GITEA URL http GITEA DOMAIN You can access Gitea in your browser like open GITEA URL Default credentials demo demo Drone the drone server hostexport DRONE SERVER HOST drone sslip io the drone server web consoleexport DRONE SERVER URL http DRONE SERVER HOST Drone Gitea oAuth ApplicationDrone will use Gitea for pulling pushing the source code and to add webhooks to trigger builds on source change To do these actions it requires an oAuth application to be configured on Gitea The demo sources has little utility called gitea config that helps in creating the oAuth application in Gitea and clone and create the quickstart repository as drone quickstart on Gitea We will use drone quickstart repository to validate our setup PROJECT HOME bin gitea config darwin arm g GITEA URL dh DRONE SERVER URL NOTE Use gitea config binary corresponding to your os and architecture In the command above we used macOS arm binaryThe gitea config utility creates a env file under PROJECT HOME ks which has few Drone environment variables that will be used while deploying Drone server in upcoming steps DRONE GITEA CLIENT ID The Gitea oAuth Client IDDRONE GITEA CLIENT SECRET The Gitea oAuth Client SecretDRONE RPC SECRET The unique secret to identify the server and runner a simple generation like openssl rand hex Deploy DroneFor our demo the Drone server will be deployed on to a namespace called drone kubectl create ns droneAdd drone helm repo helm repo add drone helm repo updateThe following content will be used as helm values file to deploy Drone server service the Drone Kubernetes service type type NodePort port this port will be used in KinD extra port mappings to allow accessing the drone server from our laptops nodePort extraSecretNamesForEnvFrom all the other as PROJECT HOME ks env variables are loaded via this secret drone demos secretenv the Drone server host typically what the drone runners will use to communicate with the server DRONE SERVER HOST drone sslip io Since we run Gitea in http mode we will skip TLS verification DRONE GITEA SKIP VERIFY true The url where Gitea could be reached typically used while cloning the sources DRONE GITEA SERVER For this local setup and demo we wil run Drone in http mode DRONE SERVER PROTO httpRun the following helm command to deploy Drone server helm upgrade install drone drone drone values PROJECT HOME helm vars drone values yaml namespace drone post renderer ks kustomize waitA successful Drone deployment should show the following resources in drone namespace kubectl get pods svc secrets n droneNAME READY STATUS RESTARTS AGEpod drone bbbd hbpl Running sNAME TYPE CLUSTER IP EXTERNAL IP PORT S AGEservice drone NodePort lt none gt TCP sNAME TYPE DATA AGEsecret drone demos secret Opaque s Host AliasesAs you have noticed we use Magic DNS for Gitea and Drone This will cause name resolution issues inside the Drone and Gitea pods because the url gitea sslip io resolves to on the Drone server pod But for our setup to work we need gitea sslip io to be resolved to the gitea http Kubernetes service on our cluster In order to achieve that we use the Kubernetes host aliases to add extra host entries etc hosts in Drone pods that will resolve gitea sslip io to the ClusterIP of the gitea http service There are multiple techniques that allows us to add host entires to Kubernetes deployments The first one we used in the earlier helm command to deploy Drone server is called helm post renderer The post renderer allowed us to patch the Drone deployment from the helm chart with the hostAliases for gitea sslip io resolving to gitea http s ClusterIP address As we did with Drone deployments to resolve the Gitea we also need to make the Gitea pods resolve the Drone server when trying to send the webhook payload to trigger the build This time let us use kubectl patching technique to update the Gitea statefuleset deployments to resolve drone sslip io to drone service s ClusterIP The patch that will be applied to the Gitea statefulset is as shown below spec template spec hostAliases ip DRONE SERVICE IP hostnames drone sslip io Run the following command to patch and update the gitea statefulset deployment export DRONE SERVICE IP kubectl get svc n drone drone ojsonpath spec clusterIP kubectl patch statefulset gitea n default patch envsubst lt PROJECT HOME ks patch json TIP To replace the environment variables in the patch we use envsubstWait for the Gitea pods to be updated and restarted kubectl rollout status statefulset gitea timeout sYou can check the updates to the gitea pod s etc hosts file by running the command kubectl exec it gitea n default cat etc hostsIt should have a entry like Entries added by HostAliases drone sslip ioWhere is the drone service ClusterIP on my setup run the following command to verify it kubectl get svc n drone droneNAME TYPE CLUSTER IP EXTERNAL IP PORT S AGEdrone NodePort lt none gt TCP msYou can do similar checks with Drone pods and ensure that Drone pods etc hosts has entry for gitea sslip io mapping to gitea http ClusterIP What we did so far Deployed a customized Kubernetes cluster using kindDeployed Gitea on to our Kubernetes clusterDeployed Drone Server on to our Kubernetes ClusterCreated an oAuth application on Gitea to authorize Drone serverCreate a repository on Gitea that will be used to test our step Deploy Drone Kubernetes RunnerTo run the Drone pipelines on Kubernetes we need deploy the Drone Kubernetes Runner Deploy the drone runner kube with following values extraSecretNamesForEnvFrom all the other as env variables are loaded via this secret drone demos secretenv the url to reach the Drone server we point it to the local drone Kubernetes service drone on port DRONE RPC HOST drone Run the helm install to deploy the drone runner kube helm upgrade install drone runner kube drone drone runner kube namespace drone values PROJECT HOME helm vars drone runner kube values yaml waitQuerying the Kubernetes resources on drone namespace should now return the drone runner kube pod and service kubectl get pods svc n drone lapp kubernetes io name drone runner kubeNAME READY STATUS RESTARTS AGEpod drone runner kube fb mbrc Running sNAME TYPE CLUSTER IP EXTERNAL IP PORT S AGEservice drone runner kube ClusterIP lt none gt TCP sOpen the Drone server web console in your browser using the URL DRONE SERVER URL follow the on screen instructions to complete the registration and activation of our drone quickstart repository Lets run our first pipelineLet us clone the quickstart repository to the folder of our choice on our local machine git clone demo drone quickstartNOTE The default git credentials to push is demo demo Open the drone quickstart project with your favorite editor try to make some changes for e g add some dummy text README to trigger a build Your build will fail as shown below Don t worry that s what we are going to fix now We need to do the same thing of adding hostAliases to our drone pipeline pods as well update the drone yml with ClusterIP of gitea http and hostnames with entry for gitea sslip io so that our Drone pipeline pods are able to clone the sources from our Gitea repository The following snippet shows the updated drone yml with entries for host aliases NOTE Your ClusterIP of gitea http may vary to get the ClusterIP of the gitea http service run the command kubectl get svc gitea http ojsonpath spec clusterIP kind pipelinetype kubernetesname defaultsteps name say hello image busybox commands echo hello world name good bye hello image busybox commands echo good bye updates to match your local setuphost aliases kubectl get svc gitea http ojsonpath spec clusterIP ip hostnames gitea sslip io trigger branch mainCommit and push the code to trigger a new Drone pipeline build and you will see it being successful CleanupWhen you are done with experimenting you can clean up the setup by running the following commandkind delete cluster name drone demo SummaryWe now have a fully functional CI with Drone on Kubernetes You no longer need to build your Cloud Kubernetes Native applications but can Continuously Integrate with much ease and power Just summarize what we did in this blog Deployed a customized Kubernetes cluster using kindDeployed Gitea on to our Kubernetes clusterDeployed Drone Server on to our Kubernetes ClusterCreated an oAuth application on Gitea to authorize droneCreated a repository on Gitea that will be used to test our stepDeployed Drone Kubernetes runner to run pipelines on Kubernetes ClusterBuilt our Quick start application using Drone pipelines on KubernetesLeveraged Kubernetes host aliases to add host entries to our deployments to resolve local URLs 2022-07-21 11:21:00
Apple AppleInsider - Frontpage News Hands on: Apple's Home app in iOS 16 has an all-new design https://appleinsider.com/articles/22/07/21/hands-on-apples-home-app-in-ios-16-has-an-all-new-design?utm_medium=rss Hands on Apple x s Home app in iOS has an all new designThe Home app has been redesigned with a focus on simple navigation and improved controls in iOS Here s what s new Apple redesigned the Home app in iOS As Apple improved its support for more device types in smart homes it did little to change how the Home app interfaced with them User s homes would grow and quickly become difficult to manage given enough devices scenes and rooms were added Read more 2022-07-21 11:51:57
Apple AppleInsider - Frontpage News What happens when a game is removed from Apple Arcade https://appleinsider.com/articles/22/07/21/what-happens-when-a-game-is-removed-from-apple-arcade?utm_medium=rss What happens when a game is removed from Apple ArcadeIn a support document Apple has revealed that when games are removed from Apple Arcade users can still play them for a short time Apple ArcadeApple initially added a Leaving Soon section to Apple Arcade without any explanation Now although it has not clarified why the service will lose any games Apple has given more detail about what happens Read more 2022-07-21 11:39:18
Apple AppleInsider - Frontpage News Apple, Microsoft, agree to 'rubbery' new content law in Indonesia https://appleinsider.com/articles/22/07/21/apple-microsoft-agree-to-rubbery-new-content-law-in-indonesia?utm_medium=rss Apple Microsoft agree to x rubbery x new content law in IndonesiaBig Tech companies including Apple have registered for licences in Indonesia which gives local authorities flexible and rubbery powers to censor platforms Ahead of Indonesia s July deadline major Big Tech companies appear to have all agreed to the country s new content laws A total of non Indonesia companies signed up reportedly some just hours before the deadline According to the Financial Times signing up to the new regulation means that local authorities can demand content be removed if they disturb society or public order They can also demand access to the companies data Read more 2022-07-21 11:15:55
Apple AppleInsider - Frontpage News Hands on: Whill model F motorized wheelchair with iPhone connectivity https://appleinsider.com/articles/22/07/20/hands-on-whill-model-f-motorized-wheelchair-with-iphone-connectivity?utm_medium=rss Hands on Whill model F motorized wheelchair with iPhone connectivityWhile we wish the need for a motorized wheelchair on nobody chairs like Whill s Model F integrate well with Apple technologies and are mobility preserving for the folks that do need them Here s what it s like to use one Whill Model FI am not the one who needs this chair so a little bit of a preamble is in order If you followed me to AppleInsider from a prior publication that has since succumbed to bit rot you may have a dim recollection of reading about my spouse having a stroke in the summer of Read more 2022-07-21 11:50:01
海外TECH Engadget Google Calendar is getting better at weeding out spam invites https://www.engadget.com/google-calendar-has-a-new-feature-meant-to-weed-out-spam-invites-114006706.html?src=rss Google Calendar is getting better at weeding out spam invitesGoogle Calendar has released a new update for an issue that it promised to fix three years ago The known senders feature will finally let you block invitations from people you don t know that can effectively spam up your calendar With the Only if the sender is known toggle enabled under Event settings it ll automatically add invites only from people in your contacts list people you ve interacted with or users on the same domain nbsp Normally Google Calendar automatically adds events when you receive emailed invites no matter who sends them The only way to prevent this until now was to disable automatic event adding completely forcing you to manually deal with each invite nbsp GoogleNow you can have the automatic invitations from folks you know while cutting off spam events like Crypto meetup PM tonight sent by some rando Simply navigate to your Google Calendar settings choose Event Settings and choose the Add invitations to my calendar dropdown Then select the option Only if the sender is known You ll still receive spammy invites but the new option lets you trash them before they ever see your calendar Google notes that this may alert a sender that they re not in your contacts list but that seems to be the only potential downside It s a small but useful tweak joining recent Google updates for Calendar Gmail and other apps nbsp 2022-07-21 11:40:06
海外TECH Engadget The Morning After: President Biden's plan to expand offshore wind farms https://www.engadget.com/the-morning-after-president-bidens-plan-to-expand-offshore-wind-farms-111534996.html?src=rss The Morning After President Biden x s plan to expand offshore wind farmsPresident Biden is unveiling further measures to combat climate change and his latest efforts are aimed at addressing incoming environmental crises The President has outlined a string of executive actions that include the first wind energy areas in the Gulf of Mexico The acres could generate enough offshore wind power to supply over million homes The Federal Emergency Management Agency FEMA has also unveiled billion in funding to bolster resilience against heat waves wildfires and other climate change related disasters This will expand the use of the Low Income Home Energy Assistance Program for air conditioning community cooling centers and other resources to fight extreme heat These measures come on top of other initiatives from Biden who has devoted billions of dollars to clean energy projects outlined plans for a national EV charging network and pledged to cut US greenhouse gas emissions in half by Mat SmithThe biggest stories you might have missedPorsche Taycans will charge faster and go farther with latest updateThe OnePlus T G will be unveiled on August rd DALL E s powerful AI image generator is now available in betaGoogle Photos for web now shows if your images are taking up spaceNo Man s Sky Endurance update focuses on freighters and fleetsHow to get the most out of Google DriveApple s latest iOS and macOS updates offer more control over live sportsThe best educational toys for kidsMicrosoft is giving Xbox Insiders free access to classic Bethesda first person shootersSamsung says it shipped almost million foldable phones in The company also confirms it s launching new foldables at its next Unpacked event in August Samsung says it has shipped almost million foldable smartphones worldwide The company s chief of Mobile Experience MX Business Dr TM Roh said that s a percent increase from and that he expects what he calls fast paced growth to continue Most of its foldable customers percent of them apparently went for the clamshell like Flip Roh also confirmed that the company is introducing its next Flip and Fold models at its Unpacked event in two weeks Continue reading With a Samsung TV and Game Pass Ultimate I don t need to buy an XboxBut I d have to buy a new TV…SamsungI m a PlayStation gamer I m pretty upfront with that knowledge when I write for Engadget and occasionally even in this newsletter However I m not an idiot Microsoft s Xbox Game Pass Ultimate is awfully tempting even when its consoles aren t Now with the launch of Samsung s Game Hub on its newest TVs and only its newest models you can stream Xbox titles from the cloud without needing a console On a big TV playing Flight Simulator turns into a meditative experience Type in your destination for an exploration flight or easier on a controller set your cursor on the world map and just fly and fly and fly That s what I did and I started to hate that I ll never be able to do this on my PS The only problem is that requirement of a new Samsung TV…Continue reading An unofficial D printed kit makes your AirPods case repairableAnd even adds USB C Ken Pillonel of USB C iPhone fame has created an open source repair kit for first and second generation AirPods models If you re comfortable cracking open the case you can perform repairs such as installing a fresh battery and get back to business using a D printed replacement part Moreover the kit will drag your AirPods into the modern era ーit switches the charging port from Lightning to a USB C connection Continue reading Somehow I m playing Overwatch againThe latest beta for its sequel just wrapped up BlizzardThere are big changes afoot in Overwatch After weeks of playing the beta I was relieved that many of my primary characters really haven t changed at all at least not yet It s unusual to see Bastion wheeling around as a tank though… Some changes seem to skew the sequel towards skilled FPS players which I m less happy to see One of the reasons I got into OW was the ability to contribute in squad fights without needing meticulous headshot talents It s still early days in the beta and I can t wait to see the third character and what else Blizzard has planned Continue reading 2022-07-21 11:15:34
医療系 医療介護 CBnews 介護の電子申請、下半期開始予定の自治体は2%未満-厚労省集計 https://www.cbnews.jp/news/entry/20220721200554 介護事業 2022-07-21 20:30:00
医療系 医療介護 CBnews 「薬と健康の週間」、10月17-23日-「かかりつけ薬剤師」持つ利点など周知 https://www.cbnews.jp/news/entry/20220721201356 厚生労働省 2022-07-21 20:25:00
ニュース BBC News - Home BBC to pay damages to former royal nanny Tiggy Legge-Bourke https://www.bbc.co.uk/news/uk-62250479?at_medium=RSS&at_campaign=KARANGA diana 2022-07-21 11:37:07
ニュース BBC News - Home We will learn lessons before next pandemic - inquiry https://www.bbc.co.uk/news/health-62250899?at_medium=RSS&at_campaign=KARANGA robust 2022-07-21 11:40:14
ニュース BBC News - Home Italian PM Mario Draghi resigns after week of turmoil https://www.bbc.co.uk/news/world-europe-62249050?at_medium=RSS&at_campaign=KARANGA draghi 2022-07-21 11:20:53
ニュース BBC News - Home Bloody Friday victims' families deserve truth - son https://www.bbc.co.uk/news/uk-northern-ireland-62147787?at_medium=RSS&at_campaign=KARANGA years 2022-07-21 11:14:53
ニュース BBC News - Home Conservative leadership: Liz Truss and Rishi Sunak policy guide https://www.bbc.co.uk/news/uk-politics-60037657?at_medium=RSS&at_campaign=KARANGA rishi 2022-07-21 11:33:27
ニュース BBC News - Home Patrick Bamford: Leeds United will still 'entertain' fans this season https://www.bbc.co.uk/sport/football/62249933?at_medium=RSS&at_campaign=KARANGA bamford 2022-07-21 11:04:31
北海道 北海道新聞 韓国LCC、新千歳―仁川線を再開 国際線ターミナルにぎわう https://www.hokkaido-np.co.jp/article/708586/ 国際線ターミナル 2022-07-21 20:39:29
北海道 北海道新聞 東京五輪招致の決定前から協力関係 組織委元理事とAOKI https://www.hokkaido-np.co.jp/article/708592/ 五輪招致 2022-07-21 20:37:18
北海道 北海道新聞 東京・秋葉原で男性刺される 容体不明、男性3人から事情聴取 https://www.hokkaido-np.co.jp/article/708600/ 事情聴取 2022-07-21 20:35:00
北海道 北海道新聞 旧添牛内駅舎、築100年まで残したい 有志がCFで修繕費募る https://www.hokkaido-np.co.jp/article/708599/ 上川管内 2022-07-21 20:34:00
北海道 北海道新聞 トルコ、イラク民間人攻撃を否定 観光客ら死亡報道、外交対立も https://www.hokkaido-np.co.jp/article/708597/ 観光客 2022-07-21 20:28:00
北海道 北海道新聞 SDGsと温暖化、同時解決を 国連主催の国際会議閉幕 https://www.hokkaido-np.co.jp/article/708596/ 地球温暖化対策 2022-07-21 20:17:00
北海道 北海道新聞 新コミッショナーに榊原氏 プロ野球、元経団連会長 https://www.hokkaido-np.co.jp/article/708595/ 経団連会長 2022-07-21 20:15:00
北海道 北海道新聞 イタリア首相が再び辞表提出 大統領対応焦点、総選挙も https://www.hokkaido-np.co.jp/article/708594/ 首相 2022-07-21 20:14:00
北海道 北海道新聞 サハリン2の権益維持方針に理解 三井物産、撤退も選択肢 https://www.hokkaido-np.co.jp/article/708593/ 三井物産 2022-07-21 20:09:00
ビジネス 東洋経済オンライン むくみや冷えを解消!「生姜」の効果的な食べ方 身体を温める効果がある生姜、どう活用する? | Domani | 東洋経済オンライン https://toyokeizai.net/articles/-/605171?utm_source=rss&utm_medium=http&utm_campaign=link_back domani 2022-07-21 20:30:00
ニュース Newsweek もう現代人の「タイパ」欲求は止まらない...そこで使える「ショート動画」ビジネス術 https://www.newsweekjapan.jp/stories/business/2022/07/tiktok-30.php 最初の単著にあたる年刊行の『シェアしたがる心理』では、人々がスマートフォンを持ち、SNSを使うようになって、世の中のコミュニケーションや企業のマーケティング活動はどのように変化するかを解説しました。 2022-07-21 20:35:00
IT 週刊アスキー 3分間、ケイドロしよ?非対称型対戦アクション『オバケイドロ!』のSteam版が正式配信開始! https://weekly.ascii.jp/elem/000/004/098/4098897/ steam 2022-07-21 20:25:00
IT 週刊アスキー Switch/PS4『ANONYMOUS;CODE』発売日の7月28日20時45分頃より、キャスト/原作者/アーティストそろい踏みの豪華特番が配信! https://weekly.ascii.jp/elem/000/004/098/4098886/ anonymouscode 2022-07-21 20:20:00
IT 週刊アスキー アニメ放送から10周年。Steam版『マブラヴ オルタネイティヴ トータル・イクリプス』が本日配信開始! https://weekly.ascii.jp/elem/000/004/098/4098884/ anchor 2022-07-21 20:15:00
IT 週刊アスキー NetEase Gamesの新作モン娘RPG『クローバーシアター』が8月3日に配信決定 https://weekly.ascii.jp/elem/000/004/098/4098861/ iosandroid 2022-07-21 20:10:00
IT 週刊アスキー Switch向けシューティング『ムーンダンサー』が7月28日より配信決定 https://weekly.ascii.jp/elem/000/004/098/4098857/ nintendo 2022-07-21 20:05: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件)