投稿時間:2022-03-08 02:45:32 RSSフィード2022-03-08 02:00 分まとめ(55件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Architecture Blog Celebrate International Women’s Day all week with the Architecture Blog https://aws.amazon.com/blogs/architecture/celebrate-international-womens-day-with-us-on-the-architecture-blog/ Celebrate International Women s Day all week with the Architecture BlogCompanies committed to diversity gender or otherwise tend to be more creative and innovative and have higher retention and engagement rates Diverse leadership can provide excellent role models for younger people looking for a career in STEM those who are transitioning into the industry from an “unconventional career path or those who are returning to … 2022-03-07 16:38:14
AWS AWS Compute Blog Decoding protobuf messages using AWS Lambda https://aws.amazon.com/blogs/compute/decoding-protobuf-messages-using-aws-lambda/ Decoding protobuf messages using AWS LambdaThis post shows how to create a Lambda function to decode in real time protobuf messages You import the proto message definition in a development environment and compile it to generate the Python source code 2022-03-07 16:17:05
Ruby Rubyタグが付けられた新着投稿 - Qiita ユーザー詳細ページで params[:id] が取得できない https://qiita.com/murara_ra/items/60a10757b60ac3a53eef 過去にオンライン学習で作ったアプリのコードを見ても確かにrootpathを設定したページにパラメーターの記述がない。 2022-03-08 01:30:31
AWS AWSタグが付けられた新着投稿 - Qiita Rails Docker ec2 本番環境のエラーを確認する https://qiita.com/taigamur/items/9a11fa59cb711ceca25b 本番環境で以下のようなエラーが発生解決方法まずはecにSSH接続する。 2022-03-08 01:38:19
Docker dockerタグが付けられた新着投稿 - Qiita Rails Docker ec2 本番環境のエラーを確認する https://qiita.com/taigamur/items/9a11fa59cb711ceca25b 本番環境で以下のようなエラーが発生解決方法まずはecにSSH接続する。 2022-03-08 01:38:19
Ruby Railsタグが付けられた新着投稿 - Qiita Rails Docker ec2 本番環境のエラーを確認する https://qiita.com/taigamur/items/9a11fa59cb711ceca25b 本番環境で以下のようなエラーが発生解決方法まずはecにSSH接続する。 2022-03-08 01:38:19
Ruby Railsタグが付けられた新着投稿 - Qiita ユーザー詳細ページで params[:id] が取得できない https://qiita.com/murara_ra/items/60a10757b60ac3a53eef 過去にオンライン学習で作ったアプリのコードを見ても確かにrootpathを設定したページにパラメーターの記述がない。 2022-03-08 01:30:31
技術ブログ Developers.IO CloudWatch Synthetics Canaries でクライアント証明書が必要なエンドポイントの監視を行う https://dev.classmethod.jp/articles/cloudwatch-synthetics-canary-client-cert/ amazon 2022-03-07 16:05:14
海外TECH Ars Technica Game industry unites behind call to cut off Russian market https://arstechnica.com/?p=1838653 corporate 2022-03-07 16:21:23
海外TECH MakeUseOf 10 Fun Alexa Games for Kids https://www.makeuseof.com/fun-alexa-games-for-kids/ alexa 2022-03-07 16:45:13
海外TECH MakeUseOf How to Encrypt Your Windows 11 Hard Drive https://www.makeuseof.com/windows-11-encrypt-hard-drive/ windows 2022-03-07 16:15:13
海外TECH DEV Community Appendix: Reliability (Failure Management) - AWS Well-Architected Framework Study Guide https://dev.to/aidutcher/appendix-reliability-failure-management-aws-well-architected-framework-study-guide-pl7 Appendix Reliability Failure Management AWS Well Architected Framework Study GuideReturn to Well Architected Framework GuideAppendix ReliabilityHow do you back up data Identify and back up all data that needs to be backed up or reproduce the data from sourcesSecure and encrypt backupsPerform data backup automaticallyPerform periodic recovery of the data to verify backup integrity and processesHow do you use fault isolation to protect your workload Deploy the workload to multiple locationsAutomate recovery for components constrained to a single locationUse bulkhead architectures to limit scope of impactHow do you design your workload to withstand component failures Monitor all components of the workload to detect failuresFail over to healthy resourcesAutomate healing on all layers Use static stability to prevent bimodal behaviorSend notifications when events impact availabilityHow do you test reliability Use playbooks to investigate failuresPerform post incident analysisTest functional requirementsTest scaling and performance requirementsTest resiliency using chaos engineeringConduct game days regularlyHow do you plan for disaster recovery DR Define recovery objectives for downtime and data lossUse defined recovery strategies to meet the recovery objectivesTest disaster recovery implementation to validate the implementationManage configuration drift at the DR site or regionAutomate recoveryReturn to Well Architected Framework Guide 2022-03-07 16:26:58
海外TECH DEV Community Playing with webdriver https://dev.to/crinklywrappr/playing-with-webdriver-3ek8 Playing with webdriverWebdriver has been a persistently alluring technology since I discovered it a couple of years ago However regular HTTP clients have always been sufficient for my needs I have recently wanted to pull some data off the local church website and I have been unable to log in with any HTTP clients So I attempted to throw Etaoin at the problem and it worked marvelously You will need a username and password for a congregate site to follow along I suspect the routes will be identical Getting started require etaoin api as api def base url def user def pass def ff api firefox Logging in is easy api go ff str base url members login api fill multi ff username user password pass api submit ff id password After submitting the login form I am unsure how to verify that the member landing page has loaded So for now I advise just waiting a few seconds If you re following along you will have the browser in front of you and can eyeball it I would appreciate any suggestions for improvement here We re in so what now Well I have trouble remembering names and faces What if I had a flashcard system to help me memorize them We can build that from the directory Let s navigate to the directory page and inspect it before proceeding api go ff str base url members directory It looks like each directory element is identifiable by the album class Let s dig into an album tag lt div class album gt lt a href members directory family XXX gt lt span class album img gt lt img src image url alt gt lt span gt lt span class album title gt Doe John lt span gt lt a gt lt div gt We ll need a couple of functions One takes an album and grabs the tag s value with class album title and the other grabs the image source require clojure string as s defn get album title album entry gt gt class album title api child ff album entry api get element text el ff defn get album image album entry as gt album entry api child ff tag img api get element attr el ff src s replace str base url This code may look familiar because it is similar to the kind of web scraping you would do with a regular HTTP client If not I ve got you covered album entry represents a DOM element like the lt div class album gt tag we inspected earlier children and all Call the child function to get the sub element we want and then finally a get element lt thing gt function returns the string we need Let s put it together gt gt class album api query all ff mapv juxt get album title get album image gt Doe John path to image jpg Doe Jane path to image jpg At this point I am beginning to lose interest But I like having options So let s convert this to JSON and print it to the console You can see the project herePerhaps I will revisit and finish the project in another post 2022-03-07 16:26:16
海外TECH DEV Community JS FUNDAMENTALS - If/Else vs Switch vs Ternary Operator https://dev.to/rahimshahad/js-fundamentals-ifelse-vs-switch-vs-ternary-operator-2n1l JS FUNDAMENTALS If Else vs Switch vs Ternary OperatorOftentimes when programming we are presented with situations where we have to write code that produces a certain output value result based on what the input is and any conditions surrounding it In Javascript there are three ways to handle such situations You can use either an if else statement the switch statement or the ternary operator These all work quite similarly but have their specific use cases and we are going to dive into them right away If Else StatementThe if else statement has two primary parts The if true block which states what should be returned if the given condition is met The else false block which states what should be returned if the condition in the if block isn t met This is true for a problem with only one condition as shown below if condition code to be executed if true else code to be executed if false One may ask what happens if there s more than one condition Well that s where the else if block comes in The else if block is used when the problem has more than one condition as shown below Think of it as basically as second or third if block based on how many conditions there are if condition code to be executed if condition is met else if condition code to be executed if condition is not met but condition is met else code to be executed if neither conditions is met So you can basically use the if else statement for a problem with any number of conditions by simply having multiple else ifs But you can imagine how repetitive and confusing that would be if the problem had say a conditions That s literally a bug waiting to happen A way around this is to use the Switch statement The Switch StatementThe switch statement is often the preferred method to use when we have to test for more than conditions This is because It is much easier to read and understand than an if else statementIt works faster This is because rather than check to see if each condition is satisfied sequentially like in an if else statement the switch statement checks all conditions simultaneously This is what a switch statement looks likeswitch variable case value code to be executed break case value code to be executed break case value code to be executed break case value code to be executed break default code to be executed The switch statement compares the given variable to each value by strict equality and decides which code to run If none of the given values match the variable the code under default is run It is worth noting that since the switch statement only checks for equality it is not suitable for evaluating boolean expressions The Ternary OperatorThe ternary operator is basically an if else statement written in one line It take three arguments First is the conditionSecond is the code to be executed if the condition is trueThird is the code to be executed if the condition is falseThis is what it looks like condition code run if true code run if false Since the ternary operator is an expression and not a statement like an if else its output is always a value We can as a result store the value of the operation in a variable and pass it on to another piece of code This not possible with an if else statement or a switch statement ConclusionUse if else if the operation involves not more than conditions Use the switch statement if the operation involves more than conditions Use the ternary operator when you want to make a quick decision and set the result to a variable 2022-03-07 16:25:55
海外TECH DEV Community The fastest way to Host your static website https://dev.to/devsuite/the-fastest-way-to-host-your-static-website-37ki The fastest way to Host your static websiteIn this article I will show you how you can create and deploy your static website very fast When I want to create a static website and want to deploy it I usually use these steps In this article We will create a product launch timer website which will have some time and will be decrementing the time every second Create an HTML page with a timerDeploy static websiteConnect our custom domainLet s create an HTML page that will have a timer lt DOCTYPE HTML gt lt html gt lt head gt lt meta name viewport content width device width initial scale gt lt link href Hyperlegible rel stylesheet gt lt link rel icon href wall png gt lt title gt The Awesome Company Inc lt title gt lt head gt lt body gt lt style type text css gt html height body font family Atkinson Hyperlegible font size px height p text align center font size px margin top px container display flex align items center justify content center height lt style gt lt body onload loadInitialCount gt lt div class container gt lt div gt lt center gt lt h gt Product Launch In lt h gt lt p id demo gt lt p gt lt h gt The Awesome Company Inc lt h gt lt center gt lt div gt lt div gt lt body gt lt script gt Set the date we re counting down tovar countDownDate new Date Mar getTime Update the count down every secondvar x setInterval function Get today s date and time var now new Date getTime Find the distance between now and the count down date var distance countDownDate now Time calculations for days hours minutes and seconds var days Math floor distance var hours Math floor distance var minutes Math floor distance var seconds Math floor distance Output the result in an element with id demo document getElementById demo innerHTML days d hours h minutes m seconds s If the count down is over write some text if distance lt clearInterval x document getElementById demo innerHTML EXPIRED lt script gt lt body gt lt html gt Now we will deploy it on the cloud quickest way possible When I want to host any static sites I directly go to Netlify It s an awesome platform where you can deploy your sites easily and free of cost Simply create your account and log in to Netlify Click on Add new siteClick on Deploy Manually Here you will need to just drag the folder where you have your index html file and that s it it will give you an address where your site is live You can go to this URL and check Now let s connect our own domain name to our page You can buy your domain from GoDaddy Namecheap or any other domain registrar For this article I already have a domain that I will be using Go to Domain SettingsClick on Add Custom DomainEnter your domain name and click Verify then click Add domain Now on your Domain Settings Click on Options and go to DNS settings Here you will get the Netlify name servers that you will need to add to your domain Go to your domain console where you registered your domain name and add these nameservers It will take some time to reflect the changes After changes are done Your site will be live Congratulations You just made your static website live within a couple of clicks Isn t this the fastest way to do this Hope you like this article Cheers 2022-03-07 16:25:21
海外TECH DEV Community Fix: tzdata hangs during Docker image build https://dev.to/grigorkh/fix-tzdata-hangs-during-docker-image-build-4o9m Fix tzdata hangs during Docker image buildDuring the installation of a few packages Ubuntu usually installs the tzdata package It s usually included in some PHP or Python packages dependencies The issue with it is that it hangs and waits for user input to continue the installation It s ok until we are using Docker and trying to build images it s hanging or even throwing errors in newer versions of Ubuntu We will try to reproduce the situation and try to fix it To reproduce the hanging situation we can use this Docker image FROM ubuntu RUN apt updateRUN apt install y tzdataHere is the logs that we see in terminal Step FROM ubuntu gt ebStep RUN apt update gt Using cache gt ceebbStep RUN apt install y tzdata Configuring tzdata Please select the geographic area in which you live Subsequent configurationquestions will narrow this down by presenting a list of cities representingthe time zones in which they are located Africa Australia Atlantic Pacific Etc America Arctic Europe SystemV Antarctica Asia Indian USGeographic area And here it hangs waiting for us enter data and even after you ll enter a region ーthe process will not resume To fix this situation we need to add lines and to our Dockerfile We will create a variable called TZ which will hold our timezone and the create a etc timezone file FROM ubuntu ENV TZ Asia DubaiRUN ln snf usr share zoneinfo TZ etc localtime amp amp echo TZ gt etc timezoneRUN apt updateRUN apt install y tzdataAnd after building image we will see this output Step FROM ubuntu gt ebStep ENV TZ Asia Dubai gt Using cache gt fcbddeStep RUN ln snf usr share zoneinfo TZ etc localtime amp amp echo TZ gt etc timezone gt Using cache gt ffdfbadStep RUN apt update gt Using cache gt bbeaaStep RUN apt install y tzdata gt Running in eaabbCurrent default time zone Asia Dubai Local time is now Tue Aug Universal Time is now Tue Aug UTC Run dpkg reconfigure tzdata if you wish to change it Removing intermediate container eaabb gt dfefebSuccessfully built dfefebSuccessfully tagged tzdata latestSo it s used the timezone that we provide and nothing hangs Here is the list of Timezones that you can pick one for you List of tz database time zones Like to learn Follow me on twitter where I post all about the latest and greatest AI DevOps VR AR Technology and Science Connect with me on LinkedIn too 2022-03-07 16:24:39
海外TECH DEV Community Reactjs Explore https://dev.to/rajukst/reactjs-explore-1oc2 Reactjs ExploreComponent Lifecycle React web apps are actually a collection of independent componentsthat run according to the interactions made with them Every React Component has alifecycle of its own lifecycle of a component can be defined as the series of methods thatare invoked in different stages of the component s existence Mainly React componentlifecycle are stages They are Initialization mounting updating unmounting Initialization This is the stage where the component is constructed with the given Propsand default state This is done in the constructor of a Component Class Mounting Mounting is the stage of rendering the JSX returned by the render method itself Updating Updating is the stage when the state of a component is updated and theapplication is repainted Unmounting As the name suggests Unmounting is the final step of the componentlifecycle where the component is removed from the page context API Context API is a way to produce global variables that can be passed around Context API moving props from grandparent to child child to parent Context API workseffectively Mainly Context API returns a consumer and provider Provider is a componentand it suggests provides the state to its children To create context API need to writecreateContext Custom Hook Custom hook is a JavaScript function which created by ourselves whenshare logic between other JavaScript functions It allows to reuse some piece of code inseveral parts of app Virtual Dom Virtual DOM is a copy of the original DOM kept in the memory and synced withthe real DOM Virtual DOM has the same properties that the real DOM but virtual DOM lacksthe power to directly change the content Differences between virtual and real dom realDOM just to get things straight forward Virtual DOM is just a copy of real DOM 2022-03-07 16:24:34
海外TECH DEV Community Check out my List Of JavaScript Data Visualisation Libraries! https://dev.to/juliianikitina/check-out-my-list-of-javascript-data-visualisation-libraries-3j7f Check out my List Of JavaScript Data Visualisation Libraries I have recently tried many JavaScript libraries for data analysis and visualization and used them in different combinations and on different stacks Of course not all of the existing ones but enough to write a whole list So I decided to do it to write the Complete List Of JavaScript Data Visualization Components and share it on GitHub So that my colleagues would not spend hours looking for the right and suitable component for them I can t call it complete yet but if you have experience with a component I didn t mention but you could recommend it I d be happy to get a pool request from you with new items on the list I hope this list will be useful to many of you and make life easier What do you think Write your suggestions and ideas in the comments I will be happy to read them and improve my list Let me know what you think 2022-03-07 16:23:31
海外TECH DEV Community Search submenu tabs with flatMap and Vuetify https://dev.to/brunopanassi/search-on-v-tabs-submenu-vuetify-5ehp Search submenu tabs with flatMap and VuetifyOn these days on work i had to add a search in a menu that has v tabs on it and when i finished there was two approaches on how to do this Of course that the changes in the system was more complex than in this example but i hope that this can help someone Before we dive intoThe first approach was more simple at least for me that uses only map and filter The second approach was made by a work colleague that uses a v autocomplete and flatMap that i had never heard before StructureSo we have here a menu that have a sub menu so you can imagine him like this Yes a computed property that is an Array of a Object that has two props name Title of the menu String sub Content of the sub menu Array of strings And this will be the data for the v tabs that have a v menu on each tab I will focus here only in the JS code but you can check the HTML in this link of CodePen ºApproachSo the first approach will be a map on the computed tabs itself that returns only the sub names that includes the letters of the variable search used by a v text field and then returns only the tabs that have the subs The reason i thought this is the simplest way its for the familiar methods filter and map but this approach its not the clever or cleaner one ºApproachThis approach uses the flatMap that maps a nested array to a single array simplifying the explanation wich in this case it s the better option because we need only the values of the sub property And then filter only the values that matchs with the search variable In this example this computed property it s been used in a v auto complete component ConclusionSo for me the ºapproach was the cleaner one both for code and screen design and you can combine the search of the menu with a emit method to show the screen of the selected menu Thanks for reading i hope that this was useful for you 2022-03-07 16:21:29
海外TECH DEV Community We all are Ukraine, the new MDN, Chrome 99, Edge 99, Safari Technology Preview 141, TypeScript 4.6 | Front End News #054 https://dev.to/adriansandu/we-all-are-ukraine-the-new-mdn-chrome-99-edge-99-safari-technology-preview-141-typescript-46-front-end-news-054-2718 We all are Ukraine the new MDN Chrome Edge Safari Technology Preview TypeScript Front End News NOTE This is issue of my newsletter which went live on Monday March th If you find this information useful and interesting and you want to receive future issues as they are published ahead of everyone else I invite you to join the subscriber list at frontendnexus com This week the web design and development community rally in support of Ukraine and there are many ways one can help MDN has unveiled a new design a new logo and plans for a customized experience Interop has been officially announced by all major parties involved In browser news Chrome and Edge updates are rolling out to users while Safari Technology Preview brings a lot of fixes and improvements Last but not least Typescript has been officially released Other releases in this last interval are Gatsby v Node v Redux Toolkit v and more We All Are UkraineIt s a sad reality that in the st century a European nation is being invaded So what can we do to help people caught in this tragedy Vitaly Friedman the co founder of Smashing Magazine wrote a rallying article on all ways the community can provide support On top of that they are donating all the income from the sale of some of their products to support Ukraine We All Are Ukraine A new year a new MDNMDN has just received a new look and logo that the community itself helped choose Here are just a few of the changes that took place the homepage has been redesigned with a focus on search the community and the contributorsboth light and dark modes are availablearticle pages have been redesigned for better accessibilityComing soon is MDN Plus a subscription service that will allow you to customize your MDN experience A new year a new MDN Interop the official announcementsI ve mentioned Interop in the previous issue as the continuation of the efforts to improve cross browser compatibility Meanwhile the official announcements have been made and I collected them all for you to check Goole Chrome Interop browsers working together to improve the web for developersMozilla Announcing Interop Apple Working together on Interop Microsoft Edge and Interop Bocoup and Interop Igalia and Interop Browser news ChromeThe Chrome update is rolling out now It is the last of the two digit versions and the main feature it brings is the support for CSS Cascade Layers New in Chrome What s New In DevTools Chrome Deprecations and removals in Chrome EdgeEdge is also rolling out Their feature list is more focused though on the user experience password management and the upcoming shift to three digits in the user agent string Release notes for Microsoft Edge Stable Channel WebKitSafari Technology Preview brings a long list of changes and fixes however nothing stands out to me Feel free to check out the release notes for more details Release Notes for Safari Technology Preview Software updates and releasesGatsby v build blazing fast modern apps and websites with Reacthistory v manage session history with JavaScriptJasmine Core a simple JavaScript testing framework for browsers and node jsNest v Node js server side frameworkNode v Parcel CSS v a CSS parser transformer and minifier written in RustPlaywright Test v a framework for Web Testing and AutomationQooxdoo v universal JavaScript frameworkReact Bootstrap v Bootstrap components built with ReactRedux Toolkit v the official toolset for Redux developmentTypeScript a superset of JavaScript that compiles to clean JavaScript outputzx a tool for writing better scripts Wrapping things upThat s about all I have for this issue If you enjoyed this newsletter there are a couple of ways to support it You can share the link to this issue on social media and follow this newsletter on Twitter Each one of these helps me out and I would appreciate your consideration Have a great and productive week keep yourselves safe spend as much time as possible with your loved ones and I will see you again next time 2022-03-07 16:21:24
海外TECH DEV Community NPM Complete Guide https://dev.to/thatanjan/npm-complete-guide-21f8 NPM Complete Guide What is NPM NPM stands for Node Package Manager It is a package manager forNode js is used to install and manage packages Video TutorialI have already made a video about it on my youtube channel Check that out Please like and subscribe to Cules Coding It motivates me to create more content like this What is a package A package is just a collection of code that you can use and share with other developers For example you have created a simple function that will generate a random number const generateRandomNumber min max gt Math floor Math random max min minYou might need to use this function in other projects You can just copy paste But there is a better way to do this You can create a package with the code and publish it on the web And then you can install it in your project If other developers want to use this function they can just install it in their project A package can be just one line of code or a collection of files Also packages are called modules So when I will mention modules in this article I will mean packages Who should use NPM Any javascript developer If you are a front end dev you might have used the library through CDN But you can use NPM to install those libraries because a library is just a collection of packages If you are a back end dev and you are using Node js you can use NPM to install packages for node js How to install NPM You just need to install Node js Check how to install Node js for your OS For those who are using Arch based system you can install Node js through Pacman sudo pacman S nodejs check nodejs versionnode version Check NPM versionnpm vIt will give you the version of NPM If you get any error that means npm is not installed Initialize package jsonPakcage json is a file that contains information about your project We will talk about them in a minute First we need to initialize package json Just navigate to your project folder in your terminal and type the following command npm initIt will ask you some questions You can just answer and hit enter If you don t want the questions you can do this npm init yes or you can do thisnpm init yYou will have a package json file in your project folder It will look like this if you use default values name npm try it will be the name of your project version description main index js scripts test echo Error no test specified amp amp exit keywords author license ISC Change the default valuesYou can set default config options for the init command For example to set the default author email author name and license on the command line run the following commands npm set init author email example user example com npm set init author name example user npm set init license MIT Install a packageI am going to install a package called lodash You don t have to know what lodash is You can check it out on npmjs com npm install lodash ornpm i lodash name npm try version description main index js scripts test echo Error no test specified amp amp exit keywords author license ISC dependencies lodash You can see that there is a dependency object in package json This object contains all the dependencies that you have installed Dependency simply means that you have installed a package There is another type of dependency called devDependency We will talk about it in a minute The property name is the name of the package The value is the version of the package You also have a node modules folder It contains all the packages that you have installed It is huge How to use a package Let s say you have installed lodash You can use it like this const lodash require lodash const randomNum lodash random console log randomNum You can also use es import syntax Just add the following line in your package json type module Then you can use lodash like this import lodash from lodash const randomNum lodash random console log randomNum Remove a packagenpm remove lodash Reinstalling packagesLet s remove the node modules folder rm rf node modulesNow let s reinstall the packages npm installThis is helpful when you pull someone else s or your repository from other sources like GitHub You wouldn t wanna push them to GitHub So you keep node modules outside your version control like git For git create a gitignore file and add the following line node modules dependency vs devDependencydependencydevDependencyA dependency is a package that you have installed that your actual app depends on A devDependency is a package that is used for building the app It will be included in your app It will not be included in your app For example lodash express bootstrapFor instance nodemon webpack gulpAny package can be installed as dependency or devDependency It depends on the project that you are building Install devDependencynpm install save dev nodemon gulpYou can install multiple packages at once dependencies lodash devDependencies gulp nodemon Remove devDependencynpm uninstall save dev nodemon gulp Npm ScriptsNpm scripts are simply a way to define a command that you can run in your terminal For example if you want to run a javascript file with node you will do this node index jsEvery time you need to run your file you will have to type the command But if you use npm scripts you can just type the name of the script scripts start node index js You can just now run the command like this npm run startIt will be much more helpful if the command is too big Forexample eslint ext ts ext tsx ext jsThis script will run eslint on all the files in your project By the way if you want to learn how to set up eslint then you can watch this video Typing this command every time will be painful Npm scripts make your life easy scripts start eslint ext ts ext tsx ext js Now just run npm run lintYou can add multiple scripts Package versionYou might have seen a package version like this Let s see what this means Patch release In this release some small bugs get fixed It won t change the API So it will not break your code Minor release In this release some new features are added Most probably it will not change the API So it will not break your code Major release Now some major changes are made API will be changed So Most probably your code will break But that doesn t mean everything will change Let s see the little signs of the package version When you install packages from an existing package This will install the package but with the minor patch release For example if the version is in the package json file and you install the package then it will install the latest patch release for example It will not change minor and major release versions This will install the latest minor and patch release For Example From dependencies lodash To dependencies lodash If you just put in the version then it will install the latest version dependencies lodash No sign If you don t put any sign then it will install the exact version Install a specific version of a packageJust add a sign after the package name and the version number npm install lodash Update packagenpm update lodash Npm global packagesWe have learned how to install packages locally for our project But we can install them globally and it will be available for your whole system A common package is installed globally is the nodemon package It restart our node sever when we make any changes in our code Install global packageLet s install the nodemon package globally npm install g nodemon ornpm i g nodemonNow you can run the command like this from anywhere nodemon index js Remove global packagenpm uninstall g nodemon List all packageLocal npm listGlobal npm list g 2022-03-07 16:21:20
海外TECH DEV Community Appendix: Reliability (Change Management) - AWS Well-Architected Framework Study Guide https://dev.to/aidutcher/appendix-reliability-change-management-aws-well-architected-framework-study-guide-49ip Appendix Reliability Change Management AWS Well Architected Framework Study GuideReturn to Well Architected Framework GuideAppendix ReliabilityHow do you monitor workload resources Monitor all components for the workload Generation Define and calculate metrics Aggregation Send notifications Real time processing and alarming Automate responses Real time processing and alarming Storage and AnalyticsConduct reviews regularlyMonitor end to end tracing of requests through your systemHow do you design your workload to adapt to changes in demand Use automation when obtaining or scaling resourcesObtain resources upon detection of impairment to a workloadObtain resources upon detection that more resources are needed for a workloadLoad test your workloadHow do you implement change Use runbooks for standard activities such as deploymentIntegrate functional testing as part of your deploymentIntegrate resiliency testing as part of your deploymentDeploy using immutable infrastructureDeploy changes with automationReturn to Well Architected Framework Guide 2022-03-07 16:15:01
海外TECH DEV Community Streaming March 7, 2022 https://dev.to/tspannhw/streaming-march-7-2022-424b Streaming March A lot going on this upcoming week including a cool meetup No alt text provided for this image 2022-03-07 16:14:18
Apple AppleInsider - Frontpage News Hyper's HyperDrive 10-in-1 USB-C hub review: Use two 4K displays with your M1 Mac https://appleinsider.com/articles/22/03/07/hypers-hyperdrive-10-in-1-usb-c-hub-review-use-two-4k-displays-with-your-m1-mac?utm_medium=rss Hyper x s HyperDrive in USB C hub review Use two K displays with your M MacHyper s HyperDrive in USB C hub is a great way to expand your Mac s I O but is particularly useful for M based Macs if you want to use two external displays The HyperDrive USB C in hubThere s been an onslaught of USB C hubs to aid Mac users by providing additional port options Hyper has been at the forefront of this movement with a multitude of designs in its portfolio Read more 2022-03-07 16:19:10
Apple AppleInsider - Frontpage News Apple releasing more efficient GaN-based 30W power adapter, says Ming-Chi Kuo https://appleinsider.com/articles/22/03/07/apple-releasing-more-efficient-gan-based-30w-power-adapter-says-ming-chi-kuo?utm_medium=rss Apple releasing more efficient GaN based W power adapter says Ming Chi KuoApple could debut a new W power adapter with a redesigned form factor sometime in according to well connected analyst Ming Chi Kuo Apple GaN chargerIn a tweet on Monday Kuo said that the adapter would use gallium nitride ーor GaN ーtechnology Currently used in the inch MacBook Pro adapter GaN allows for smaller and more efficient power chargers than traditional silicon based systems Read more 2022-03-07 16:15:21
Apple AppleInsider - Frontpage News Apple TV+ hit 'Ted Lasso' season 3 begins filming https://appleinsider.com/articles/22/03/07/apple-tv-hit-ted-lasso-season-3-begins-filming?utm_medium=rss Apple TV hit x Ted Lasso x season begins filmingFans are celebrating as Apple TV sleeper hit Ted Lasso begins filming its third season on location in London on Monday Ted Lasso season begins filmingSome fans are calling Monday Ted Lasso Day as multiple sources confirm that the Apple TV comedy has begun filming its third season in London Read more 2022-03-07 16:09:48
海外TECH Engadget Ubisoft and Take-Two are the latest game companies to halt sales in Russia https://www.engadget.com/ubisoft-take-two-russia-belarus-boycott-ukraine-165021624.html?src=rss Ubisoft and Take Two are the latest game companies to halt sales in RussiaMore major gaming companies are joining the boycott against Russia with Ubisoft and Take Two putting business on hold amid the country s invasion of Ukraine On Monday Ubisoft updated a blog post in which it expressed support for Ukraine and its team members based there to note it s pausing sales in Russia Take Two meanwhile has stopped sales of games and ended marketing support in Russia and Belarus The publisher also told GamesIndustry biz it s preventing people in the two countries from installing its games That includes Grand Theft Auto V which is believed to be the third most popular game in Russia behind Counter Strike Global Offensive and Dota based on monthly active users Since the invasion began many notable gaming companies have withdrawn from Russia including Activision Blizzard Epic Games Microsoft EA and CD Projekt Sony also removedGran Turismo from its Russian storefront just as the game was released elsewhere while Nintendo halted Switch eShop payments Other major companies have ended or limited services and sales in Russia including Google Netflix TikTok PayPal Adobe internet backbone provider Cogent and Meta Samsung has stopped shipping products to the country while Apple has suspended all sales there 2022-03-07 16:50:21
海外TECH Engadget Square Enix's PS5 exclusive 'Forspoken' is delayed to October 11th https://www.engadget.com/square-enix-delays-forspoken-october-11-2022-164021573.html?src=rss Square Enix x s PS exclusive x Forspoken x is delayed to October thSquare Enix has delayed Forspoken The upcoming action role playing game from Final Fantasy XV studio Luminous Productions was previously scheduled to release on May th It will instead come out on October th the studio announced on Monday nbsp A message from the Forspoken Development Team pic twitter com TVhNpーForspoken Forspoken March quot Our vision for this exciting new IP is to deliver a game world and hero that gamers across the globe will want to experience for years to come so getting it right is extremely important to us quot Luminous Productions said quot To that end during the next few months we will focus all of our efforts on polishing the game and can t wait for you to experience Frey s journey this fall quot We last saw Forspoken at a hands off briefing Square Enix held at the end of last year Forspoken stars Frey a New York City native who s transported to the fantastical land of Athia Voiced by actor Ella Balinsk Frey must save the world from corruption while trying to find a way home Square will release Forspoken on PlayStation and PC 2022-03-07 16:40:21
海外TECH Engadget How Telegram found itself at the heart of the Ukrainian conflict https://www.engadget.com/telegram-explained-2022-163035068.html?src=rss How Telegram found itself at the heart of the Ukrainian conflictSince its launch in Telegram has grown from a simple messaging app to a broadcast network Its user base isn t as vast as WhatsApp s and its broadcast platform is a fraction the size of Twitter but it s nonetheless showing its use While Telegram has been embroiled in controversy for much of its life it has become a vital source of communication during the invasion of Ukraine But if all of this is new to you let us explain dear friends what on Earth a Telegram is meant to be and why you should or should not need to care What is Telegram At its heart Telegram is little more than a messaging app like WhatsApp or Signal But it also offers open channels that enable a single user or a group of users to communicate with large numbers in a method similar to a Twitter account This has proven to be both a blessing and a curse for Telegram and its users since these channels can be used for both good and ill Right now as Wired reports the app is a key way for Ukrainians to receive updates from the government during the invasion Who made Telegram Telegram was co founded by Pavel and Nikolai Durov the brothers who had previously created VKontakte VK is Russia s equivalent of Facebook a social network used for public and private messaging audio and video sharing as well as online gaming In January SimpleWeb reported that VK was Russia s fourth most visited website after Yandex YouTube and Google s Russian language homepage In Forbes Michael Solomon described Pavel Durov pictured below as the “Mark Zuckerberg of Russia Does VK own Telegram like Facebook owns WhatsApp Oh no There s a certain degree of myth making around what exactly went on so take everything that follows lightly Telegram was originally launched as a side project by the Durov brothers with Nikolai handling the coding and Pavel as CEO while both were at VK In February the Ukrainian people ousted pro Russian president Viktor Yanukovych prompting Russia to invade and annex the Crimean peninsula By the start of April Pavel Durov had given his notice with TechCrunch saying at the time that the CEO had resisted pressure to suppress pages criticizing the Russian government The next bit isn t clear but Durov reportedly claimed that his resignation dated March st was an April Fools prank TechCrunch implies that it was a matter of principle but it s hard to be clear on the wheres whos and whys Similarly on April th the Moscow Times quoted Durov as saying that he quit the company after being pressured to reveal account details about Ukrainians protesting the then president Viktor Yanukovych Either way Durov says that he withdrew his resignation but that he was ousted from his company anyway Subsequently control of the company was reportedly handed to oligarchs Alisher Usmanov and Igor Sechin both allegedly close associates of Russian leader Vladimir Putin At this point however Durov had already been working on Telegram with his brother and further planned a mobile first social network with an explicit focus on anti censorship Later in April he told TechCrunch that he had left Russia and had “no plans to go back saying that the nation was currently “incompatible with internet business at the moment He added later that he was looking for a country that matched his libertarian ideals to base his next startup Manuel Blondeau Corbis via Getty ImagesHow does it make money On Telegram s website it says that Pavel Durov “supports Telegram financially and ideologically while Nikolai Duvov s input is technological Currently the Telegram team is based in Dubai having moved around from Berlin London and Singapore after departing Russia Meanwhile the company which owns Telegram is registered in the British Virgin Islands At the start of the company attempted to launch an Initial Coin Offering ICO which would enable it to enable payments and earn the cash that comes from doing so The initial signals were promising especially given Telegram s user base is already fairly crypto savvy It raised an initial tranche of cash worth more than a billion dollars to help develop the coin before opening sales to the public Unfortunately third party sales of coins bought in those initial fundraising rounds raised the ire of the SEC which brought the hammer down on the whole operation In officials ordered Telegram to pay a fine of million and hand back much of the cash that it had raised On December rd Pavel Durov posted to his channel that the company would need to start generating revenue In early he added that any advertising on the platform would not use user data for targeting and that it would be focused on “large one to many channels He pledged that ads would be “non intrusive and that most users would simply not notice any change So uh whenever I hear about Telegram it s always in relation to something bad What gives Given the pro privacy stance of the platform it s taken as a given that it ll be used for a number of reasons not all of them good And Telegram has been attached to a fair few scandals related to terrorism sexual exploitation and crime Back in Vox described Telegram as “ISIS app of choice saying that the platform s real use is the ability to use channels to distribute material to large groups at once Telegram has acted to remove public channels affiliated with terrorism but Pavel Durov reiterated that he had no business snooping on private conversations This ability to mix the public and the private as well as the ability to use bots to engage with users has proved to be problematic In early a database selling phone numbers pulled from Facebook was selling numbers for per lookup Similarly security researchers found a network of deepfake bots on the platform that were generating images of people submitted by users to create non consensual imagery some of which involved children Telegram has become more interventionist over time and has steadily increased its efforts to shut down these accounts But this has also meant that the company has also engaged with lawmakers more generally although it maintains that it doesn t do so willingly For instance in September Telegram reportedly blocked a chat bot in support of Putin critic Alexei Navalny during Russia s most recent parliamentary elections Pavel Durov was quoted at the time saying that the company was obliged to follow a “legitimate law of the land He added that as Apple and Google both follow the law to violate it would give both platforms a reason to boot the messenger from its stores The company maintains that it cannot act against individual or group chats which are “private amongst their participants but it will respond to requests in relation to sticker sets channels and bots which are publicly available During the invasion of Ukraine Pavel Durov has wrestled with this issue a lot more prominently than he has before Channels like Donbass Insider and Bellum Acta as reported by Foreign Policy started pumping out pro Russian propaganda as the invasion began So much so that the Ukrainian National Security and Defense Council issued a statement labeling which accounts are Russian backed Ukrainian officials in potential violation of the Geneva Convention have shared imagery of dead and captured Russian soldiers on the platform On February th Durov posted that Channels were becoming a source of unverified information and that the company lacks the ability to check on their veracity He urged users to be mistrustful of the things shared on Channels and initially threatened to block the feature in the countries involved for the length of the war saying that he didn t want Telegram to be used to aggravate conflict or incite ethnic hatred He did however walk back this plan when it became clear that they had also become a vital communications tool for Ukrainian officials and citizens to help coordinate their resistance and evacuations I want a secure messaging app should I use Telegram You may recall that back when Facebook started changing WhatsApp s terms of service a number of newsoutlets reported on and even recommended switching to Telegram Pavel Durov even said that users should delete WhatsApp “unless you are cool with all of your photos and messages becoming public one day But Telegram can t be described as a more secure version of WhatsApp Telegram does offer end to end encrypted communications through Secret Chats but this is not the default setting Standard conversations use the MTProto method enabling server client encryption but with them stored on the server for ease of access This makes using Telegram across multiple devices simple but also means that the regular Telegram chats you re having with folks are not as secure as you may believe If you initiate a Secret Chat however then these communications are end to end encrypted and are tied to the device you are using That means it s less convenient to access them across multiple platforms but you are at far less risk of snooping Back in the day Secret Chats received some praise from the EFF but the fact that its standard system isn t as secure earned it some criticism If you re looking for something that is considered more reliable by privacy advocates then Signal is the EFF s preferred platform although that too is not without some caveats One thing that Telegram now offers to all users is the ability to “disappear messages or set remote deletion deadlines That enables users to have much more control over how long people can access what you re sending them Given that Russian law enforcement officials are reportedly via Insider stopping people in the street and demanding to read their text messages this could be vital to protect individuals from reprisals 2022-03-07 16:30:35
海外TECH Engadget Apple TV+ is now available on Comcast Xfinity https://www.engadget.com/apple-tv-plus-comcast-xfinity-x1-flex-xclass-tv-161729218.html?src=rss Apple TV is now available on Comcast XfinityApple TV has reached one of its last frontiers the American cable subscriber As promised Apple s streaming service is now available across Comcast s Xfinity platforms including the Xfinity X set top XClass TVs and the Xfinity Flex streaming service You can now watch the likes of Ted Lasso or Severance even if you can t use a dedicated streaming device or Apple s own smart TV apps Any Xfinity users new to Apple TV can get a three month free trial if they sign up by April th Comcast first revealed plans to support Apple s service in October Americans are latecomers to some degree ーSky Q and Sky Glass users in Europe and the UK had access to Apple TV in December The expansion comes long after Apple TV was available elsewhere including many common TV models media players and game consoles However the Xfinity launch might help Apple cover the quot last mile quot of potential viewers who either won t buy separate hardware or are simply unaware of services that aren t available through their cable hardware 2022-03-07 16:17:29
海外TECH Engadget Amazon knocks up to 38 percent off HyperX gaming accessories today https://www.engadget.com/hyperx-gaming-accessory-sale-160714596.html?src=rss Amazon knocks up to percent off HyperX gaming accessories todayYou don t have to spend thousands on a new system for a better gaming experience sometimes all it takes is a few well chosen accessories HyperX is one of the companies we at Engadget often turn to when we need to make recommendations and today you can save on a selection of headsets keyboards and even a gaming focused mic from the HP owned brand Our own Jess Conditt really liked the QuadCast S enough to put it in last year s game streaming guide and right now you can save percent at Amazon a discount This colorful mic works with your PC both Windows and macOS PS and PS It ll look great on your next livestream but it will also sound great thanks to features like four selectable polar patterns ーstereo omnidirectional cardioid and bidirectional That means you can really tweak what audio you want it to pick up when you re streaming on Twitch or YouTube Buy QuadCast S at Amazon HyperX s headsets have always been standouts and today you can save up to percent on select models That includes the wired Cloud Alpha S a surround sound set that would normally run you but right now you can snag for under ーit s only today a great deal on a headset that also comes with a chat mixer Buy Cloud Alpha S at Amazon If you re looking for something with no wires HyperX has multiple options for you as well The best deal is probably the massive savings on the CloudX Flight for Xbox which has the chat mixer built right into the ear cups It s normally but today it s only at Amazon Meanwhile PlayStation gamers can pick up the Cloud Flight instead for only and still enjoy the benefits of super soft padding and a classic design at a discount Buy CloudX Flight at Amazon Buy Cloud Flight at Amazon If you re in the market for a new mechanical keyboard the sale also includes the Hyper Alloy Origins keyboard for only All of these discounts are part of a daily deal at Amazon so don t spend too long mulling it over ーthe sale ends tonight at am PT Buy Alloy Origins at Amazon Follow EngadgetDeals on Twitter for the latest tech deals and buying advice 2022-03-07 16:07:14
海外TECH Engadget Cities turn to tech to keep sewers free of fatbergs https://www.engadget.com/cities-and-utilities-turn-to-tech-in-fight-against-fatbergs-160044311.html?src=rss Cities turn to tech to keep sewers free of fatbergsSwaddled in wet wipes ensconced in congealed cooking grease and able to transform into pipe blocking masses so hard as to require excavation equipment to dislodge fatbergs are truly the bean and cheese burritos of the sewage world They can cause havoc on a town s bowels achieving lengths that outspan bridges and accumulating masses that dwarf double deckers Fatbergs are a modern problem that have civil engineers increasingly turning to tech in order to keep their cities subterranean bits clear of greasy obstructions Fatbergs ーa portmanteau of fat and iceberg ーare a relatively recent but fast growing problem in the world s sewers They form when FOG fats oil grease poured down drains comes in contact with calcium phosphorus and sodium to create a hard soap like material This calcium soap then accumulates on non degradable flushed items like wet wipes sanitary pads condoms dental floss clumps of hair chunks of food waste and diapers as they travel through a municipal waste disposal system Though their components may start off soft and pliable albeit damp once bergified they harden into a mass tougher than concrete requiring sanitation workers to employ high pressure water jets shovels and pickaxes in order to break it up “These huge solid masses can block the sewers causing sewage to back up through drains plugholes and toilets Anna Boyles operations manager at Thames Water told RICS in October “It can take our teams days sometimes weeks to remove them They can also offgas toxic compounds such as hydrogen sulfide Forensic analyses of dislodged fatbergs have also revealed concentrations of all sorts of chemicals including bodybuilding supplements and the metabolites of illicit drugs ーnot to mention myriad bacterial species Not only do these deposits constitute a direct health hazard to the workers tasked with demolishing them fatbergs can cause pipe blockages and force wastewater to overflow aboveground where the contagion can spread A blockage in Maryland in caused more than a million gallons of wastewater to spill into local waterways it cost to clear the foot obstruction while a similar backup in Michigan flooded the University of Michigan with gallons of the stuff These cholesterol like deposits can reach monumental proportions if left unchecked Thames Water which manages sewers in both London and the Thames Valley told the BBC last February that it spent £m a year clearing blockages from its systems One of the largest bergs to date was pulled from beneath Birchall Street in Liverpool UK in It measured feet in length weighed tons and required more than four months to clear The month before a foot long fatberg was discovered under Sidmouth a popular coastal tourist location in Devon UK “It is the largest discovered in our service history and it will take our sewer team around eight weeks to dissect this monster in exceptionally challenging work conditions South West Water director of Wastewater Andrew Roantree told The Guardian in “Thankfully it has been identified in good time with no risk to bathing waters “If you keep just one new year s resolution this year he added “let it be to not pour fats oil or grease down the drain or flush wet wipes down the loo Put your pipes on a diet and don t feed the fatberg These obstructions are just as problematic on this side of the pond In officials in Charleston South Carolina pulled a pound foot by foot berg from the city s sewers The same year officials in Macomb County Michigan removed a foot fatberg from one of its foot diameter Lakeshore Interceptor pipes at a cost of quot To put it simply this fatberg is gross It provides an opportunity however to talk with people about the importance of restricting what goes down our sewers This restriction was caused by people and restaurants pouring grease and similar materials down their drains We want to change that behavior quot Public Works Commissioner Candice S Miller said at the time However the problem is apparently not universal “The city of Atlanta does not have fatbergs within our sewer system a spokesperson from Atlanta s Department of Water Management told Engadget via email “Fatbergs are common in other countries Any blockages that are encountered within the city s sewers are disposed of using “high pressure water and or rodding equipment This rodding equipment commonly known as hydrojets are high powered versions of the pressure washers used to clean siding and walkways They re capable of producing pressures in excess of ppi and spray omnidirectionally so that they ll blast detritus from the entire interior surface of a pipe as they re fed forward That fecally caked slurry is then sucked out of the main using a truck mounted vacuum system and stored in an onboard tank for later disposal as you can see in the video from the City of Carlsbad California below It s the same basic idea as the trucks that service Port A Potties but again a more robust version A major contributor to the fatberg problem are wet wipes which were first invented in Manhattan in by Arthur Julius He went on to found the Nice Pak company and by had partnered with KFC to offer his company s pre moistened Wet Nap towelettes as an after meal hand sanitizer to the fried chicken chain s greasy fingered customers In subsequent decades Nice Pak expanded its offerings to include products such as baby wipes and EPA rated hand and surface disinfectants As of the global market for wet wipes runs an estimated billion annually according to a recent report from Grandview Research “Wet wipes may be convenient but flushing them is a major cause of sewage blockages On top of this they contain plastic and can find their way into our seas where they pose a threat to wildlife Friends of the Earth spokesperson Julian Kirby explained to The Evening Standard in “Wet wipe manufacturers should be required to make their products plastic free and clearly label them as do not flush While the Museum of London has seen fit to preserve part of the famed Whitechapel fatberg for posterity most municipalities want them gone flushed and forgotten but the fatbergs have to be found first Typically that involves visually inspecting the sewer mains either by sending down crews or remotely operated cameras like the modular Rovver X from Envirosight or the IRIS Portable Mainline Crawler from Insight Vision Alternately the SL RAT Sewer Line Rapid Assessment Tool from Infosense Inc relies on sonar technology to check sewer lines for obstructions Relying on sound waves offers a number of advantages over conventional visual systems The SL RAT is set up at through the access points at either end of a length of sewer main The transmitting unit blasts a series of tones through the pipe where the receiving unit measures the tonal differences between the two sets to determine the extent of any potential blockage Since utilities don t have to physically send people or drones into the pipes when using the SL RAT crews can inspect more of the sewer network in less time The city of Irvins Utah for example used to expend gallons of water daily to flush the entirety of its mile wastewater system done in order to dislodge blockages occurring in only about percent of the network “Just to prevent one blockage we were cleaning the whole system Ivins Public Works director Chuck Gillette told St George News in October “You re cleaning every pipe With the city s implementation of the SL RAT system in city crews could more precisely locate clogs to dislodge A process that used to take weeks and labor hours is now done in a few days and labor hours “It s less noise than the sound of a cleaning truck Gillette continued “and there is zero water usage While municipal authorities beg people to help prevent fatbergs from forming in the first place by following the Ps ーas in the only things that should go in the loo are pee paper and poo ーa team of Canadian researchers are looking at converting the bergs into biofuels once they ve been harvested from sanitation pipes “This method would help to recover and reuse waste cooking oil as a source of energy University of British Columbia researcher Asha Srinivasan told Smithsonian Magazine in The UBC team s method involves first heating a fatberg chunk to between and degrees Celsius to loosen everything up then adding hydrogen peroxide to break down organic components and free trapped fatty acids then breaking those acids down into methane using anaerobic bacteria This is similar in methodology albeit on a much smaller scale as to how some wastewater treatment facilities produce natural gas from methane captured during the cleaning process 2022-03-07 16:00:44
海外TECH CodeProject Latest Articles Order of Execution in SQL Explained https://www.codeproject.com/Articles/5326837/Order-of-Execution-in-SQL-Explained entry 2022-03-07 16:57:00
海外TECH CodeProject Latest Articles How to Use SQL Variables in Queries https://www.codeproject.com/Articles/5326829/How-to-Use-SQL-Variables-in-Queries How to Use SQL Variables in QueriesLearning how to use SQL Variable in queries is a step in the right direction towards making your queries more flexible for you and others to use Why hardcode when you can parameterize 2022-03-07 16:45:00
海外TECH CodeProject Latest Articles SQL COUNT Function https://www.codeproject.com/Articles/5326828/SQL-COUNT-Function SQL COUNT FunctionThe SQL COUNT function is an aggregate function used to count rows   Use it alone within a SELECT statement to return a count of all rows within a table or with a GROUP BY to provide a count of rows within each group 2022-03-07 16:37:00
海外TECH CodeProject Latest Articles SQL DATEDIFF Function https://www.codeproject.com/Articles/5326808/SQL-DATEDIFF-Function datediff 2022-03-07 16:25:00
海外科学 NYT > Science Dreaming of Suitcases in Space https://www.nytimes.com/2022/03/07/technology/inversion-suitcases-space.html important 2022-03-07 16:58:34
海外科学 NYT > Science E.P.A. to Tighten Tailpipe Rules for the Biggest Polluters on the Road https://www.nytimes.com/2022/03/07/climate/trucks-pollution-rules-epa.html E P A to Tighten Tailpipe Rules for the Biggest Polluters on the RoadFor the first time since the government is setting more stringent limits on pollution from trucks vans and buses that harms human health 2022-03-07 16:57:45
海外科学 NYT > Science Amazon Rainforest May Be Approaching a Critical Tipping Point, Study Finds https://www.nytimes.com/2022/03/07/climate/amazon-rainforest-climate-change-deforestation.html Amazon Rainforest May Be Approaching a Critical Tipping Point Study FindsThe region is nearing a threshold beyond which its forests may be replaced by grasslands with huge repercussions for biodiversity and climate change 2022-03-07 16:28:46
海外科学 NYT > Science Most Women Denied Abortions by Texas Law Got Them Another Way https://www.nytimes.com/2022/03/06/upshot/texas-abortion-women-data.html online 2022-03-07 16:04:06
金融 金融庁ホームページ アクセスFSA第223号を公表しました。 https://www.fsa.go.jp/access/index.html アクセス 2022-03-07 18:00:00
金融 金融庁ホームページ 火災保険水災料率に関する有識者懇談会(第4回)議事要旨及び資料について公表しました。 https://www.fsa.go.jp/singi/suisai/gijiyousi/20220207.html 有識者懇談会 2022-03-07 17:00:00
金融 金融庁ホームページ 期間業務職員(事務補佐員)を募集しています。 https://www.fsa.go.jp/common/recruit/r3/kikaku-11.html 補佐 2022-03-07 17:00:00
金融 金融庁ホームページ 「火災保険水災料率に関する有識者懇談会」(第5回)を開催します。 https://www.fsa.go.jp/news/r3/singi/20220307.html 有識者懇談会 2022-03-07 17:00:00
金融 金融庁ホームページ バーゼル銀行監督委員会による「新型コロナウイルス感染症に関連した信用リスクに関するニューズレター」について掲載しました。 https://www.fsa.go.jp/inter/bis/20220307/20220307.html 信用リスク 2022-03-07 17:00:00
海外ニュース Japan Times latest articles COVID-19 tracker: New cases across Japan drop below 40,000 https://www.japantimes.co.jp/news/2022/03/08/national/covid19-tracker-march-7/ previous 2022-03-08 01:10:40
ニュース BBC News - Home War in Ukraine: 'It's hell, it's really hell' - Families flee bombs in Irpin https://www.bbc.co.uk/news/world-europe-60651801?at_medium=RSS&at_campaign=KARANGA russian 2022-03-07 16:22:24
ニュース BBC News - Home Blue and yellow flowers as Queen meets Trudeau https://www.bbc.co.uk/news/uk-60650285?at_medium=RSS&at_campaign=KARANGA ukraine 2022-03-07 16:01:05
ニュース BBC News - Home Ukraine conflict: Petrol at fresh record as oil and gas prices soar https://www.bbc.co.uk/news/business-60642786?at_medium=RSS&at_campaign=KARANGA bills 2022-03-07 16:48:24
ニュース BBC News - Home Lynda Baron: Open All Hours actress dies aged 82 https://www.bbc.co.uk/news/entertainment-arts-60647760?at_medium=RSS&at_campaign=KARANGA eastenders 2022-03-07 16:43:31
ニュース BBC News - Home Dizzee Rascal: Grime artist guilty of assaulting former partner https://www.bbc.co.uk/news/uk-england-london-60653545?at_medium=RSS&at_campaign=KARANGA london 2022-03-07 16:51:44
ニュース BBC News - Home Ukraine war: PM calls for 'step-by-step' move from Russian fuel https://www.bbc.co.uk/news/uk-60642926?at_medium=RSS&at_campaign=KARANGA boris 2022-03-07 16:43:46
ニュース BBC News - Home Mercedes bullying led to Masi's removal as F1 race director, says Red Bull's Horner https://www.bbc.co.uk/sport/formula1/60651647?at_medium=RSS&at_campaign=KARANGA Mercedes bullying led to Masi x s removal as F race director says Red Bull x s HornerRed Bull team principal Christian Horner accuses rivals Mercedes of bullying behaviour resulting in the removal of race director Michael Masi 2022-03-07 16:37:40
ビジネス ダイヤモンド・オンライン - 新着記事 NATO軍、バルト3国に長期駐留検討=米国務長官 - WSJ発 https://diamond.jp/articles/-/298407 国務長官 2022-03-08 01:06:00
GCP Cloud Blog Building cloud into your data strategy delivers higher efficiency https://cloud.google.com/blog/topics/public-sector/building-cloud-your-data-strategy-delivers-higher-efficiency/ Building cloud into your data strategy delivers higher efficiencyPresently every government agency has to take a hard look at their data capabilities and decide whether their current infrastructure supports their workflow For many it doesn t Most data systems are developed with a strict set of parameters in mind before implementation which can limit flexibility and long term use Particularly during a crisis flexible “living systems offer tremendous advantages as they re able to change capacity rapidly Building living data systems with the cloud in mind allows organizations to respond to a changing world with confidence Last summer the Government Business Council conducted a survey of government employees to understand the impacts of data efficiency on government operations The report Built to Last A Survey on Organizational Data Efficiency in Times of Crisis offers key insights into organizational efficacy and whether organizations can adapt to a crisis at speed It also highlights differences between traditional data systems and living data systems  Data needs to be readily availableWhen the pandemic first hit many agencies needed to create or transition their systems to allow employees to work remotely This change tested the limits of existing data systems Even after finding a cloud service provider agencies encountered the challenges of migrating their data to the cloud  Government organizations had decades of data stored in paper records Most have been working to transfer these records to a digital format but the process has been slow They are also faced with collecting sizable amounts of data in real time from their ongoing services  which involves interfacing with the public external vendors or third party institutions  Building the cloud into a flexible data system can solve both issues Old records can be digitized and given an easy to access home for those who need them Incoming data both internal and external can be made accessible as well Migrating data to the cloud also doubles as a way to create backups of raw data adding an extra layer of security Most importantly building in the cloud unlocked the capacity to scale when demand rises  Data should be updated in real timeOne of the key takeaways from the Government Business Council report is the fact that agencies are better able to adapt at speed when data efficiencies are higher of organizations with pandemic related functions reported a moderate to severe impact to their jobs at the onset of the pandemic Of those organizations the ones reporting their data efficiency as “very good have largely already recovered That adaptability directly affects an agency s ability to make informed decisions during a time of a crisis Having a real time data solution in place lets agencies make near real time decisions A great example of this from early in the pandemic is vaccine distribution Google Cloud supported multiple states such as the State of Wyoming in distributing vaccines efficiently while handling challenges such as reaching rural populations Data systems that gathered real time patient data made a difference in the number of vaccines distributed Knowing population data and patient risk factors enabled quick and effective decision making A global pandemic is far from the only crisis that needs effective data analytics Natural disasters food deserts public health issues and more can all be handled more efficiently by having real time data at hand Effective data analytics systems are the digital equal of “having your ear to the ground in each community They provide valuable insights into what people need Data needs to be accessible and easy to useMaking data easy to work with and understand sets phenomenal data systems apart from functional ones Having data in the cloud is a great first step but agencies need to be able to easily access and quickly use the data to accomplish their goals This is where traditional data systems fail most often Traditional IT systems and data strategies are designed for a specific purpose usually identified before development and implementation begin That means that when the data living in those systems needs to be used differently adapting to new requirements can be difficult  Data can often feel locked in traditional systems the data is there but there s no way to get to it or work with it in a way that meets the needs of a crisis Flexible data systems address this by allowing for greater accessibility Google Cloud for example has customizable tools such as Contact Center AI and Document AI which let agencies work with data in ever changing ways This also produces greater data transparency since data sets can be worked with and accessed more easily Governments need to respond to the changing needs of their constituents in emergencies While traditional data systems can handle slowly shifting demands on the system they do not serve agencies well in a crisis When urgency accuracy and accessibility all matter flexible systems rise to the challenge The pandemic has pushed agencies to adapt in real time and many have realized they need a system that adapts with them Google Cloud has a suite of tools to create integrated data ecosystems These ecosystems can scale with increasing demand meet dynamic development needs and adapt to a changing landscape Data first decision making is a core tenet of living data systems Google Cloud data systems have handled everything from administering vaccines to detecting fraud In each of these applications a core tenet of data first decision making was implemented at scale  For more insights on how flexible data systems help the public sector download the full report “Built to Last A Survey on Organizational Data Efficiency in Times of Crisis 2022-03-07 17:00: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件)