IT |
@IT 全フォーラム 最新記事一覧 |
ムーアの法則減速で「システム設計は新時代に突入」、Googleが考える次のインフラハードウェアとは |
https://atmarkit.itmedia.co.jp/ait/articles/2210/21/news080.html
|
google |
2022-10-21 12:15:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia News] 「電気代、来春2000~3000円の上昇を想定」 西村経産相が発言 |
https://www.itmedia.co.jp/news/articles/2210/21/news110.html
|
itmedia |
2022-10-21 12:36:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia PC USER] コスパ最高! メカニカルキーボードの入門に適したロジクール「SIGNATURE K855」を試す |
https://www.itmedia.co.jp/pcuser/articles/2210/21/news099.html
|
itmediapcuser |
2022-10-21 12:30:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia PC USER] NECPC、個人向けAndroidタブレット4製品を値上げ 最大18% |
https://www.itmedia.co.jp/pcuser/articles/2210/21/news106.html
|
android |
2022-10-21 12:11:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia News] 今、最も話題の画像生成AIサービス 1位は? |
https://www.itmedia.co.jp/news/articles/2210/21/news107.html
|
itmedia |
2022-10-21 12:08:00 |
IT |
ITmedia 総合記事一覧 |
[ITmedia News] はやぶさ2のコンテナ外部にリュウグウの粒子 1mm×2粒発見 |
https://www.itmedia.co.jp/news/articles/2210/21/news104.html
|
itmedia |
2022-10-21 12:07:00 |
TECH |
Techable(テッカブル) |
後継者が新規事業を勝手に始めて廃業……事例から見る事業継承に専門家が必要な理由 |
https://techable.jp/archives/186167
|
株式会社 |
2022-10-21 03:00:22 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
2022年度のTypeScript製ES Modulesレシピ |
https://qiita.com/masato_makino/items/8451bf4e62ad27823af1
|
commonjs |
2022-10-21 12:54:22 |
js |
JavaScriptタグが付けられた新着投稿 - Qiita |
[Vue,Typescript] Uncaught ReferenceError: exports is not definedを解決する |
https://qiita.com/tomoki312/items/815d395124ec5c126c1b
|
exportsisnotdefinedat |
2022-10-21 12:05:50 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
カテゴリー選択機能の実装(ActiveHash) |
https://qiita.com/Naaa0/items/1e0fbe3e5d7294954511
|
activehash |
2022-10-21 12:39:59 |
Docker |
dockerタグが付けられた新着投稿 - Qiita |
EC2でRedmineのplugin適用 |
https://qiita.com/boragi/items/fa0098dc76cffde06440
|
docker |
2022-10-21 12:49:49 |
Git |
Gitタグが付けられた新着投稿 - Qiita |
fork(gitをGUIで操作するソフト)の使い方(※社内共有用にスクショつきで書いてみた) |
https://qiita.com/AyakoKataoka/items/e1b0a2a2b2c85de4c1e3
|
forkgit |
2022-10-21 12:21:53 |
Ruby |
Railsタグが付けられた新着投稿 - Qiita |
カテゴリー選択機能の実装(ActiveHash) |
https://qiita.com/Naaa0/items/1e0fbe3e5d7294954511
|
activehash |
2022-10-21 12:39:59 |
技術ブログ |
Developers.IO |
2022年7~9月のCX事業本部メンバーのOSSコントリビュートについてご紹介します |
https://dev.classmethod.jp/articles/2022-1q-cx-oss-contributes/
|
delive |
2022-10-21 03:56:32 |
海外TECH |
DEV Community |
Detect vulnerable libraries within your GitHub environments for free |
https://dev.to/codesec/detect-vulnerable-libraries-within-your-github-environments-for-free-2mg0
|
Detect vulnerable libraries within your GitHub environments for freeCombine the power of GitHub Actions for automated Continuous Integration Continuous Deployment CI CD pipelines with Contrast Security s powerful free developer tool CodeSec to identify vulnerable dependencies in your Java NET NodeJS Ruby Python Go or PHP projects The first step is to install CodeSec locally CodeSec is at the free tier of Contrast Security s product suite It is very easy to install with either Homebrew npm or straight from binary You can find CodeSec at Contrast s Developer Central online portal Once CodeSec is installed on your machine you will need to run the command contrast config This will give you the CodeSec account keys that you can use in your project s GitHub Actions configuration file CodeSec config keysSecond you need to set those keys as secrets in your GitHub repository s settings This is available in your GitHub project repository on the Settings tab Security section Secrets option Actions sub option Add secrets with the names CONTRAST API KEY CONTRAST ORGANIZATION ID and CONTRAST AUTH HEADER along with their corresponding values from the contrast config command Add GitHub repository secretsWith those config keys set as repository secrets you are now ready to use the Contrast SCA GitHub Action Contrast SCA is an enterprise level cybersecurity tool that identifies vulnerabilities in the third party components that your project uses The Contrast SCA GitHub Action page gives examples of GitHub Action configuration files for use with several different languages In this article we will walk through an example of using the NodeJS config file Create a new Git branch in your project with git checkout b your branch name Create a new Git branchNext create a new GitHub Actions build file at github workflows build yml if your project does not have one yet If it does you may want to just edit your existing file New GitHub Actions build configuration fileThen in the build yml file add the job to run the Contrast SCA action Use the Node template from the Contrast SCA GitHub Action page Be sure that it uses the CodeSec config secrets that you made at the beginning of the article Note One difference from the template is that we won t specify the apiUrl setting and will let Contrast SCA default to the free Community Edition of the Contrast tool suite server You will also need to customize the path to your project s config files and make sure that you target branch “main which is the default name of the repository s primary branch on GitHub Example build yml for a NodeJS projectBack on the command line add the new file to your local Git repository commit the changes and then push it up to your remote GitHub repository Git add commit and push your new build fileThe output of git push gives you a URL to use to create the pull request for your changes In this example it was Pull request on the GitHub repositoryAfter merging the changes you can look at the Actions tab and see that “SCA Node is now an available workflow that runs in your repository SCA Node workflow in the repository actionsIf your project has a vulnerability like the deliberate example vulnerability in this project you can click on the workflow s run to see its details In the details you can find the specific vulnerabilities in libraries that your project uses along with advice on fixing them Contrast SCA GitHub Action results ConclusionGitHub Actions are a powerful tool Much could be written on all the various options available for using them to power your project s CI CD pipelines The Contrast SCA GitHub Action when paired with CodeSec is a strong new tool for securing your project from cybersecurity threats Test out Contrast SCA s newest GitHub Action feature for yourself with CodeSec To learn more about Contrast s new GitHub Action Click here for our video tutorial Click here to check us out on GitHub Marketplace |
2022-10-21 03:08:27 |
海外科学 |
NYT > Science |
Virginia Uses Treated Wastewater to Shore Up a Drinking Water Aquifer |
https://www.nytimes.com/2022/10/20/climate/treated-sewage-virginia-aquifer.html
|
Virginia Uses Treated Wastewater to Shore Up a Drinking Water AquiferA crucial aquifer is running low so officials are pumping in treated sewage It s an increasingly common strategy as heavy demand and climate change strain water supplies |
2022-10-21 03:46:07 |
金融 |
金融資本市場分析 | 大和総研グループ |
内外経済とマーケットの注目点(2022/10/21) |
https://www.dir.co.jp/report/research/capital-mkt/securities/20221021_023351.html
|
水を差す |
2022-10-21 12:40:00 |
海外ニュース |
Japan Times latest articles |
Japan inflation hits 3% for first time since 1991 excluding tax impacts |
https://www.japantimes.co.jp/news/2022/10/21/business/japan-core-inflation-increase/
|
Japan inflation hits for first time since excluding tax impactsDespite the extended stretch of price gains beyond its goal the Bank of Japan is expected to stick with its ultraloose policy |
2022-10-21 12:27:13 |
ニュース |
BBC News - Home |
Fuel blaze engulfs Mexico railway and homes |
https://www.bbc.co.uk/news/world-latin-america-63339888?at_medium=RSS&at_campaign=KARANGA
|
cargo |
2022-10-21 03:31:47 |
GCP |
Google Cloud Platform Japan 公式ブログ |
Next '22 でご紹介した安全な変革を実現するための新機能 |
https://cloud.google.com/blog/ja/products/identity-security/introducing-new-capabilities-for-secure-transformations/
|
ChronicleSecurityOperationsの導入Googleのスピード、規模、インテリジェンスを活用したサイバー脅威の検出、調査、対応のサポートConfidentialSpaceの導入安全なデータコラボレーションの価値の向上をサポート欧州で求められる条件下でのデジタル主権の推進高度な管理、透明性、主権を備えたクラウドソリューションへの需要の高まりに対応ソフトウェアデリバリーシールドの導入ソフトウェアサプライチェーンのセキュリティの向上をサポートセキュリティエコシステムのリーダーとの新たなGoogleCloudパートナーシップの創造と拡大 本日のNextでは、セキュリティ分析、不正対策、デバイスセキュリティ、ゼロトラスト、オープンソースソフトウェアセキュリティなど、世界中のお客様が差し迫ったセキュリティの課題に対処できるよう支援する、新たなセキュリティプロダクト、パートナーシップ、ソリューションをご紹介します。 |
2022-10-21 05:00:00 |
GCP |
Google Cloud Platform Japan 公式ブログ |
Google Cloud Next '22で発表された全 123 項目 |
https://cloud.google.com/blog/ja/topics/google-cloud-next/google-cloud-next22-wrap-up/
|
新しいDocumentAIWorkbench機能により、ユーザーはビジネスに特化したカスタムのドキュメントパーサーを作成することで、あらゆるドキュメントからデータを抽出できます。 |
2022-10-21 04:00:00 |
GCP |
Google Cloud Platform Japan 公式ブログ |
セキュア データ コラボレーションの価値を引き出す Confidential Space のご紹介 |
https://cloud.google.com/blog/ja/products/identity-security/announcing-confidential-space/
|
金融機関は、ConfidentialSpaceを使用することで、データが不正行為の検出にのみ使用され、事業情報と機密情報はデータ所有者以外には開示されないことを保証できます。 |
2022-10-21 03:30:00 |
GCP |
Google Cloud Platform Japan 公式ブログ |
欧州で求められる条件下でのデジタル主権の推進 |
https://cloud.google.com/blog/ja/products/identity-security/advancing-digital-sovereignty-on-europes-terms/
|
GoogleCloudのソブリンソリューションは、組織が重要なデータ主権の目標をより簡単に管理できるようにする主権管理に加え、運用上の主権やソフトウェア主権の問題への対応に使用できるSupervisedCloudとHostedCloudのオプションで構成されます。 |
2022-10-21 03:10:00 |
北海道 |
北海道新聞 |
住宅火災で男女の遺体発見 茨城・ひたちなか |
https://www.hokkaido-np.co.jp/article/748754/
|
茨城県ひたちなか市馬渡 |
2022-10-21 12:05:00 |
北海道 |
北海道新聞 |
東京円、150円台前半 日米金利差、改めて意識 |
https://www.hokkaido-np.co.jp/article/748753/
|
日米金利差 |
2022-10-21 12:05:00 |
北海道 |
北海道新聞 |
東証、午前終値は2万6951円 続落、米株安受け売り優勢 |
https://www.hokkaido-np.co.jp/article/748752/
|
受け売り |
2022-10-21 12:04:00 |
北海道 |
北海道新聞 |
14年前に組幹部射殺疑い 道仁会幹部ら4人逮捕 |
https://www.hokkaido-np.co.jp/article/748751/
|
九州誠道会 |
2022-10-21 12:02:00 |
北海道 |
北海道新聞 |
3000万円着服疑いで逮捕 外貨両替会社の元代表取締役 |
https://www.hokkaido-np.co.jp/article/748750/
|
外貨両替 |
2022-10-21 12:02:00 |
北海道 |
北海道新聞 |
女性殺害、車からDNA型検出 検察側主張、新潟地裁 |
https://www.hokkaido-np.co.jp/article/748749/
|
新潟地裁 |
2022-10-21 12:02:00 |
ビジネス |
東洋経済オンライン |
44日で辞任「英国・トラス首相」が起こした大混乱 次期首相候補に挙がっている意外な人物 | ヨーロッパ | 東洋経済オンライン |
https://toyokeizai.net/articles/-/627519?utm_source=rss&utm_medium=http&utm_campaign=link_back
|
東洋経済オンライン |
2022-10-21 12:30:00 |
IT |
週刊アスキー |
povo2.0、新規加入で1ヵ月間1GBが試せるキャンペーンを実施 |
https://weekly.ascii.jp/elem/000/004/109/4109897/
|
期間 |
2022-10-21 12:40:00 |
IT |
週刊アスキー |
チゲ風スープが自販機で買える! 辛さと旨みで心までポカポカ温まろう |
https://weekly.ascii.jp/elem/000/004/109/4109890/
|
自動販売機 |
2022-10-21 12:10:00 |
IT |
週刊アスキー |
シャオミの人気スマートバンドに上位モデル「Xiaomi Smart Band 7 Pro」 GNSS対応でルート追跡可 |
https://weekly.ascii.jp/elem/000/004/109/4109892/
|
xiaomismartbandpro |
2022-10-21 12:25:00 |
IT |
週刊アスキー |
シャオミ、RedmiシリーズのAndroidタブ「Redmi Pad」発売 3万9800円~ |
https://weekly.ascii.jp/elem/000/004/109/4109889/
|
android |
2022-10-21 12:05:00 |
GCP |
Cloud Blog JA |
Next '22 でご紹介した安全な変革を実現するための新機能 |
https://cloud.google.com/blog/ja/products/identity-security/introducing-new-capabilities-for-secure-transformations/
|
ChronicleSecurityOperationsの導入Googleのスピード、規模、インテリジェンスを活用したサイバー脅威の検出、調査、対応のサポートConfidentialSpaceの導入安全なデータコラボレーションの価値の向上をサポート欧州で求められる条件下でのデジタル主権の推進高度な管理、透明性、主権を備えたクラウドソリューションへの需要の高まりに対応ソフトウェアデリバリーシールドの導入ソフトウェアサプライチェーンのセキュリティの向上をサポートセキュリティエコシステムのリーダーとの新たなGoogleCloudパートナーシップの創造と拡大 本日のNextでは、セキュリティ分析、不正対策、デバイスセキュリティ、ゼロトラスト、オープンソースソフトウェアセキュリティなど、世界中のお客様が差し迫ったセキュリティの課題に対処できるよう支援する、新たなセキュリティプロダクト、パートナーシップ、ソリューションをご紹介します。 |
2022-10-21 05:00:00 |
GCP |
Cloud Blog JA |
Google Cloud Next '22で発表された全 123 項目 |
https://cloud.google.com/blog/ja/topics/google-cloud-next/google-cloud-next22-wrap-up/
|
新しいDocumentAIWorkbench機能により、ユーザーはビジネスに特化したカスタムのドキュメントパーサーを作成することで、あらゆるドキュメントからデータを抽出できます。 |
2022-10-21 04:00:00 |
GCP |
Cloud Blog JA |
セキュア データ コラボレーションの価値を引き出す Confidential Space のご紹介 |
https://cloud.google.com/blog/ja/products/identity-security/announcing-confidential-space/
|
金融機関は、ConfidentialSpaceを使用することで、データが不正行為の検出にのみ使用され、事業情報と機密情報はデータ所有者以外には開示されないことを保証できます。 |
2022-10-21 03:30:00 |
GCP |
Cloud Blog JA |
欧州で求められる条件下でのデジタル主権の推進 |
https://cloud.google.com/blog/ja/products/identity-security/advancing-digital-sovereignty-on-europes-terms/
|
GoogleCloudのソブリンソリューションは、組織が重要なデータ主権の目標をより簡単に管理できるようにする主権管理に加え、運用上の主権やソフトウェア主権の問題への対応に使用できるSupervisedCloudとHostedCloudのオプションで構成されます。 |
2022-10-21 03:10:00 |
コメント
コメントを投稿