IT |
InfoQ |
Article: Colliding Communities, Cloud Native, and Telecommunications Standards |
https://www.infoq.com/articles/cloud-native-telecom-standards/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global
|
Article Colliding Communities Cloud Native and Telecommunications StandardsWhat happens when an ecosystem driven from the bottom up collides with a community characterized by top down development The g broadband cellular network standard by the rd Generation Partnership Project GPP the Network Function Virtualization NFV standard by the European Telecommunications Standards Institute ETSI and the Service Function Chain RFC request for comments are examples By W Watson |
2022-12-07 09:00:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia News] 不動産屋いらずの“セルフ内見”、スマホ1つで ユカイ工学とFLIEが実証実験 |
https://www.itmedia.co.jp/news/articles/2212/07/news156.html
|
itmedia |
2022-12-07 17:45:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia Mobile] PayPayグルメ、最大5回&総額4100円分のクーポンなど3つのキャンペーン開催 |
https://www.itmedia.co.jp/mobile/articles/2212/07/news155.html
|
itmediamobilepaypay |
2022-12-07 17:35:00 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
初期値を入れる方法 |
https://qiita.com/Qubieeee/items/76a9893e715acaafb6a8
|
functionhogenumconstnumbe |
2022-12-07 17:49:19 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
JavaScript 応用編 (モダンなJavaScriptの機能) 作成中 |
https://qiita.com/Nao52/items/5ee9c2af96b4e9dfd278
|
javascript |
2022-12-07 17:44:17 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
Notonのページの最終変更の内容を取得してみる |
https://qiita.com/n0bisuke/items/d6249db6f44beaebeb7a
|
httpsq |
2022-12-07 17:18:57 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
なぜ JavaScript の Fetch API は2回 await しないとJSONが取れないのか? |
https://qiita.com/ssc-ksaitou/items/5989f754fde0a6a0740c
|
await |
2022-12-07 17:01:45 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
Laravel9でIAMロール経由でのAWS CLI実行を試すときの対処 |
https://qiita.com/wassawassa/items/718d5a910ed28124db43
|
stackoverflow |
2022-12-07 17:33:30 |
技術ブログ |
KAYAC engineers' blog |
【圧倒的快感】2022年に行って良かったサウナランキング |
https://techblog.kayac.com/2022-group-calendar-sauna-ranking
|
しかし、サウナに行くと脳の疲れが綺麗さっぱりなくなりますしかも疲れている時の方が気持ちよくなれるのですそうなんですエンジニアとサウナには究極の因果関係が存在するのです仕事で頭を使うので脳が疲れる→疲れているからサウナで深く整える→脳の疲れが取れて仕事で良いパフォーマンスを発揮できる→仕事で頭を使うので脳が疲れる→繰り返しつまり、エンジニアはサウナに入るべきなのです目次自己紹介整うとはサウナの入り方今年行って良かったサウナランキング最後に自己紹介はじめましてカヤックボンドでエンジニアをやっている園です。 |
2022-12-07 17:30:00 |
技術ブログ |
Developers.IO |
[レポート]Modernize your data warehouse #ANT324 #reinvent |
https://dev.classmethod.jp/articles/reinvent-report-ant324/
|
awsreinvent |
2022-12-07 08:19:48 |
技術ブログ |
Developers.IO |
diskpartを利用して、Windows環境のAWS EBS Root Volumeを縮小または分割してみる |
https://dev.classmethod.jp/articles/jp-attempt-to-reduce-or-split-the-aws-ebs-root-volume-in-a-windows-environment-using-diskpart/
|
awsebsrootvolume |
2022-12-07 08:12:33 |
海外TECH |
DEV Community |
React, Tremor & Tailwind - Coder Stats via GitHub API |
https://dev.to/sm0ke/react-tremor-tailwind-coder-stats-via-github-api-cm6
|
React Tremor amp Tailwind Coder Stats via GitHub APIHello Coders This article mentions an open source sample that presents the developer s stats pulled from GitHub free API and presents the information using React amp Tremor Library Thanks for reading GitHub API amp Tremor LIVE demoGitHub API amp Tremor source codeThe flow is pretty simple Users input their username the information is consumed from GitHub and the charts are displayed For newcomers Tremor is a modern stack built on top of Tailwind and ReCharts focusing mainly on scientists and developers that develop dashboards and analytics products The product can be used by anyone that has a decent NodeJS version installed in the workstation Once the sources are saved locally the project can be started easily git clone cd sample tremor github charts yarn install modules yarn start start for development What is TremorTremor is a low level opinionated UI component library to build dashboards It offers components such as charts layouts or input elements covering the essential parts of a dashboard or analytical interface Their approach provides flexibility between beautiful defaults and fast customization The best way to get started is to check out our templates called Blocks for getting a feeling of how components are used and combined Thanks for reading For more resources and support please access Free support provided by AppSeed email amp Discord More free apps crafted in Flask Django and React |
2022-12-07 08:17:27 |
海外TECH |
DEV Community |
Match Nodes with One or More Labels |
https://dev.to/zirkelc/match-nodes-with-one-or-more-labels-3m6d
|
Match Nodes with One or More LabelsSuppose we want to find all nodes that have at least one label out of several given labels Find any nodes that have the label Person or Movie or both There are two ways to achieve this in Cypher a static where condition or a dynamic where condition Static WhereThe required labels are embedded directly into where condition of the Cypher query MATCH n WHERE n Person OR n Movie RETURN nThis option is quite efficient as the query only needs to perform a label scan for each label provided and then combines the two results and removes duplicate nodes i e nodes with both labels However adding a new label requires changing the query and thus updating the code Query execution plan for static where condition Dynamic WhereInstead of embedding the labels in the Cypher query we can provide the labels as a query parameter labels This parameter is a string array that we pass to the Neoj driver when executing the query MATCH n WHERE any label in labels n WHERE label IN labels RETURN nThis option has the advantage that we do not have to change the query if the required labels change However the execution might be less efficient because Neoj first searches all nodes and then applies a filtering of the labels to the result Query execution plan for dynamic where conditionPlease let me know if there are other things to consider or there are other options I am not aware of |
2022-12-07 08:01:27 |
医療系 |
医療介護 CBnews |
中医協で日医も否定的意見、特許中新薬除外の業界要望-中間年薬価改定で2回目の業界ヒアリング |
https://www.cbnews.jp/news/entry/20221207172800
|
中央社会保険医療協議会 |
2022-12-07 17:50:00 |
海外ニュース |
Japan Times latest articles |
With revisions to key security documents, pacifist Japan set to blaze a new trail |
https://www.japantimes.co.jp/news/2022/12/07/national/revisions-security-pacifist-japan/
|
With revisions to key security documents pacifist Japan set to blaze a new trailUpcoming changes could usher in dramatic shifts in the country s defense oriented policy amid what Tokyo calls an increasingly severe security environment |
2022-12-07 17:41:04 |
ニュース |
BBC News - Home |
China rolls back strict Covid rules after protests |
https://www.bbc.co.uk/news/world-asia-china-63855508?at_medium=RSS&at_campaign=KARANGA
|
centres |
2022-12-07 08:12:33 |
ニュース |
BBC News - Home |
UK weather: People urged to heat main rooms as cold snap begins |
https://www.bbc.co.uk/news/uk-63879870?at_medium=RSS&at_campaign=KARANGA
|
advise |
2022-12-07 08:32:50 |
ニュース |
BBC News - Home |
Germany arrests 25 accused of plotting coup |
https://www.bbc.co.uk/news/world-europe-63885028?at_medium=RSS&at_campaign=KARANGA
|
parliament |
2022-12-07 08:06:23 |
ニュース |
BBC News - Home |
Harry and Meghan: 'A ripple of hope can turn into a wave of change' |
https://www.bbc.co.uk/news/uk-63883074?at_medium=RSS&at_campaign=KARANGA
|
Harry and Meghan x A ripple of hope can turn into a wave of change x The Duke and Duchess of Sussex attended a gala in New York where they were honoured for their racial justice and mental health work |
2022-12-07 08:22:21 |
ニュース |
BBC News - Home |
Thousands of pupils miss school as teachers strike |
https://www.bbc.co.uk/news/uk-scotland-63874187?at_medium=RSS&at_campaign=KARANGA
|
nasuwt |
2022-12-07 08:19:48 |
ニュース |
BBC News - Home |
Avatar: The Way of Water world premiere takes place in London |
https://www.bbc.co.uk/news/entertainment-arts-63875730?at_medium=RSS&at_campaign=KARANGA
|
pandora |
2022-12-07 08:44:02 |
ニュース |
BBC News - Home |
Novak Djokovic to make Australia return in Adelaide one year after deportation |
https://www.bbc.co.uk/sport/tennis/63884996?at_medium=RSS&at_campaign=KARANGA
|
Novak Djokovic to make Australia return in Adelaide one year after deportationNovak Djokovic will return to Australia at January s Adelaide International almost a year after being deported from the country because of his Covid vaccination status |
2022-12-07 08:11:45 |
サブカルネタ |
ラーブロ |
はるちゃんラーメン@新橋この日は、ラーメン凪さんの跡地に、続々と出来ている、ちゃん系系... |
http://ra-blog.net/modules/rssc/single_feed.php?fid=205520
|
instagram |
2022-12-07 08:35:31 |
ニュース |
Newsweek |
「一気に探索対象1000倍に!」南アフリカの電波望遠鏡で地球外知的生命体探査のための観測開始 |
https://www.newsweekjapan.jp/stories/world/2022/12/1000-39.php
|
電波望遠鏡「ミーアキャット」で探索対象倍にこれまで米ウェストバージニア州のグリーンバンク望遠鏡や豪州のパークス電波望遠鏡などで観測を行ってきたが、年月日、南アフリカ共和国の電波望遠鏡「ミーアキャットMeerKAT」でも観測を開始することが発表された。 |
2022-12-07 17:50:34 |
マーケティング |
MarkeZine |
SMS配信サービス「Cuenote SMS」、多要素認証対応の新バージョン提供開始 |
http://markezine.jp/article/detail/40767
|
提供開始 |
2022-12-07 17:30:00 |
IT |
週刊アスキー |
『ループエイト』お茶目な神の使い「ムササ」の情報が初公開! |
https://weekly.ascii.jp/elem/000/004/116/4116464/
|
公式サイト |
2022-12-07 17:50:00 |
コメント
コメントを投稿