投稿時間:2022-04-21 11:24:32 RSSフィード2022-04-21 11:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ AWSがグローバルエンドポイントを使ってAmazon EventBridgeの可用性と信頼性を向上 https://www.infoq.com/jp/news/2022/04/aws-eventbridge-global-endpoints/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global amazoneventbridge 2022-04-21 01:13:00
IT InfoQ スタンフォード大学がAI Index 2022年次報告書を公表 https://www.infoq.com/jp/news/2022/04/stanford-ai-index-2021/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global aiindex 2022-04-21 01:03:00
IT InfoQ MicrosoftがOpen Data for Social Impact Frameworkを発表 https://www.infoq.com/jp/news/2022/04/microsoft-open-data/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global MicrosoftがOpenDataforSocialImpactFrameworkを発表Microsoftは最近、OpenDataforSocialImpactFrameworkを導入した。 2022-04-21 01:01:00
ROBOT ロボスタ ロボットの手の感覚を操作者が体感できるロボット操作システム「V-Sido Bilateral」をアスラテックが発表 力覚フィードバック https://robotstart.info/2022/04/21/v-sido-bilateral.html 2022-04-21 01:55:21
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 利上げに動けぬ日銀 口先介入も円売り加速 https://www.itmedia.co.jp/business/articles/2204/21/news087.html ITmediaビジネスオンライン利上げに動けぬ日銀口先介入も円売り加速日の外国為替市場で円相場が一時ドル円台に下落した。 2022-04-21 10:02:00
js JavaScriptタグが付けられた新着投稿 - Qiita [きんとーんきほんのき !!!]今日から始める kintone カスタマイズ〈コピペで使えるおまけ付き!〉 https://qiita.com/OT_Hirano/items/5810d5d911444b54920a functioneve 2022-04-21 10:21:40
AWS AWSタグが付けられた新着投稿 - Qiita Elastic Security を使用した AWS ワークロードの保護 https://qiita.com/shosuz/items/a43b9d09d5f5f3cf4a59 elastic 2022-04-21 10:01:26
Linux CentOSタグが付けられた新着投稿 - Qiita ConoHa VPSにCentOS Stream8をインストールしVSCodeでSSH接続できるようにする https://qiita.com/yuki-masaki/items/8d8e2f595f26a20cdf80 centos 2022-04-21 10:37:50
GCP gcpタグが付けられた新着投稿 - Qiita Elastic Security を使用した AWS ワークロードの保護 https://qiita.com/shosuz/items/a43b9d09d5f5f3cf4a59 elastic 2022-04-21 10:01:26
Azure Azureタグが付けられた新着投稿 - Qiita Elastic Security を使用した AWS ワークロードの保護 https://qiita.com/shosuz/items/a43b9d09d5f5f3cf4a59 elastic 2022-04-21 10:01:26
Ruby Railsタグが付けられた新着投稿 - Qiita Amazon SES導入 https://qiita.com/Dai_Kentaro/items/175a27c9837db84ab6af amazon 2022-04-21 10:00:31
技術ブログ KAYAC engineers' blog とある相撲ゲーム開発の思い出 https://techblog.kayac.com/sumo-game-memories もはや何が相撲なのかわかりませんが、「力士が土俵の上にいるのだからこれは相撲」と強弁するしかありません。 2022-04-21 12:00:00
海外TECH DEV Community Under the Hood: How BCrypt Functions https://dev.to/wwwestin/under-the-hood-how-bcrypt-functions-p9p Under the Hood How BCrypt FunctionsSomething that I often experience as a student software engineer is taking a feature of a web application that I ve used hundreds if not thousands of times before and then learning how it is implemented how it functions It s actually become one of my favorite aspects about learning the profession thus far One such concept that I ve encountered learned recently is how passwords are securely stored and accessed Of course to even get to the point of understanding the above one must first learn how a user enters that password data into a form and how that data is transferred to a database After that one can safely assume that every time you log in you re just posting the input from the password form to a database and a function checks to see if that plaintext password matches the username then you re good to go right Well if we deploy a website where the sole intention is to compromise our user s information then absolutely But that s not what we re about One of the primary tools used in securing passwords or anything regarded as sensitive information is hashing As alluded to above storing plaintext passwords puts users at risk People myself previously very much included have a strong tendency to use same or similar passwords for multiple websites and it s easy to see why It s hard to put a number on the average number of applications that a single person has to remember login credentials for but even if the number was simply five that s a lot of effort to generate a secure unique password for each platform Thus a data breach has the potential to expose a single user to multiple other breaches among other risks Hashing combats this by taking a newly minted password and generating a fixed length output This seemingly unintelligible text that the hash function generates makes password determination difficult but not impossible Given that a hash always produces a fixed length output one could take many of the available breached databases on the internet and create a reference of all these known passwords hashes and cross reference the database in question From there it s just a matching game This is where salting comes in A salt is just “simply a random string added to the beginning of a password before it is hashed This adds another layer of complexity to obtain a databases sensitive information If we could also make the hashing function very computationally expensive such that the function requires a lot of time space to re run a password string then you have a great recipe to make compromising a database at least way more effort than it s worth One broadly used cryptographic function to hash salt passwords as well as taking a very long time to do it is BCrypt As one would surmise there are many widely available cryptographic functions two examples being the SHA or SHA family Although these perform similar tasks to BCrypt they are computationally fast making brute force attacks easier In addition to the benefit of being computationally slow BCrypt also has the advantage of scalability As modern CPUs become predictably faster at computing hashes BCrypt will run slower and slower given “faster hardware So we ve gone over why BCrypt is used but how exactly does it work The function can be broken down into two phases Phase A function named “EksBlowfishSetup is called taking in the desired cost salted prepended string and the password This is where the bulk of BCrypt s time is spent generating a set of subkeys from the primary key i e the password Phase From here the bit text “OrpheanBeholderScryDoubt is encrypted times using EksBlowfish in Electronic Code Book ECB mode with the state from the previous phase This produces the cost and bit salt value concatenated with the result of the encryption loop The resulting hash will have some consistent features It ll be prefixed by either a y or b i e the algorithm identifier It ll delineate the cost in this case Then the remaining characters contain the salt password hashSimplified One algorithm EksBlowfish performs a lengthy computation based on input and the results of those computations are encrypted alongside a fixed string OrpheanBeholderScryDoubt to create a fixed length hash Once a hash is generated we need to be able to store it to be compared for authentication purposes The source code of the BCrypt Ruby Gem actually offers great insight into how this is performed in Rails First and foremost keep in mind that knowing what the password s salt is is the Password object s responsibility The given password is run through the same function as the stored with the same salt Then the results are compared to the stored hashViola The password can be verified in one line of code Resources url 2022-04-21 01:16:52
海外TECH DEV Community (Another) Simple Python File Renaming Script https://dev.to/josephmads/another-simple-python-file-renaming-script-5dd1 Another Simple Python File Renaming Script IntroThis is a walk through of a file renaming script that allows the user to specify the type of file to be renamed and to choose the naming convention The Scriptimport pathlib set the directory containing the files to be renamedpath pathlib Path home joe Pictures examplePics set the new name of the files file name photos file list counter for file in sorted path glob JPG file type to rename file list append file for file in file list new file file name str counter str file suffix lower file rename path new file counter How It WorksThis directory has two file types jpg and txt For this example I only want to change the names of the jpg files First the script imports the pathlib module from the standard library Functions from this module allow the script to navigate directories iterate by file type and rename files The Path class tells the script where the files are that need to be renamed It gets assigned to the path variable import pathlibpath pathlib Path home joe Pictures examplePics If the script is run from the same directory as the files being renamed path can be written path pathlib Path cwd Next the user assigns a string to file name which will become the stem of the new file names file list initializes an empty list counter starts the file numbering scheme at file name photo file list counter The first for loop iterates over the files that path points to The glob method specifies the file type by matching the relative pattern also assigned by the user The files are sorted and appended to the file list that was initialized above for file in sorted path glob JPG file type to rename file list append file Without this first for loop there is a fringe case where the renaming script overwrites and erases some files This happens if it is run twice in a row without changing the file name string I only encountered this problem in Linux both WSL and a Linux machine when running the script from outside the working directory I could not get Windows to duplicate the problem It doesn t seem very likely that the user would run into this file erasure issue However since no one likes unexpectedly losing files I kept it in the script just to be on the safe side The second for loop iterates over the sorted files appended to file list new file is initialized and the new file name is concatenated from the string in file name the integer in counter converted to a string and the file type suffix specified in the first for loop file suffix is converted to a string and made lowercase using the lower string method for file in file list new file file name str counter str file suffix lower I made the file suffix conversion because I like my file extensions lowercase If uppercase extensions are preferred or the extensions are already lowercase the line can be written like this new file file name str counter file suffixFinally the rename method renames the file to the targeted directory path and returns a new Path instance pointing to target counter is increased by and the script loops until every specified file has been renamed file rename path new file counter After the script is run the directory looks like this Thanks for reading 2022-04-21 01:04:37
海外TECH Engadget Judge dismisses class-action against Activision Blizzard’s sexual harassment probe https://www.engadget.com/judge-dismisses-class-action-against-activision-blizzards-sexual-harassment-probe-014911039.html?src=rss Judge dismisses class action against Activision Blizzard s sexual harassment probeA California judge today granted Activision s motion to dismiss a class action lawsuit filed by investors who asserted the company misled them about sexual harassment allegations at the company including probes by the Equal Employment Opportunity Commission EEOC and California s Department of Fair Employment and Housing DFEH First reported by Bloomberg Law the judge ruled that the plaintiffs failed to meet the threshold to pursue their claims under federal securities law First filed in August by a group of individual investors that includes Jeff Ross and Gary Cheng they allege the EEOC and DFEH probes were intentionally downplayed by Activision in SEC filings which calling them “routine But the judge argued these investors claims to be an example of “fraud by hindsight wherein companies which suffer bad outcomes are unfairly accused of having been able to predict them “Plaintiffs contend that the media s reaction to news of the regulatory investigations and Defendants statement in response to the DFEH Action belies any notion that the regulatory investigations were ordinary or routine But such allegations constitute fraud by hindsight and absent particularized temporal facts are insufficient to support a claim of securities fraud wrote Judge Percy Anderson of the US District Court of the Central District of California A US district court recently approved an million dollar settlement between the videogame company and the EEOC The lawsuit by California s DFEH is still pending While the motion to dismiss is a setback for the investors they have days to file an amended complaint 2022-04-21 01:49:11
海外TECH Engadget Apple Store workers in Atlanta are forming a union 'because we love this company' https://www.engadget.com/apple-store-union-atlanta-cwa-012514056.html?src=rss Apple Store workers in Atlanta are forming a union x because we love this company x When Elli Daniels started working at the Apple Store in Cumberland Mall location in Atlanta her hourly wage was ーrosy by comparison to the federal minimum Georgia adopts but below average for sales in her metro region Three years later and in spite of several raises her pay has nowhere near kept up pace with national inflation or Apple s soaring profits for that matter nbsp She s one of the eligible workers at the Apple Store location that petitioned the National Labor Relations Board on Wednesday with the backing of the Communications Workers of America CWA to hold a union election It will be the first such election for an Apple retail location in the US quot One of the biggest things that we re fighting for is going to be for fair pay and a livable wage because with Atlanta being such a huge city it s just getting more and more expensive to live here quot Daniels told Engadget quot Everybody deserves the opportunity to be able to not worry about whether they can afford food or pay their bills Everybody deserves to be able to afford to live in the city that they work in quot nbsp Daniels a product zone specialist was clear however that her and her coworkers desire for better pay isn t borne out of grievance By all indications a sincere devotee of Apple s products she specified that quot we want to do this because we love this company not because we want to turn our back on them quot Similarly to the Google Fiber retail workers who recently unionized in Kansas City Missouri Apple has been completely silent on the issues according to Daniels quot We haven t heard anything from Apple corporate at all quot Consequently the workers and CWA opted to file for both voluntary recognition and a union election simultaneously Apple s silence seems to indicate the company intends to let things go to a vote though we ve reached out to them for confirmation nbsp Over the pandemic years Apple has raked in tremendous profits even as the economy at large suffers It has posted record breaking quarters over and over but the winnings aren t being distributed equally according to Daniels Raising wages is an obvious way to relieve material hardship for Apple Store workers some of whom have quot had to leave the company because they just needed more money to be able to pay their bills because they were growing a family quot But it s also a philosophical means to quot try to close the gap quot between corporate and retail employees quot It s really important that both sides of the coin get fair treatment in the company that we all work for quot she said Cumberland workers aren t alone either Apple Store workers in New York City s Grand Central terminal backed by the Fruit Stand Workers United recently called for a minimum wage of per hour They re also riding a wave of newfound union sentiment displayed by the first successful unionization vote at a US Amazon warehouse as well as a rash of successful union drives across Starbucks locations nationwide As yet Apple has not seemingly deployed the same captive audience meetings and union busting techniques those companies have become increasingly associated with nbsp quot We love Apple no matter what quot Daniels stressed quot I think it s all just making sure that we all can put our heads together and really make Cumberland the best place that it can be for all of us ーboth for us that are here now as well as people that are that are here in the future quot 2022-04-21 01:25:14
医療系 医療介護 CBnews 認知症疾患医療センター、鹿児島圏域で公募-9月からの業務開始を目指す https://www.cbnews.jp/news/entry/20220420172001 認知症疾患医療センター 2022-04-21 11:00:00
海外ニュース Japan Times latest articles ‘xxxHolic’: Over-the-top camp casts a lackluster spell https://www.japantimes.co.jp/culture/2022/04/21/films/film-reviews/xxxholic/ spectacle 2022-04-21 10:10:32
ニュース BBC News - Home Partygate: PM seeks to delay Commons vote on probe https://www.bbc.co.uk/news/uk-politics-61170379?at_medium=RSS&at_campaign=KARANGA commons 2022-04-21 01:28:35
ニュース BBC News - Home French election: Macron and Le Pen clash in TV presidential debate https://www.bbc.co.uk/news/world-europe-61166601?at_medium=RSS&at_campaign=KARANGA debateemmanuel 2022-04-21 01:18:27
ニュース BBC News - Home Queen celebrates 96th birthday in Sandringham https://www.bbc.co.uk/news/uk-61167593?at_medium=RSS&at_campaign=KARANGA norfolk 2022-04-21 01:54:21
GCP Google Cloud Platform Japan 公式ブログ Analytics Hub で大規模なデータと分析アセットを安全に交換、プレビュー版提供開始 https://cloud.google.com/blog/ja/products/data-analytics/analytics-hub-data-exchange-now-in-public-preview/ Googleは、AnalyticsHubを利用して、信頼できる価値の高いソースのデータセットを簡単に検出して登録できるようにしたいと考えています。 2022-04-21 01:10:00
北海道 北海道新聞 米欧中銀トップも途中退席 G20、鈴木財務相は同調せず https://www.hokkaido-np.co.jp/article/672159/ 鈴木 2022-04-21 10:04:00
北海道 北海道新聞 「戦闘機供与」誤りと訂正 米国防総省報道官 https://www.hokkaido-np.co.jp/article/672158/ 国防総省 2022-04-21 10:03:00
北海道 北海道新聞 米、マスク義務違法で上訴 CDC「引き続き必要」 https://www.hokkaido-np.co.jp/article/672157/ 疾病対策センター 2022-04-21 10:02:00
マーケティング MarkeZine SaaSの急増で高まる顧客レビューの影響力。戦略的な収集・活用を支える「ITreview」とは? http://markezine.jp/article/detail/38651 戦略的な収集・活用を支える「ITreview」とはSaaS市場は急激に成長し、膨大な製品がひしめき合っている。 2022-04-21 10:30:00
海外TECH reddit Ohtani's Final Line vs. Astros: 6.0 IP, 1 H, 0 R, 0 ER, 12 SO, 1 BB, 81 pitches; On offense: 2 for 3, 1 BB, 1 2B, 1 R, 2 RBI https://www.reddit.com/r/baseball/comments/u8bksw/ohtanis_final_line_vs_astros_60_ip_1_h_0_r_0_er/ Ohtani x s Final Line vs Astros IP H R ER SO BB pitches On offense for BB B R RBICareer high in strikeouts as well EDIT He had one more AB where he flew out on offense for BB B R RBI in the game submitted by u Blazingbee to r baseball link comments 2022-04-21 01:11:48
海外TECH reddit [Post Game Thread] Light That Baby Up!! Halos take the series finale in Houston!!!! https://www.reddit.com/r/angelsbaseball/comments/u8cbtn/post_game_thread_light_that_baby_up_halos_take/ Post Game Thread Light That Baby Up Halos take the series finale in Houston submitted by u Thrust bot to r angelsbaseball link comments 2022-04-21 01:50:25
GCP Cloud Blog JA Analytics Hub で大規模なデータと分析アセットを安全に交換、プレビュー版提供開始 https://cloud.google.com/blog/ja/products/data-analytics/analytics-hub-data-exchange-now-in-public-preview/ Googleは、AnalyticsHubを利用して、信頼できる価値の高いソースのデータセットを簡単に検出して登録できるようにしたいと考えています。 2022-04-21 01:10: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件)