投稿時間:2022-12-14 06:24:05 RSSフィード2022-12-14 06:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog How Accenture Helps Utilities Transform Billing Management Through Uptility https://aws.amazon.com/blogs/apn/how-accenture-helps-utilities-transform-billing-management-through-uptility/ How Accenture Helps Utilities Transform Billing Management Through UptilitySmall and mid sized utilities have challenges within their vertical stack to commercialize and operate energy products such as power and gas An efficient utility billing system allows providers to track and monitor the utility services they offer manage billing processes collect data and engage well with customers Learn how AWS and Accenture collaborated to build a vertical solution called Uptility for utilities in regulated markets and how Uptility provides needed capabilities at low cost 2022-12-13 20:07:53
AWS AWS Mox Bank continues to reimagine banking in Hong Kong | Amazon Web Services https://www.youtube.com/watch?v=kWR8xj2XLGk Mox Bank continues to reimagine banking in Hong Kong Amazon Web ServicesMox Bank Limited Mox is a cloud native digital bank developed as a joint venture between Standard Chartered a year old international bank telecom and lifestyle leader HKT parent company PCCW and Asia s largest online travel agency Trip com Together they ve created one of the fastest growing digital banks in Hong Kong s history The Bank celebrated its second anniversary in September and its customer base has increased more than doubled year on year to almost K customers Through this growth stability security and safeguarding the customer have remained job number one AWS scalable services enable layers of defense and resiliency furthering the trust Mox customers have in the bank Mox Bank has also teamed up with global technology engineering partner GFT Working alongside the Mox engineers GFT designed a native bank operating on Vault a customized core technology platform from Thought Machine and deployed it on an AWS cloud based virtual infrastructure Hear more from David Walker Chief Data Security and Innovation Officer at Mox Bank as the bank embraces fintech innovation to reshape banking Learn more about AWS Financial Services Learn more about Mox Bank and AWS Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2022-12-13 20:43:48
海外TECH MakeUseOf 5 Times Facebook Failed Its Users https://www.makeuseof.com/times-facebook-failed-its-users/ record 2022-12-13 20:30:06
海外TECH DEV Community Stylify CSS: Automagic CSS bundles splitting into CSS layers in Astro.build https://dev.to/machy8/stylify-css-automagic-css-bundles-splitting-into-css-layers-in-astrobuild-3po9 Stylify CSS Automagic CSS bundles splitting into CSS layers in Astro buildUtility first CSS bundles can be very small But what if we could make them even smaller Split them for each page layout for example Some pages might not need styles from another one Learn how to split CSS bundles in Astro build automatically using Stylify CSS Video Guide Stylify CSS introductionStylify is a library that uses CSS like selectors to generate optimized utility first CSS based on what you write CSS like selectorsNo framework to studyLess time spent in docsMangled amp Extremely small CSSNo purge neededComponents Variables Custom selectorsIt can generate multiple CSS bundlesAlso we have a page about what problems Stylify CSS solves and why you should give it a try MotivationEach bundle can contain only necessary CSS This means almost zero unused CSS and in production it can be mangled and minified so the CSS is even smaller more info below The codeOk first the code then the explanation This code uses Stylify Astro Integration and the snippet can be found on Stylify Astro Snippets section Even though the code can look complicated it is actually pretty simple import stylify from stylify astro import hooks from stylify bundler import fastGlob from fast glob import path from path import fs from fs import fileURLToPath from url const pagesDir src pages const layoutsDir src layouts const stylesDir src styles type import stylify bundler BundlerConfigInterface const stylifyBundles const layoutCssLayerName layout const pageCssLayerName page const getFileCssLayerName filePath gt filePath includes pages pageCssLayerName layoutCssLayerName const getOutputFileName file gt const parsedFile path parse file const fileName parsedFile name toLowerCase const dirNameCleanupRegExp new RegExp pagesDir layoutsDir W g const dir parsedFile dir replace dirNameCleanupRegExp return dir length dir fileName css const createBundle file gt const fileCssLayerName getFileCssLayerName file return outputFile stylesDir fileCssLayerName getOutputFileName file files file cssLayer fileCssLayerName const createBundles files gt for const file of files stylifyBundles push createBundle file Map files in layouts pages and create bundlescreateBundles fastGlob sync pagesDir astro createBundles fastGlob sync layoutsDir astro Init Stylify Astro Integratonconst stylifyIntegration stylify bundler id astro Set CSS layers order cssLayersOrder Order will be layer layout page order layoutCssLayerName pageCssLayerName join Layers order will be exported into file with layout layer exportLayer layoutCssLayerName bundles stylifyBundles Add hook that processes opened files param import stylify bundler BundleFileDataInterface data hooks addListener bundler fileToProcessOpened data gt let content filePath data Only for layout and page files if filePath includes pages filePath includes layouts const cssFilePathImport import stylesDir getFileCssLayerName filePath getOutputFileName filePath if content includes cssFilePathImport if import S from S layouts S test content content content replace import S from S layouts S amp n cssFilePathImport else if s n test content content content replace s n amp cssFilePathImport n else content n cssFilePathImport n n content fs writeFileSync filePath content For all files const regExp new RegExp import S from S components S g let importedComponent const importedComponentFiles const rootDir path dirname fileURLToPath import meta url while importedComponent regExp exec content importedComponentFiles push path join rootDir src importedComponent data contentOptions files importedComponentFiles Wait for bundler to initialize and watch for directories to create new bundles when a file is addedhooks addListener bundler initialized bundler gt Watch layouts and pages directories If you plan to use nested directories like blog slug astro for which you want to automatize bundles configuration You will need to add the path to them here const dirsToWatchForNewBundles layoutsDir pagesDir for const dir of dirsToWatchForNewBundles fs watch dir eventType fileName gt const fileFullPath path join dir fileName if eventType rename fs existsSync fileFullPath return bundler bundle createBundle fileFullPath export default Add Stylify Astro Integration integrations stylifyIntegration How it worksThe code above is split into steps It finds all pages in src pages and all layouts in src layouts and calls the createBundles to create bundles configuration for us with the correct layer name and output file The Stylify integration is initialized and CSS layers order is configured so it will generate the order only into a file that has the layout CSS layer name bundler fileToProcessOpened hook is added This hook has two parts One part is done when this file is a layout or a page and the another for every opened file When a layout or a page file is opened it checks whether it contains a path to CSS file and if not it adds it to the head of the file For all other files it tries to check for imports If any component import is found it maps it as a dependency This way it can map a whole components dependency tree automatically so you just keep adding removing them and the CSS is generated correctlyWhen Bundler is initialized we can start watching for newly added files within the layout and pages directory Every time a new file is added we create a new Bundle The Stylify Integration is added to the Astro config When we run the dev command Stylify will do the following Map layout page filesGenerate CSS into correct files wrap the content into the correct CSS layer and adds links to these files into Astro templates If a new file in layout pages is created a new bundle is automatically addedAnd how does the output looks for production Layout src layouts Layout astro layer layout page layer layout b font size px Page src pages index astro layer page a color darkblue Integration exampleCheck out the interactive example on Stack Blitz ConfigurationThe examples above don t include everything Stylify can do Define componentsAdd custom selectorsConfigure your macros like ml px for margin leftDefine custom screensYou can map nested files in the templateAnd a lot moreFeel free to check out the docs to learn more Let me know what you think I will be happy for any feedback The Stylify is still a new Library and there is a lot of space for improvement 2022-12-13 20:06:57
Apple AppleInsider - Frontpage News Apple revives referral program to give $75 to new Apple Card owners https://appleinsider.com/articles/22/12/13/apple-revives-referral-program-to-give-75-to-new-apple-card-owners?utm_medium=rss Apple revives referral program to give to new Apple Card ownersApple has resurrected the Apple Card referral program and is offering in Daily Cash to a new user ーbut the referrer still gets nothing Apple CardThe company first launched the program in December and has revived it this year As a result Apple Card owners may see a notification from Apple Wallet or an email about the program Read more 2022-12-13 20:50:38
Apple AppleInsider - Frontpage News Xcode 14.2 released with support for iOS 16.2, macOS Ventura 13.1 https://appleinsider.com/articles/22/12/13/xcode-142-released-with-support-for-ios-162-macos-ventura-131?utm_medium=rss Xcode released with support for iOS macOS Ventura Apple has released Xcode with the latest version of the development suite updated alongside the company s operating system releases XcodeAs usual for Xcode Apple has updated its developer tool to version one that is available to download straight away The update arrives at the same time as iOS iPadOS watchOS tvOS and macOS Ventura Read more 2022-12-13 20:27:59
Apple AppleInsider - Frontpage News Holiday Gift Guide: best Apple Watch gift ideas from $20 to $100 https://appleinsider.com/articles/22/12/13/holiday-gift-guide-best-apple-watch-gift-ideas-from-20-to-100?utm_medium=rss Holiday Gift Guide best Apple Watch gift ideas from to Buy the Apple Watch owner in your life something special this holiday with a selection of gift ideas that you can get for less than Gift ideas for Apple Watch usersThe holiday shopping period is in full flow and time is running out to secure all the gifts you could possibly get for your friends and family Read more 2022-12-13 20:16:23
Apple AppleInsider - Frontpage News Apple preparing for third-party app stores by 2024 https://appleinsider.com/articles/22/12/13/apple-preparing-for-third-party-app-stores-by-2024?utm_medium=rss Apple preparing for third party app stores by Apple is reportedly bracing itself for European Union law changes that will come into force in and is preparing for third party app stores to exist on the iPhone and iPad App StoreThe introduction of the Digital Markets Act by the EU will stands to cause major changes for app marketplace operators like Apple specifically by allowing third party app stores to exist on iPhone and iPad With the rule changes on the horizon Apple is said to be getting ready to fall into compliance Read more 2022-12-13 20:12:23
海外TECH Engadget Congress introduces bill to ban TikTok over spying fears https://www.engadget.com/senate-house-tiktok-ban-bill-anti-social-ccp-act-205120387.html?src=rss Congress introduces bill to ban TikTok over spying fearsAmerican politicians aren t just restricting access to TikTok ーthey now hope to ban it outright Members of the House and Senate have introduced matching bills that would block transactions from any social media company in or influenced by China Russia Cuba Iran North Korea or Venezuela The ANTI SOCIAL CCP Act Averting the National Threat of Internet Surveillance Oppressive Censorship and Influence and Algorithmic Learning by the Chinese Communist Party is meant to shut down access to TikTok and other apps that could theoretically funnel American user data to oppressive governments censor news or otherwise manipulate the public The rationale echoes what US political leaders have argued for years While TikTok has taken efforts to distance its international operations from those in China such as by storing US data domestically critics have argued that parent company ByteDance is ultimately at the mercy of the Chinese government TikTok could potentially profile government workers and otherwise surveil Americans according to the often repeated claims Republican bill co sponsors Sen Marco Rubio and Rep Mike Gallagher tried to draw links between some ByteDance leadership and the Chinese Communist Party in an opinion piece in The Washington Post this November At the time directors had previously worked for state backed media and quot at least quot employees still did The bill is also sponsored by House Democrat Raja Krishnamoorthi In a statement a TikTok spokesperson said it was quot troubling quot that members of Congress were putting forward legislation to ban the app rather than waiting for a national security review to wind down The bills will quot do nothing to advance quot national security according to the company The firm added that it would quot continue to brief quot Congress on plans developed under the watch of security officials The social network has consistently denied plans to track American users or otherwise deliberately assist Chinese surveillance efforts in the country TikTok already faces some legal action The states of Maryland and South Dakota have banned TikTok on government devices over security concerns Indiana meanwhile sued TikTok for allegedly deceiving users about China s data access and child safety violations That lawsuit would fine TikTok and demand changes to the service s info handling and marketing claims Whether or not the bills become legislation isn t certain President Biden revoked former President Trump s orders to ban TikTok downloads and instead required a fresh national security review He s not expected to override his own order And while the bill sponsors characterize the measure as bipartisan it s not clear the call for a TikTok ban has enough support to clinch the necessary votes and reach Biden s desk To some degree the ANTI SOCIAL CCP Act is more a signal of intent than a practical attempt to block TikTok 2022-12-13 20:51:20
海外TECH Engadget IMDb now lets performers remove their age and personal details https://www.engadget.com/imdb-actors-real-age-optional-remove-202906962.html?src=rss IMDb now lets performers remove their age and personal detailsIMDb announced today that entertainment professionals can now choose whether to display their age and other demographic information on their profiles Screen performers union SAG AFTRA had pushed for the change for years viewing it as a front in the war on ageism in Hollywood The new policy lets anyone with an IMDb page claim their profile and choose whether their age and birth year birth name alternate names and other demographic information show on their profiles Although performers ages will remain on places like Wikipedia the actors union SAG AFTRA believes the policy will discourage age based discrimination In a letter to union members reported by Variety SAG AFTRA President Fran Drescher said she worked closely with IMDb for several months to influence the policy shift “This means professionals can choose how they want to represent themselves to fans and industry decision makers she wrote “And it will make it easier for casting directors producers and others to discover and hire talent from all backgrounds for their project In addition Drescher noted that the new policy covers free and paid IMDb accounts IMDb which Amazon owns spent years resisting the change In California passed a law barring websites from publishing the ages and birthdates of performers It was a popular law with performers as over people asked IMDb to remove their ages in the three months following the bill s passage However IMDb refused to oblige filed an injunction based on First Amendment rights and won SAG AFTRA and the state of California appealed but an appeals court upheld the initial ruling Apart from Drescher s note about working with IMDb it s unclear what factors led to Amazon s about face Although ageism isn t limited to any single industry Hollywood is a textbook example ーespecially towards women Dame Helen Mirren hasn t minced words on the subject describing the practice as “fucking outrageous in a interview “We all watched James Bond as he got more and more geriatric and his girlfriends got younger and younger It s so annoying 2022-12-13 20:29:06
海外TECH Engadget Boom finds a new design partner for its Symphony supersonic jet engine https://www.engadget.com/boom-overture-supersonic-jet-engine-symphony-partner-201150008.html?src=rss Boom finds a new design partner for its Symphony supersonic jet engineBoom has revealed more details about Symphony the engine for the Overture jet with which it aims to bring back commercial supersonic air travel after the retirement of Concorde Most importantly the company has secured a new partner to develop the engine after it parted ways with Rolls Royce in September nbsp FTT a division of Kratos Defense amp Security Solutions will help design Symphony Some of FTT s engineers were behind the F and F fighter jet engines so they have experience in powering supersonic aircraft Symphony is a medium bypass turbofan engine that will have the same basic architecture as current commercial aircraft engines However Boom says its new propulsion system is designed to help Symphony achieve pounds of thrust and speeds of Mach Boom claims that Overture will be able to fly between Newark and London in under four hours and San Francisco to Tokyo in around six hours Boom expects Symphony to deliver a percent increase in time on wing i e in flight time and claims it will have significantly lower maintenance costs than other engines The engine will be the first that s optimized for fully sustainable aviation fuel Boom says and it will operate at net zero carbon Symphony will also have a single stage fan that s designed for quiet operation Despite the switch in engine partners Boom says the jet is still on track for certification in Production is set to start in at a factory in North Carolina with the first jet scheduled to leave the factory in Boom now expects test flights to start in a year later than previously planned nbsp The company already has customers lined up American Airlines placed an order earlier this year for jets with an option for another United Airlines meanwhile has ordered Overture planes with an option for another 2022-12-13 20:11:50
海外TECH Engadget Apple is reportedly preparing to allow third-party app stores on iOS https://www.engadget.com/apple-third-party-app-stores-report-195840839.html?src=rss Apple is reportedly preparing to allow third party app stores on iOSApple is reportedly preparing to open iOS to competing app stores According to Bloomberg s Mark Gurman the company s software and services teams are redesigning the platform to quot open up key elements quot That effort is likely to end in Apple giving iPhone and iPad users the option to download third party apps without going through the App Store In turn that would allow developers to avoid the company s infamous and percent commissions on payments Gurman reports the forthcoming charges are primarily designed to placate European Union lawmakers who recently passed the bloc s sweeping Digital Markets and Services Act and will be initially implemented on the continent before potentially rolling out to other regions nbsp nbsp nbsp nbsp nbsp Apple did not immediately respond to Engadget s comment request nbsp nbsp According to Gurman Apple plans to have the changes ready to release alongside iOS next year Companies have until to be in full compliance with the Digital Markets Act The legislation is particularly problematic for Apple as it outlaws many of the speedbumps the company has relied on to make it difficult for consumers to leave iOS For instance the act calls for interoperability between different messaging platforms and equal access for outside developers to core operating system features Critically it also mandates that platform holders allow for sideloading nbsp Apple has consistently lobbied against sideloading calling it a security and privacy risk Gurman reports the company is considering whether it should enforce certain security requirements on software distributed outside the App Store quot Such apps also may need to be verified by Apple ーa process that could carry a fee quot he suggests nbsp nbsp There are other major changes that could come to iOS as a direct result of the Digital Markets Act Apple could open up major APIs and features including those that control the iPhone s NFC and camera technologies to outside developers Historically only the company s Wallet app and Apple Pay service have had access to the iPhone s NFC chip What s more the company is considering whether to drop its longstanding requirement that third party browsers must use its WebKit framework Apple may also further open up its Find My Network to competitors like Tile At the same time it appears there are some golden eggs the tech giant may be much more reluctant to give away Specifically Gurman reports RCS integration within iMessage is currently not on the table Google has pushed the messaging protocol for years going so far as to criticize Apple publically for not adopting it How likely Apple is to make those same concessions in the US is hard to tell Gurman notes the work the company is undertaking could quot lay the groundwork quot for similar changes in other markets However while American lawmakers are considering similar legislation to the Digital Markets Act their version the Open App Markets Act has yet to pass nbsp nbsp 2022-12-13 20:01:29
Cisco Cisco Blog Industrial Processes & Wireless Communications – Part I: Robots and AGV https://blogs.cisco.com/manufacturing/industrial-processes-wireless-communications-part-i-robots-and-agv Industrial Processes amp Wireless Communications Part I Robots and AGVThe Internet is littered with articles about Industry Adoption of digital industrial processes have accelerated since the German government led this initiative to maintain national industrial prowess For these processes to run over wireless infrastructure the communications technology must deliver against strict application requirements for performance and reliability 2022-12-13 20:17:34
Cisco Cisco Blog Certification Roadmaps: A Holistic View to Plan Your Certification Journey https://blogs.cisco.com/learning/a-holistic-view-to-plan-your-certification-journey Certification Roadmaps A Holistic View to Plan Your Certification JourneyCisco Certification Roadmaps offer a holistic framework that gives you the updated blueprint and exam information across all Cisco certifications 2022-12-13 20:01:20
海外科学 NYT > Science Scientists Achieve Nuclear Fusion Energy Breakthrough https://www.nytimes.com/2022/12/13/science/nuclear-fusion-energy-breakthrough.html research 2022-12-13 20:42:44
海外科学 NYT > Science Snow and Ice Batter Plains and Upper Midwest https://www.nytimes.com/article/winter-storm-snow-west-northern-plains.html Snow and Ice Batter Plains and Upper MidwestA weather system that clobbered the Sierra Nevada over the weekend with snow brought tornadoes to Texas on Tuesday and was expected to affect travel from the Central Plains to the Upper Midwest 2022-12-13 20:56:32
ニュース BBC News - Home US charges Sam Bankman-Fried with defrauding investors https://www.bbc.co.uk/news/technology-63957020?at_medium=RSS&at_campaign=KARANGA bankman 2022-12-13 20:04:14
ニュース BBC News - Home Rishi Sunak pledges more staff to help clear asylum backlog https://www.bbc.co.uk/news/uk-politics-63959729?at_medium=RSS&at_campaign=KARANGA rishi 2022-12-13 20:30:28
ニュース BBC News - Home UK weather: Snow and ice alerts extended as cold snap continues https://www.bbc.co.uk/news/uk-63956540?at_medium=RSS&at_campaign=KARANGA fresh 2022-12-13 20:15:23
ビジネス ダイヤモンド・オンライン - 新着記事 JR東海・葛西流「トップ人事の奥義」と“イエスマン”金子社長のささやかすぎる抵抗 - 迷走 皇帝なきJR東海 https://diamond.jp/articles/-/314197 名誉会長 2022-12-14 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 第二のマレリも!?自動車業界109社の倒産危険度が5軸チャートで一目瞭然!金利上昇、インフレに弱いのは? - 倒産危険度ランキング×インフレ・過剰債務で危ない725社 https://diamond.jp/articles/-/314186 第二のマレリも自動車業界社の倒産危険度が軸チャートで一目瞭然金利上昇、インフレに弱いのは倒産危険度ランキング×インフレ・過剰債務で危ない社自動車部品大手のマレリホールディングスが今年月に倒産したことは、自動車業界の苦境を強く印象付けた。 2022-12-14 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 新電力「経営危険度」ワースト7企業が猛反論、UPDATER社長「急速に黒字転換、問題なし!」 - 新電力 節電地獄 https://diamond.jp/articles/-/313819 updater 2022-12-14 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【自動車109社】倒産危険度ランキング「過剰債務×インフレ耐久度」反映の完全版!8位日産、1位は? - 倒産危険度ランキング×インフレ・過剰債務で危ない725社 https://diamond.jp/articles/-/314185 【自動車社】倒産危険度ランキング「過剰債務×インフレ耐久度」反映の完全版位日産、位は倒産危険度ランキング×インフレ・過剰債務で危ない社月配信の特集『選別開始倒産危険度ランキング』の業界にわたる各記事の中で、最も反響が大きかった自動車業界。 2022-12-14 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 再上場のスカイマーク、「あえて中小企業化」で手にしていた仰天の節税効果 - Diamond Premiumセレクション https://diamond.jp/articles/-/314258 再上場のスカイマーク、「あえて中小企業化」で手にしていた仰天の節税効果DiamondPremiumセレクションJTBやスカイマークなど明らかな大企業が、資本金をあえて億円に減資し税法上の「中小企業」になるー。 2022-12-14 05:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 FRB利上げの行方、インフレ鈍化で熱帯びる議論 - WSJ発 https://diamond.jp/articles/-/314582 鈍化 2022-12-14 05:03:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース 「人は誰でも特別な存在として扱われたい」~ホテルプロデューサー・龍崎翔子氏のマネジメント原則 https://dentsu-ho.com/articles/8412 龍崎翔子 2022-12-14 06:00:00
ビジネス 東洋経済オンライン 新総裁就任前に動き出した日本銀行の金融政策 審議委員のポジショントーク連発の背景を探る | 若者のための経済学 | 東洋経済オンライン https://toyokeizai.net/articles/-/639236?utm_source=rss&utm_medium=http&utm_campaign=link_back 日本銀行 2022-12-14 05:40:00
ビジネス 東洋経済オンライン 誤解多い「日本の生産性」物価高の今、やるべきこと 日本に欠けている「ポスト・コロナの構想力」 | 日本はなぜ上がらない? 「生産性」の謎を解く | 東洋経済オンライン https://toyokeizai.net/articles/-/639491?utm_source=rss&utm_medium=http&utm_campaign=link_back 労働生産性 2022-12-14 05:20: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件)