投稿時間:2022-03-01 20:27:29 RSSフィード2022-03-01 20:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese 11.6インチFHDの大画面でゲームの楽しみ方を変える。Switchがピッタリ収まるモバイルディスプレイ「ORION」 https://japanese.engadget.com/mobile-display-orion-105029394.html インチFHDの大画面でゲームの楽しみ方を変える。 2022-03-01 10:50:29
IT ITmedia 総合記事一覧 [ITmedia News] ウクライナで人々を結ぶViberに驚く 数多あるメッセージアプリ、どう使い分けてる? https://www.itmedia.co.jp/news/articles/2203/01/news185.html itmedia 2022-03-01 19:30:00
IT ITmedia 総合記事一覧 [ITmedia News] ワコムのECサイトがサービス停止、物流パートナーにサイバー攻撃 個人情報の流出はなし https://www.itmedia.co.jp/news/articles/2203/01/news194.html itmedia 2022-03-01 19:08:00
AWS lambdaタグが付けられた新着投稿 - Qiita Cloud Watch Alarm + SNS + LambdaでECS・Fargateのリソース状態をSlack通知する(Terraform) https://qiita.com/hengineer/items/32ba854054070f8b3e2c 今回はSNSからの実行を許可する実装になっています。 2022-03-01 19:07:14
python Pythonタグが付けられた新着投稿 - Qiita 【個人開発】Python+Seleniumでソーラーパネルの原価償却を自動集計 https://qiita.com/hatosaburo/items/9dbaafb76857e4792971 計算が面倒になるし・・・実現方法データの取得方法がWebでの確認からになるので、PythonSeleniumを使い、Webからのデータ取得を自動化してみるラズパイのcronで月末に度、pyを起動する取得したデータはcsvで保管する後にWebアプリで見える化に活用したいLineNotityで自分のスマホに通知する月の作業になるが、Webにログインして、データを記録してという作業が自動化されるだけでも楽である。 2022-03-01 19:40:54
技術ブログ Mercari Engineering Blog メルカリShopsにおける開発の進め方 https://engineering.mercari.com/blog/entry/20220301-how-to-proceed-mercari-shops-development/ hellip 2022-03-01 10:00:48
技術ブログ Developers.IO CX事業本部にジョインしました福角です https://dev.classmethod.jp/articles/fukusumi-joined-classmethod/ 金融 2022-03-01 10:43:12
海外TECH DEV Community ❄️ Serverless functions Netlify 🚀 https://dev.to/aravindvcyber/serverless-functions-netlify-4mi2 ️Serverless functions Netlify A serverless api to publish my media assets to cloudinary media storage is built part of the this projectHere I am using Netlify functions to demonstrate this capability Why Netlify for this project Netlify is an all in one platform for automating modern web projects Replace your hosting infrastructure continuous integration and deployment pipeline with a single workflow Integrate dynamic functionality like serverless functions user authentication and form handling as your projects grow Millions of developers use Netlify to ship faster simplify their workflows and scale effortlessly Why publishing to cloudinary ️Beisides acting us a bucket to store media assets on cloud cloudinary also helps by transform images and videos to load faster with no visual degradation automatically generate image and video variants and deliver high quality responsive experience to increase conversions for our websites Also it also supports AI and ML on the analysis over the media resoure with inhouse and other wellknow solutions in it s market place Besides that is also offers its web console to manage the media artifacts This can also be very much helpful for amateur project developers to have a scalable asset storage transformation content delivery solutions on top of their solutions You may try the below preview link to understand more on this video q auto v website refresh dx Developer Experience hero v mp ts cloud sync I have only built this as potential capability which i very much require to have scale my amateur blogging solutions without any bottleneck hopefully in future and yes would make this util open soure once fully ready Initially I built this as a express api which uses multer and streamifier to my publish my media to cloudinary Then i decided to leverage netlify functions to help automate my ci cd stack and also have a bridge api available always on demand like lamdba and going serverless But quickly i realised that deploying to netlify or may be other solutions raise some warning in using multer since it has deprecated buffer feature which causing a stopper in our working in the last hours of deployment Hopefully multer will release it v soon with stream handling support I refractored this into by completely replacing multipart upload feature into streaming upload endpoint which gave significant advantages in terms of the speed of upload and the memory involved in every invocation Because since i pipe the binary streaming data from client end directly into streamifier to furthur pipe to cloudinary v upload stream function Eventually i was able to achieve what i have planned for this day long project conceived to participate and share my solution in utilising netlify Don t try the endpoint yourself since netlify function endpoint will be validating my authorization key only then cloudinary keys will be supplied to further publish this The cloudinary asset links are secured and signed based on the access level i may have set for the resource in my presets while i upload Netlify function lambda logs Mar PM dbc INFO netlify functions index stream NetlifyHackathonPosterMar PM dbc INFO Authorization Verified for the resource netlify functions index stream NetlifyHackathonPosterMar PM dbc INFO asset id dbadafebffddcb mimetype image jpg asset size KB public id private NetlifyHackathonPoster secure url Tfma v private NetlifyHackathonPoster jpg Overwritten false created at T Z etag eaebaaffe signature bbdfeedfdfbdce Mar PM dbc Duration ms Memory Usage MB When I reupload the same image this will be overwritten so that my resource name is going to be the same Mar PM eec INFO netlify functions index stream NetlifyHackathonPosterMar PM eec INFO Authorization Verified for the resource netlify functions index stream NetlifyHackathonPosterMar PM eec INFO asset id dbadafebffddcb mimetype image jpg asset size KB public id private NetlifyHackathonPoster secure url Tfma v private NetlifyHackathonPoster jpg Overwritten true created at T Z etag eaebaaffe signature bbdfeedfdfbdce Mar PM eec Duration ms Memory Usage MB As a amateur tech blogger i feel this capability to stream uploads to my custom serverless function could be further vertically integrated to automate my publishing process and manage the data at scale and flexibily and securely without relying on other thirdparty hacks How I read the file stream inside the function let file id string publicName req params asset id async function upload req any let result any await streamUpload file id req let logJSON any asset id req params asset id mimetype result resource type result format asset size formatBytes result bytes public id result public id if result public id length gt logJSON logJSON secure url result secure url Overwritten result overwritten undefined result overwritten false created at result created at etag result etag signature result signature asset id result asset id console log logJSON res status res json result else res status res json error Unknown error Also find my writeable cloudinary v stream created export const stream upload public id string resolve any reject any gt let stream cloudinary v uploader upload stream stream upload options public id public id error any result any gt if result resolve result else reject error return stream Uploaded screenshotsThanks for supporting Would be really great if you like to Buy Me a Coffee to help boost my efforts Original post at Dev Post 2022-03-01 10:28:54
海外TECH DEV Community 5 Secret features of JSON you didn't know about 🤯 https://dev.to/siddharthshyniben/5-secret-features-of-json-you-didnt-know-about-5bbg Secret features of JSON you didn x t know about I m pretty sure you have used the global JSON object for a variety of things like in fetch requests and to avoid the dreaded object Object I also bet you didn t know about the rest of the largely unknown features that JSON can provide JSON can do cool stuff like revive data use a custom format to encode decode data hide certain properties in stringified data and format your JSON Sound interesting Let s dive into it FormattingThe default stringifier also minifies the JSON which looks uglyconst user name John age isAdmin true friends Bob Jane address city New York country USA console log JSON stringify user gt name John age isAdmin true friends Bob Jane address city New York country USA JSON stringify has a built in formatter too console log JSON stringify user null name John age isAdmin true friends Bob Jane address city New York country USA If you are wondering what that null is we ll come to it later In this example the JSON was formatted with spaces of indentation We can also specify a custom character to use for indentation console log JSON stringify user null lol lol name John lol age lol isAdmin true lol friends lollol Bob lollol Jane lol lol address lollol city New York lollol country USA lol Hiding certain properties in stringified dataJSON stringify had a second argument which is largely unknown It s called the replacer and it s a function or array that decides which data to keep in the output and which not to Here s a simple example where we can hide the password of a user const user name John password age console log JSON stringify user key value gt if key password return return value And this is the output name John age We can further refactor this function stripKeys keys return key value gt if keys includes key return return value const user name John password age gender male console log JSON stringify user stripKeys password gender Which outputs name John age You can also pass an array to get certain keys only const user name John password age console log JSON stringify user name age Which output the same thing The cool thing is this works on arrays too If you had a huge array of cakes const cakes name Chocolate Cake recipe Mix flour sugar cocoa powder baking powder eggs vanilla and butter Mix in milk Bake at degrees for hour ingredients flour sugar cocoa powder baking powder eggs vanilla butter tons of these We can easily do the same thing and the replacer will be applied to each cake const cakes name Chocolate Cake recipe Mix flour sugar cocoa powder baking powder eggs vanilla and butter Mix in milk Bake at degrees for hour ingredients flour sugar cocoa powder baking powder eggs vanilla butter tons of these console log JSON stringify cakes name We get this name Chocolate Cake name Vanilla Cake Cool stuff Using toJSON to create custom output formatsIf an object implements the toJSON function JSON stringify will use it to stringify the data Consider this class Fraction constructor n d this numerator n this denominator d console log JSON stringify new Fraction This would output numerator denominator But what if we wanted to replace this with a string Enter toJSONclass Fraction constructor n d this numerator n this denominator d toJSON return this numerator this denominator console log JSON stringify new Fraction JSON stringify respects the toJSON property and output Reviving dataOur fraction example above works nicely But what if we want to revive the data Wouldn t it be cool if the fraction would be magically brought back when we parse the JSON again We can Enter revivers class Fraction constructor n d this numerator n this denominator d toJSON return this numerator this denominator static fromJSON key value if typeof value string const parts value split map Number if parts length return new Fraction parts return value const fraction new Fraction const stringified JSON stringify fraction console log stringified const revived JSON parse stringified Fraction fromJSON console log revived Fraction numerator denominator We can pass a second argument to JSON parse to specify a reviver function The job of the reviver is to revive stringified data back into it s original form Here we are passing a reviver which is the static proprty fromJSON of the Fraction class In this case the reviver checks if the value is a valid fraction and if it is it creates a new Fraction object and returns it Fun fact this feature is used in the built in Date object Try looking up Date prototype toJSONThat s why this works console log JSON stringify new Date gt T Z To revive the date we can use JSON parse function reviveDate key value const regex d d d T d d d d Z if typeof value string amp amp regex test value return new Date value return value console log JSON parse T Z reviveDate gt Tue Mar GMT Pacific Daylight Time Using revivers to hide dataLike resolvers revivers can also be used to hide data It works in the same way Here s an example const user JSON stringify name John password age console log JSON parse user key value gt if key password return return value And this is the output name John age As an exercise check if you can rewrite the previously shown resolvers as revivers That s a wrap Let me know if you know any other cool JSON tricks Thanks for reading 2022-03-01 10:24:19
海外TECH DEV Community 10 Amazing Website Every Developer Should Know https://dev.to/dhananjaywarade/10-amazing-website-every-developer-should-know-5923 Amazing Website Every Developer Should KnowThere are so many websites to make the work of developers easier Everyone doesn t know all In this article we will see Must Visit Killer Websites For Developers DevDocsDevDocs brings together numerous API documentation in a single searchable interface You will find docs related to various programming languages technologies in one place Poet soThis site is useful for developers who wish to post photos of their tweets on social media Website transforms your tweet into a beautiful and editable design ray soThis website allows you to take beautiful screenshots of codes It also has a dark mode and some preloaded themes for different programming languages You can also use its VS Code extension roadmap shThis website provides roadmaps guidelines and other educational content to assist developers in choosing a path and directing their learning It is very helpful for a beginner as well as a learner who needs guidance LambdaTestLambdaTest is a cloud based cross browser testing platform that lets you test web applications on over different browsers operating systems and devices LambdaTest allows you to test cross browser compatibility both manually and automatically daily devIt is a platform where you can find so many good articles to read daily It shows the best articles from various platforms directly in your feed Stay updated with quality content from various platforms directly into your browser by using its extension ShowwcaseShowwcase is a new social media website specially for people who code connect build community and find new opportunities It is a LinkedIn like platform but only focused on developers You can join and follow me there CSS TRICKSYou can master your web development skills by learning every basics about CSS from this website If you didn t already know CSS is what makes pages on the web look beautiful MedusaAn open source Shopify alternative Medusa is an open source headless commerce engine that is fast and customizable It s Free SMARTMOCKUPSWhy give your time learning how to use Photoshop Smartmockups allow you to generate gorgeous high resolution mockups straight in your browser and across numerous devices using a single interface The quickest web based mockup tool available No prior experience or abilities are required and the library of professional mockups is always growing 2022-03-01 10:18:51
海外TECH Engadget YouTube blocks RT and Sputnik channels across Europe https://www.engadget.com/youtube-blocks-rt-sputnik-across-europe-101619950.html?src=rss YouTube blocks RT and Sputnik channels across EuropeGoogle is the latest to join the growing list of tech companies blocking access to Russian state media across Europe In a tweet the company has revealed that it s blocking YouTube channels connected to RT and Sputnik in Europe following the European Commission s announcement that it will quot ban the Kremlin s media machine in the EU quot European Commission President Ursula von der Leyen made the declaration a few days ago adding that RT Sputnik and their subsidiaries will no longer be able to spread their lies to justify Putin s war quot The tech giant said it ll take time for its systems to fully ramp up so EU residents may still be able to access channels affiliated with the media organizations at the moment It also said that it has a team monitoring the situation around the clock to take swift action perhaps to ensure no new channels pop up to take the place of the ones being blocked nbsp Due to the ongoing war in Ukraine we re blocking YouTube channels connected to RT and Sputnik across Europe effective immediately It ll take time for our systems to fully ramp up Our teams continue to monitor the situation around the clock to take swift action ーGoogle Europe googleeurope March YouTube barred the outlets from being able to monetize their content on the platform a few days ago citing sanctions against their home country In addition it made sure their videos appear less frequently as recommendations and made their channels inaccessible in Ukraine following a request from the country s government Eastern European media outlet Nextatweeted out a copy of the letter Alexander Tkachenko Ukraine s Minister of Culture and Information Policy sent to YouTube in which he asked the website to quot block access of the aggressor state s propaganda channels not only in Ukraine but around the world quot So far YouTube has only blocked RT and Sputnik in Ukraine and the EU Facebook restricted access to the state owned media outlets across the EU a few days ago after it removed their ability to monetize their pages with ads Twitter halted ads in Ukraine and Russia as well quot to ensure critical public safety information is elevated and ads don t detract from it quot Microsoft followed suit banning the publications from its ad network pulling their news apps from the Windows store and de ranking them in Bing s search results Google started downranking results from the outlets in though it s unclear if that has changed over the years Earlier TikTok also made the RT and Sputnik accounts inaccessible to audiences within the EU 2022-03-01 10:16:19
医療系 医療介護 CBnews 病院医師不足、自由開業制が続く限り「解消せず」-社保審・医療部会で委員 https://www.cbnews.jp/news/entry/20220301192020 医師不足 2022-03-01 19:30:00
医療系 医療介護 CBnews 腎臓再生へ、ブタ胎仔腎臓のサルへの移植に成功-慈恵医大と大日本住友製薬、拒絶反応弱く生着し発育 https://www.cbnews.jp/news/entry/20220301184004 拒絶反応 2022-03-01 19:25:00
金融 金融庁ホームページ 職員を募集しています。(金融モニタリング業務に従事する職員【弁護士】) https://www.fsa.go.jp/common/recruit/r3/souri-16/souri-16.html Detail Nothing 2022-03-01 11:30:00
ニュース @日本経済新聞 電子版 都道府県などが指定した区域内の盛り土を許可制とし、無許可造成などをした法人に最高3億円の罰金。熱海の土石流被害を受け、政府は違法な盛り土への抑止力を向上。土地の用途にかかわらず一律に規制します。 https://t.co/U56QDtT08A https://twitter.com/nikkei/statuses/1498614090297708546 都道府県などが指定した区域内の盛り土を許可制とし、無許可造成などをした法人に最高億円の罰金。 2022-03-01 11:00:16
ニュース @日本経済新聞 電子版 ウクライナ軍が米欧諸国から受け取った携行型の兵器を使って抵抗。対戦車ミサイル「ジャベリン」などの小型武器を持って前線に展開し、ロシアの侵攻を抑えています。 https://t.co/UlJ4Mns0xi https://twitter.com/nikkei/statuses/1498609010857099268 ウクライナ軍が米欧諸国から受け取った携行型の兵器を使って抵抗。 2022-03-01 10:40:05
ニュース @日本経済新聞 電子版 ロシア軍、主要都市で民間人攻撃 大量破壊兵器も使用か https://t.co/1Mvu6Kn4CP https://twitter.com/nikkei/statuses/1498608146377428997 大量破壊兵器 2022-03-01 10:36:39
ニュース @日本経済新聞 電子版 にぎわい取り戻せ、感染対策へ新技術 日経メッセ https://t.co/AOFUtreGhL https://twitter.com/nikkei/statuses/1498605643598823427 感染対策 2022-03-01 10:26:42
ニュース @日本経済新聞 電子版 ウクライナ侵攻を巡る国連の緊急特別会合。「状況は中国が望まないところまで発展」。ロシアが核態勢の強化に言及し、より踏み込んだ発言をしたとみられます。(各界エキスパートがコメントを投稿した記事です) ▶ひとこと解説「Think!」… https://t.co/elK0cRMble https://twitter.com/nikkei/statuses/1498603976102662145 ウクライナ侵攻を巡る国連の緊急特別会合。 2022-03-01 10:20:05
ニュース @日本経済新聞 電子版 [社説]ロシアから退く石油メジャーの重い決断 https://t.co/sGvSoJFJU4 https://twitter.com/nikkei/statuses/1498603363897802756 石油メジャー 2022-03-01 10:17:39
ニュース @日本経済新聞 電子版 [社説]サイバー攻撃へ警戒強めよ https://t.co/dEoMzqeiId https://twitter.com/nikkei/statuses/1498599331141615617 社説 2022-03-01 10:01:37
ニュース BBC News - Home Ukraine: Vladimir Putin using 'barbaric' tactics, Boris Johnson says https://www.bbc.co.uk/news/uk-60565392?at_medium=RSS&at_campaign=KARANGA barbaric 2022-03-01 10:51:11
ニュース BBC News - Home What are the UK's 'Living with Covid' plans? https://www.bbc.co.uk/news/explainers-52530518?at_medium=RSS&at_campaign=KARANGA legal 2022-03-01 10:26:51
北海道 北海道新聞 カラスから高病原性鳥インフル 標津町で回収、今季18例目 https://www.hokkaido-np.co.jp/article/651508/ 根室管内 2022-03-01 19:18:00
北海道 北海道新聞 ドローン操縦学べる教習コース 酪農学園大と農業用資材販売業者が開設 https://www.hokkaido-np.co.jp/article/651502/ 酪農学園大 2022-03-01 19:16:54
北海道 北海道新聞 絵本作家ちきさんのギャラリー、故郷本別に 町図書館に新年度開設 https://www.hokkaido-np.co.jp/article/651506/ 絵本作家 2022-03-01 19:16:00
北海道 北海道新聞 FMはまなすでアートを語る 岩見沢の画家、4月から新番組 https://www.hokkaido-np.co.jp/article/651503/ mayamaxx 2022-03-01 19:12:00
北海道 北海道新聞 北見のホタテ貝柱入りマヨネーズ人気急上昇 テレビで紹介、翌日注文2千件 https://www.hokkaido-np.co.jp/article/651500/ 販売業 2022-03-01 19:07:00
北海道 北海道新聞 民主国家の結束呼びかけ バイデン大統領、1日に初の一般教書演説 https://www.hokkaido-np.co.jp/article/651499/ 一般教書演説 2022-03-01 19:04:00
北海道 北海道新聞 パラ滑降座位、村岡と鈴木が2位 アルペン日本勢、公式練習 https://www.hokkaido-np.co.jp/article/651498/ 公式練習 2022-03-01 19:03:00
北海道 北海道新聞 えづらファーム、地域活性化コンクール優秀賞 遠軽で「農家民宿」好調 https://www.hokkaido-np.co.jp/article/651497/ 地域活性化 2022-03-01 19:02:00
IT 週刊アスキー セガの新作スマホRPG『シン・クロニクル』キャラクター紹介トレーラーが続々公開 https://weekly.ascii.jp/elem/000/004/084/4084923/ 配信 2022-03-01 19:40:00
IT 週刊アスキー 子育て世代が抱える生活課題に応えるオンラインセミナーに参加しよう! 子育て世代を応援するオンライン企画「ONE 子育て応援セミナー」を開催 https://weekly.ascii.jp/elem/000/004/084/4084916/ 地域密着型 2022-03-01 19:30:00
IT 週刊アスキー THQ Nordicが携帯ゲーミングPC「Steam Deck」対応コンテンツを紹介するトレーラーを公開! https://weekly.ascii.jp/elem/000/004/084/4084922/ steamdeck 2022-03-01 19:25:00
IT 週刊アスキー IIJmio、「ギガプラン」を値下げ 4GBプランを990円に https://weekly.ascii.jp/elem/000/004/084/4084924/ iijmio 2022-03-01 19:25: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件)