投稿時間:2022-11-30 21:18:14 RSSフィード2022-11-30 21:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] パナソニックの中村邦夫元社長が死去 IT バブル崩壊後の事業再編をけん引 https://www.itmedia.co.jp/news/articles/2211/30/news202.html itmedia 2022-11-30 20:13:00
AWS AWS - Webinar Channel AWS analytics Shortclip: Amazon Redshift Data Sharing (Hebrew, English subtitles) https://www.youtube.com/watch?v=YvxgKKMdKgM AWS analytics Shortclip Amazon Redshift Data Sharing Hebrew English subtitles Amazon Redshift data sharing allows you to extend the ease of use performance and cost benefits of Amazon Redshift offers in a single cluster to multi cluster deployments while being able to share data Data sharing enables instant granular and fast data access across Amazon Redshift clusters without the need to copy or move it Data sharing provides live access to data so that your users always see the most up to date and consistent information as it s updated in the data warehouse You can securely share live data with Amazon Redshift clusters in the same or different AWS accounts and across regions In this shortclip Adi Jabkowsky Analytics Specialist at AWS will explain and demonstrate how you can use Amazon Redshift Data sharing capabilities to support various use cases 2022-11-30 11:41:44
python Pythonタグが付けられた新着投稿 - Qiita Django REST FrameworkとVue.jsの環境構築 https://qiita.com/ryo-keima/items/aaa3f65524241a418fc9 djangorestframeworkvue 2022-11-30 20:57:26
python Pythonタグが付けられた新着投稿 - Qiita Pythonをこれから学びたい人向けのおすすめ本 https://qiita.com/YaezakuraP/items/37b6e7b0092c2509c693 helloworld 2022-11-30 20:38:22
python Pythonタグが付けられた新着投稿 - Qiita pythonのtry~exceptionでエラー内容を取得する https://qiita.com/yuta_vamdemic/items/d1548e659c271ab387dc sexceptexceptionaseprinte 2022-11-30 20:14:38
js JavaScriptタグが付けられた新着投稿 - Qiita PowerShell上で実行するCLIアプリケーションでのエスケープ文字 https://qiita.com/daisei-yoshino/items/48fa488037efaa07cb21 powershell 2022-11-30 20:00:57
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Ruby】1~100の数字の中から素数を出力する方法 https://qiita.com/ysk91_engineer/items/128e023d008330fbb874 nonprimenumber 2022-11-30 20:47:16
golang Goタグが付けられた新着投稿 - Qiita PowerShell上で実行するCLIアプリケーションでのエスケープ文字 https://qiita.com/daisei-yoshino/items/48fa488037efaa07cb21 powershell 2022-11-30 20:00:57
技術ブログ Developers.IO [レポート]AWSの革新とCrowdStrikeのセキュリティ (sponsored by CrowdStrike) #PRT275 #reinvent https://dev.classmethod.jp/articles/innovate-with-aws-and-secure-with-crowdstrike-sponsored-by-crowdstrike/ reinvent 2022-11-30 11:43:45
技術ブログ Developers.IO 기존 EC2 인스턴스를 삭제하고, 동일한 IP 주소로 새 EC2 인스턴스를 생성하는 방법 https://dev.classmethod.jp/articles/jw-how-to-delete-an-existing-ec2-instance-and-create-a-new-ec2-instance-with-the-same-ip-address/ 기존EC 인스턴스를삭제하고 동일한IP 주소로새EC 인스턴스를생성하는방법안녕하세요클래스메소드김재욱 Kim Jaewook 입니다 이번에는기존EC 인스턴스를삭제하고 동일한IP 주소로새EC 인스턴스를생성하는방법에대해정리해봤습니다 현재환경 2022-11-30 11:20:20
技術ブログ Developers.IO SnapStartでコールドスタートが高速化することを確認してみた https://dev.classmethod.jp/articles/calc-snapstart-effect/ javacorretto 2022-11-30 11:07:01
海外TECH MakeUseOf 6 Things You Didn’t Know You Could Do on Your Mac https://www.makeuseof.com/things-you-didnt-know-on-mac/ likely 2022-11-30 11:15:16
海外TECH MakeUseOf How to Find an Armstrong Number https://www.makeuseof.com/armstrong-number-find/ tasks 2022-11-30 11:01:15
海外TECH DEV Community Goodbye Typescript, hello native typing for Javascript ✨ https://dev.to/christopherkade/goodbye-typescript-hello-native-typing-for-javascript-3ee1 Goodbye Typescript hello native typing for Javascript Typing Love it or hate it it has many advantages better DX through intellisense auto completion better code documentation less time consuming errors Its benefits greatly outweigh its cost so why do some people still avoid it One word Typescript You have to set it up and make sure your tooling is working correctly which can add a layer of frustration to any project So what if I told you that native typing might be coming to Javascript Christmas is right around the corner and boy do I have a gift for you The proposal TC is the comity in charge of Javascript s specs they help maintain and evolve the definition of JS If you re curious I wrote a section about them in a previous article They recently moved the Type Annotations proposal to Stage out of which means it s time to widely speculate on the impact and implications of this feature What will native JS typing look like if this proposal passes It would be very close to what we currently have with Typescript and Flow namely both parameters are numbers and this method returns a numberfunction add a number b number number return a b These annotations will not stop you from passing a string or any other variable type as parameter They will be ignored at runtime and are just there as guidelines that can be used by rd party type checkers such as your IDE The argument for strict typing has its place in this discussion in my opinion In its current proposal these types are just type annotations which is something we already have thanks to JSDoc So the question remains why What s the point We re in an odd situation Javascript is one of the only languages that has us write in one language Typescript to then have it transpiled to another one Javascript These layers add complexity to any project so the more tools we add to our default tool belt the better The need for Typescript creates a form of monopoly on current available tooling where each and everyone of them needs to evolve with TS in order to not be left behind The State of the Octoverse shows the impressive popularity of Typescript in which means this need to evolve becomes almost mandatory for your linters bundlers etc Having this feature already bundled with our dear Javascript will only make it a more complete package and help us slow down the obvious tooling bloat we re currently facing What do you think Would you see yourself using this feature if it releases What are the risks that come to mind especially if you re an avid user of Typescript Feel free to follow me on Twitter if it doesn t implode by the time you finish this article it s always a pleasure connecting with some of you 2022-11-30 11:09:29
Apple AppleInsider - Frontpage News Early M2 Max benchmarks may have just leaked online https://appleinsider.com/articles/22/11/30/early-m2-max-benchmarks-may-have-just-leaked-online?utm_medium=rss Early M Max benchmarks may have just leaked onlineNew benchmark results for what may be a new Mac using a M Max processor have surfaced but do not show a dramatic improvement over its predecessor The figures on Geekbench are for a device that identifies itself as Mac References to this Mac were first spotted back in July though it remains unclear whether it s a MacBook Pro or another device such as a new Mac Studio New Mac s Geekbench scores cores GB of RAM pic twitter com PXlUleVpーShrimpApplePro VNchocoTaco November Read more 2022-11-30 11:43:45
海外TECH Engadget San Francisco approves police petition to use robots as a 'deadly force option' https://www.engadget.com/san-francisco-approves-police-robots-deadly-force-option-112647119.html?src=rss San Francisco approves police petition to use robots as a x deadly force option x A week ago the San Francisco Police Department SFPD petitioned the Board of Supervisors for permission to deploy robots that can kill suspects under specific circumstances Now the board has approved the petition with a vote of vs despite strong opposition from civil liberties groups Under the new policy robots can be used as a deadly force option when risk of loss of life to members of the public or officers are imminent and outweigh any other force option available to the SFPD The city s police force has over a dozen robots at the moment which are equipped with the capability to provide video reconnaissance and to diffuse bombs None of them have weapons and live ammunition the SFPD says and there are no plans to fit them with any However they can now be deployed with explosives attached to contact incapacitate or disorient violent armed or dangerous suspect an SFPD spokesperson said Robots equipped in this manner would only be used in extreme circumstances to save or prevent further loss of innocent lives they added As NPR notes SF officials have to define the authorized uses of its robots and other military grade equipment due to a California law that went into effect this year Aaron Peskin a Board of Supervisor member added a line to the SFPD s original draft policy that said Robots shall not be used as a Use of Force against any person But the SFPD amended the proposal to allow the use of robots as a deadly force option The board approved that version of the policy with additional amendments stating that officials can only use robots with explosive charges after they had exhausted all alternative force or de escalation tactics Also only a limited number of high ranking officials will be able authorize the use of robots as a deadly force option nbsp Among all of San Francisco s supervisors only Shamann Walton Dean Preston and Hillary Ronen voted no on approving the policy Preston called allowing the SFPD to use robots to kill people deeply disturbing and a sad moment for the city In his full statement he said that giving the police the power to arm remote controlled robots will place Black and brown people in disproportionate danger of harm or death Meanwhile Rafael Mandelman who supported the use of robots as a deadly force from the beginning defended his vote and said that the final version of the policy lays out reasonable restrictions on the use of robots despite the hyperbole expressed by many who oppose it Mandelman also told Fox KTVU nbsp that it would be irresponsible not to make plans to use robots in life threatening situations Matthew Guariglia of the Electronic Frontier Foundation told the news organization however that by equipping robots w e are going to lessen the burden of using deadly force from having to pull a gun and pull the trigger to a button on a remote control UPDATE sfgov supes vote w amendments to let SFPD use existing robots that in extreme circumstances could be used to deliver deadly force via explosive charges per RafaelMandelman shamannwalton DeanPreston HillaryRonen vote no SFPD must evaluate amp try alternatives pic twitter com zYezjRlFBvーHenry K Lee henrykleeKTVU November 2022-11-30 11:26:47
医療系 医療介護 CBnews 電子処方箋の費用補填要望へ、四病協-食事療養費・光熱費への財政措置も https://www.cbnews.jp/news/entry/20221130195243 働き掛け 2022-11-30 20:05:00
ニュース BBC News - Home World Cup 2022: More than 16 million watch England knock out Wales https://www.bbc.co.uk/news/entertainment-arts-63808150?at_medium=RSS&at_campaign=KARANGA qatar 2022-11-30 11:26:05
ニュース BBC News - Home HSBC to close 114 UK branches https://www.bbc.co.uk/news/business-63796745?at_medium=RSS&at_campaign=KARANGA hsbc 2022-11-30 11:57:26
ニュース BBC News - Home Friskney attempted murder arrest after two boys, 10, stabbed https://www.bbc.co.uk/news/uk-england-lincolnshire-63805877?at_medium=RSS&at_campaign=KARANGA stand 2022-11-30 11:46:31
ビジネス 東洋経済オンライン 米ゲーム大手「中国向けサービス」一時停止の訳 預託金や売り上げ配分をめぐり提携先と対立か | 「財新」中国Biz&Tech | 東洋経済オンライン https://toyokeizai.net/articles/-/635516?utm_source=rss&utm_medium=http&utm_campaign=link_back biztech 2022-11-30 21:00:00
IT 週刊アスキー クロスボーン・ガンダムが登場!『ガンダムUCE』で「1st Anniv.限定ガシャ」を開催 https://weekly.ascii.jp/elem/000/004/115/4115523/ stanniv 2022-11-30 20:15:00
海外TECH reddit 邪神ちゃん、決算認定 https://www.reddit.com/r/newsokunomoral/comments/z8ou2h/邪神ちゃん決算認定/ ewsokunomorallinkcomments 2022-11-30 11:12:20

コメント

このブログの人気の投稿

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