投稿時間:2022-02-24 05:30:08 RSSフィード2022-02-24 05:00 分まとめ(35件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Database Blog Model-driven graphs using OWL in Amazon Neptune https://aws.amazon.com/blogs/database/model-driven-graphs-using-owl-in-amazon-neptune/ Model driven graphs using OWL in Amazon NeptuneAmazon Neptune is a graph database service provided by AWS that you can use to build a knowledge graph of relationships among business objects When building a knowledge graph what is a suitable model to govern the representation of those relationships We would prefer not to build our graph on the fly but rather have … 2022-02-23 19:18:45
python Pythonタグが付けられた新着投稿 - Qiita 強化学習を使ってfx取引を学習する https://qiita.com/komo135/items/074cf0d50c8c8d0d86cf 強化学習を使ってfx取引を学習する作ったものfxの過去のデータを利用して強化学習を使って自動取引を学習させること目標にします。 2022-02-24 04:44:05
海外TECH Ars Technica Russia’s most cutthroat hackers infect network devices with new botnet malware https://arstechnica.com/?p=1836168 blink 2022-02-23 19:33:03
海外TECH MakeUseOf How to Merge Multiple Word Documents in Microsoft Office https://www.makeuseof.com/tag/merge-multiple-word-documents-microsoft-office/ How to Merge Multiple Word Documents in Microsoft OfficeWord offers built in tools to combine different or conflicting copies of a document We show you how to merge multiple Word documents complete with comments and formatting 2022-02-23 19:30:14
海外TECH MakeUseOf How to Update Your LinkedIn Contact Details https://www.makeuseof.com/how-to-change-email-phone-linkedin/ number 2022-02-23 19:30:13
海外TECH MakeUseOf How to Quickly Disable Unwanted Features in Windows 10 https://www.makeuseof.com/windows-10-disable-unwanted-features/ windows 2022-02-23 19:15:14
海外TECH DEV Community Building a Kotlin Mobile App with the Salesforce SDK, Part 1: Getting Started https://dev.to/salesforcedevs/building-a-kotlin-mobile-app-with-the-salesforce-sdk-part-1-getting-started-4o4o Building a Kotlin Mobile App with the Salesforce SDK Part Getting StartedNowadays users expect mobile apps to act as counterparts to the websites and platforms they use on the web Mobile applications give users the ability to carry their data with them granting them the flexibility to interact with platforms wherever they go This usability makes sense and we are all familiar with it Developing a mobile experience that s seamlessly integrated with the functionality of your website can be intimidating For starters how should you store and retrieve data if the mobile app loses connectivity What happens when two mobile users try to update the same data at the same time How can you just make sure your app s data is in sync given that it has limited storage space In this series we ll take a look at the Salesforce Mobile SDK a toolkit that addresses many of these technical challenges for developers building apps for Android or iOS The Salesforce Mobile SDK handles data synchronization offline storage notifications authentication and many more essential details To highlight some of these features we ll build an app that accesses real Salesforce data On the Salesforce end we ll set up an org with a pre populated app that uses custom objects In this first post of the series we ll cover how to get our mobile app to display our records In Part Two we ll cover how to create and update records in our list Finally in Part Three we ll learn how to work with the SDK and the Salesforce APIs to synchronize data between the desktop and mobile environments Although the app will be written in Kotlin and run on Android the fundamental concepts apply to iOS We re choosing Kotlin for the same reasons the Android platform recommends it it s faster to write in offers more code safety than Java and boosts productivity with its expressiveness PrerequisitesBefore we begin install the following software on your machine Salesforce CLI ーthis is a CLI designed by Salesforce to simplify platform interactions Kotlin gt A recent version of Node gt All Android specific requirements listed hereGitSince we re just exploring the SDK right now it s important that whatever we build doesn t affect your “real production Salesforce organization also called org for short Therefore we re going to create a separate free Developer Edition org which our app can interact with First sign up for your Developer Edition Take note of your username as you ll need it in a moment After you ve verified your email address and your org is available for use go ahead and follow these instructions to clone the dreamhouse lwc project onto your computer and then upload it to your new org using sfdx the Salesforce CLI The Dreamhouse app is a sample Salesforce application that lists realtors and their associated properties After following the instructions linked above the app will contain sample data which we can interact with To see the app enter the following command to open up your org sfdx force org open u lt username or alias gt Note When you authorized your org with the command line you were instructed to create an alias This is interchangeable with username to pass into the u parameter above This opens a browser window and takes you to your Salesforce org Click on the App Launcher icon the grid of dots in the upper left corner and select the Dreamhouse app As you explore it you should see information on properties brokers and more This app and its corresponding custom objects represent the platform our mobile app will interact with Setting up the Android Studio IDEWe will use the Android Studio IDE for this Kotlin app This page lists everything you need to do to prepare your computer for Android development Understanding this documentation is essential for building your Android app but here s a brief overview of what you need to do First install forcedroid an npm package that assists you with Salesforce mobile app development by running the following in the terminal npm install g forcedroidNext run forcedroid create and provide the following values The application type is native kotlinThe application name is sfdc mobile appThe package name is com example sfdcThe organization name is DreamhouseSet the output directory to the current directoryOpen Android Studio and navigate to the directory where you created this app Create an Android Virtual Deviceーan emulatorーand download the API version R system image onto it To ensure that everything is set up properly click the Run button which is the green triangle at the top bar A phone emulator should pop up and boot with Android You ll be greeted with a Salesforce login screen Let s test that we can communicate with our Developer Edition org In the top right corner of the form click the menu icon then select Change Server After that click Add New Connection Earlier when we called sfdx force org open in the command line a URL was displayed Copy the entire domain that was displayed using that as your custom domain For example it might look something like this flow app dev ed cs my salesforce com Paste that in as the value of your new connection After that return to the login screen and log in with your username and password Your username and password are the same as those you use to log into your Developer Edition org Once you ve authenticated successfully you ll be ready to write the app Displaying DataSince our Dreamhouse app already contains custom objects our first step will be to display some of that same data in the mobile app To do that we ll authenticate the Salesforce mobile app to Salesforce com and then fetch a list of brokers Let s take a brief look at what forcedroid did for us Inside the app java com example sfdc folder it created two files MainActivity kt and MainApplication kt You can read up on the specifics of these files However in a nutshell MainApplication sets up the Salesforce Mobile SDK MainActivity is the app s “home page and is responsible for all other UI navigation and functionality You may have noticed the option to click on some buttons and fetch data when you launched the app While it s nice that the Mobile SDK sets up an environment where you can get up and running that s no fun if weーintrepid developers that we areーwant to build something from scratch Let s make a few changes to the files we ve been given to start exploring the SDK Let s start with the view first Open up app res layout main xml then switch to the Code view Paste in the following XML layout lt xml version encoding utf gt lt LinearLayout xmlns android android orientation vertical android layout width match parent android layout height match parent android background android colorBackground android id id root gt lt include layout layout header gt lt ListView android id id brokers list android layout width match parent android layout height match parent android background android colorBackground android textColor android textColor gt lt LinearLayout gt Here we ve set up a simple list with the id brokers list which will act as the container for our brokers To make accessing these views easier in code we re going to set up a feature called View Binding In the left pane expand the Gradle scripts category and select the build gradle file for your module Within the Android namespace add these lines to enable View Binding buildFeatures viewBinding true Now in MainActivity kt we need to make two changes We need to associate the layout ID with a variable we can use in Kotlin and we need to make a request to display a list of brokers First we need to import our layouts add these to the top of the file near the other import statements import com example sfdc databinding MainBindingThen initialize a view variable within the MainActivity class class MainActivity SalesforceActivity … private lateinit var mainViewBinding MainBinding …In the onCreate function change the final line which reads setContentView R layout main to these lines mainViewBinding MainBinding inflate layoutInflater val view mainViewBinding root Setup viewsetContentView view This has now set a value for our mainViewBinding variable We can now populate our layouts with logic defined in our code Replace the existing onResume functions with these lines override fun onResume Hide everything until we are logged in mainViewBinding root visibility View INVISIBLE Create list adapter listAdapter ArrayAdapter this android R layout simple list item ArrayList lt String gt mainViewBinding brokersList adapter listAdapter super onResume override fun onResume client RestClient Keeping reference to rest client this client client Show everything mainViewBinding root visibility View VISIBLE sendRequest SELECT Name FROM Broker c mainViewBinding uses the IDs we defined in the layout while sendRequest makes a query to Salesforce to fetch the records for you Go ahead and launch the app you will receive a list of these broker namesーfront and center Notice what we haven t done here We didn t write any code to do the Salesforce authentication and our business logic to fetch records was already abstracted away for us by the Mobile SDK All we had to do was design the layout and create a new query that matched what we wanted to get out of the database To Be Continued This is a great stopping point to reflect on what we ve done We set up a new Developer Edition org and pushed a sample app with sample data called Dreamhouse We set up an Android emulator and the Salesforce Mobile SDKWe built an app logged into our org and fetched data from itIn the Part Two of this series we ll learn how to edit and insert data from the app to our org Stay tuned 2022-02-23 19:53:44
海外TECH DEV Community Bidirectional piping, how to make two programs communicate with each other https://dev.to/____marcell/bidirectional-piping-how-to-make-two-programs-communicate-with-each-other-2ke9 Bidirectional piping how to make two programs communicate with each otherFirst of all a small refresher on what piping is and how it workswhen you do something likeecho catstdout of echo is being piped to cat s stdin cat writes again the result that was read from stdin to stdout and you see the result in your terminal this is a example of unidirectional piping bidirectional piping would be if cat could write back to echo and echo could read what was piped basically you would have two program that can communicate with each other On Linux we do this creating a named pipe which is just a special type of file using the FIFO first in first out method so one program can write to that file and the other can read and vice versa the two easiest ways of creating a FIFO is using the program mkfifo or using bash built in function coproc both do basically the same thing the only different is that when using coproc you end up with more elegant code depending on who you ask let s create a simple program and implement bidirectional piping using mkfifo which is more explicit I m gonna write one program in bash and the other one in javascript node but any language that can write to stdin stderr and read from stdout would work so basically all of them let s create three programs prog prog and program to create the FIFO and call the other programsprog shecho bash hello read lineecho line gt amp echo bash how are you doing read lineecho line gt amp prog jsconst readline require readline const rl readline createInterface input process stdin output process stdout terminal false rl on line function cmd if cmd bash hello console error cmd console log javascript hello if cmd bash how are you doing console error cmd console log javascript I m fine thanks and the program to create the FIFO and call the two other programsstart shmkfifo p p bash prog sh gt p lt p amp node prog js lt p gt p rm rf p pWe delete the FIFOs in the last line to avoid a warning the next time we run bash start sh the warning would just tell us that the FIFO already exist now we can run everything withbash start shIt works one program can send messages to the other program when both programs end start also ends also we can only read or write to the FIFO if two program open the FIFO file if you remove the last line of start sh you can see the FIFO files that were created in the same directory If you try to open the FIFO file in a text editor your text editor will probably crash on hang indefinitely you might think that the same thing is possible just creating regular files but the code would be a lot more cumbersome FIFO allows us to write pretty elegant code connecting two different programs or two different instances of the same program let s talk a little bit about the actual codemkfifo p pThis command creates two FIFO files called p and pbash prog sh gt p lt p amp here we run the first bash program and tell it to point it s stdout to p and stdin to pnode prog js lt p gt phere we run the second program and do the opposite we tell him to read from p and write to prm rf p pThis line is not required it just avoids the warning when we run mkfifo again the next timeNow let s have a look at the programs themselves first the bash programecho bash hello read lineecho line gt amp echo bash how are you doing read lineecho line gt amp The only think that might be confusing here if you don t know bash very well is the lineecho line gt amp here we re redirecting from stdout to stderr if we don t do this we can t see the messages in our terminal remember that the stdout is going to the other program and not to the terminal if we just echoed without the redirecting the string will go to the FIFO and be read by prog same thing for the javascript codeconsole error cmd we do the above so we can print to stderr the javascript program prints the bash messages and the bash program prints the javascript messages another difference is that the javascript program calls the same callback every time it reads something from the fifo that s why we have the if statements to identify which message was receive and reply accordingly 2022-02-23 19:41:41
海外TECH DEV Community 100. Same Tree https://dev.to/melguachun/100-same-tree-447c Same TreeI m excited to cover this Leetcode algorithm for many reasons For the first time despite how minuscule it might seem I was able to write out the steps solve this problem This is a huge accomplishment for many reasons There is often a disconnect in learning between seeing and doing Especially when learning on your own it s hard to strike a balance between watching others and tackling something on your own Studying algorithms makes this just a challenging So to be able to break down my thought process into coding steps to achieve a solution shows that I am witnessing a bridge between seeing and doing I m starting to find connections between my thought process and transferring it into code So lets dive into it Given the roots of two binary trees p and q write a function to check if they are the same or not Two binary trees are considered the same if they are structurally identical and the nodes have the same value If we look at the first example we can further understand what makes a tree structurally identical to another What makes a binary tree identical are the following root nodes have the same valueleft subtree is identical right subtree is identicalThis means that both trees must have the same number of nodes as well as the same value at every node s position In this case the left subtree has a value of two in both trees and the right subtree has a value of three in both trees In example one we can see that trees p and q fulfill all the requirements to make them structurally identical Now that we understand what makes trees structurally identical let s think about how we can solve this algorithm The solution I found will be a recursive solution called Depth First Search DFS Depth First Search is the concept of choosing a node as a starting point and persist to the next neighboring nodes When recurring from the first node to the next the prior node is marked In the wort case all nodes will be visited at some point in this problem therefor time complexity will be O p q where the size of both trees will be added together Before we start coding let s think of some base cases for this solution Lets say If both trees are null that means that they are the same so we would return True if not p and not q return TrueWe are using conditional logic by using and to signify both p tree and q tree must be null to be True If one tree is null and the other has a node then they are not structurally identical which would return False if not p or not q or p val q val return FalseAgain we are using conditional by using or to say it doesn t matter which tree has a node or is null hence we must return False If there is a root check the value of that node If the vale is the same between trees p and q return True Otherwise return False return self isSameTree p left q left and self isSameTree p right q right Now let s compile this all together to get our solution class Solution def isSameTree self p Optional TreeNode q Optional TreeNode gt bool if not p and not q return True if not p or not q or p val q val return False return self isSameTree p left q left and self isSameTree p right q right In the first if statement we are implementing a base case to check if the trees are null If both are null it means they are structural identical and we return True In the second if statement we are checking our second base case that determines if one tree is null and the other has a node then the values of trees p and q are not equal so we return False If the two trees are not null and they have the same structure it will be passed to the last two lines of our code The last two lines will determine if there is a root to check the values of the root and then continue throughout the subtrees to compare their values If they are the same in value and structure it will return True otherwise it will be False Conclusion This is a note to all beginner coders programmers engineers and developers keep going I haven t been practicing algorithms for very long and I m still constantly bombarded with doubt throughout this process But having that moment of enlightenment where you can look at an algorithm and be a little less intimidated is an accomplishment within itself There is so much to learn out there which makes it hard to be patient but try not to let that stop you When it comes to algorithms try your best If you get stuck google it that s part of our job Try to understand how you got to your answer and the code behind it and move on Progress isn t a straight incline You will be where you want to be in due time Resources 2022-02-23 19:31:04
海外TECH DEV Community Intro to React - JSX and Elements https://dev.to/maxdemaio/intro-to-react-jsx-and-elements-3n8k Intro to React JSX and ElementsReact is a modern JavaScript library for building interactive user interfaces In this blog post we ll get a brief introduction and how to get started with React Demos Create React App demo Why React Let s look at an Instagram post I ve made The moment I “like a post the status changes The heart becomes red the number of likes changes and we can immediately see this on the web page Instagram has to do the changes by updating the DOM tree of the page and re rendering the page in the browser The application also has to show other Instagrammers that I ve liked this post if they re looking at it too As of it was recorded that Instagram had over billion users Revista Economică As of the date of this blog post that number has probably soared to over billion users Considering the size of Instagram it d be a challenge to ensure efficient and consistent DOM manipulation Luckily Facebook had already created a frontend library called React specialized in this What is React To make it short and snappy React js is a JavaScript library It allows developers to create user interfaces UIs and make the development of UI components easy and modular It was created by Jordan Walke a software developer at Facebook and it was open sourced to the world by Facebook and Instagram React FeaturesComponents JSX components are the building blocks of React applications Think of HTML templates but we write them using a special syntax called JSX After compilation JSX expressions become JavaScript function calls and evaluate to JavaScript objects Components can be simple or stateful Simple component that will display Yo props name class YoMessage extends React Component render return lt div gt Yo this props name lt div gt ReactDOM render lt YoMessage name MaxMayo gt document getElementById yo example Classic timer stateful componentclass Timer extends React Component constructor props super props this state seconds tick this setState state gt seconds state seconds componentDidMount this interval setInterval gt this tick Virtual DOM Instead of rebuilding the entire DOM tree for updates React makes use of the virtual DOM The virtual DOM is a lightweight copy of the actual DOM React will update exactly which virtual DOM objects have changed through diffing Unidirectional Data Flow React has a waterfall like concept of transferring data to other parts of the application State is passed to the view and child components Actions are triggered by the view and can update state SEO Performance you can even run React on the server for SEO performance code sharing and flexibility Getting StartedWe can use create react app to bootstrap a React application The only prerequisite is that we need Node js version We can check the Node version in our system with the command node v Off to the races npx create react app my appcd my appnpm startHere s a quick explanation of the folder structure generated by create react app FilesPurposenode modules All app dependencies live in this folderpublic This folder contains the public static assets of the applicationpublic index htmlThis is the first page that gets loaded when we run the applicationsrc All application related files folders are created in this foldersrc index jsThe entry point of the applicationpackage jsonContains the dependencies of the React applicationIf we observe the index js file we can see the following ReactDOM render lt React StrictMode gt lt App gt lt React StrictMode gt document getElementById root ReactDOM render renders an element or component to the virtual DOM The first parameter specifies what needs to be rendered The second argument specifies where to render A smaller example without components would look like this ReactDOM render lt h gt Yo world lt h gt document getElementById root Babel compiles JSX down to React createElement calls So these examples are identical const myElement lt h className yo gt Yo world lt h gt const myElement React createElement h className yo Yo world Unlike browser DOM elements React elements are cheap to create because they re plain JavaScript objects Our React render would render these React elements since Babel compiles JSX down to React createElement calls Then React createElement creates objects aka React elements that generally look like this Simplified structureconst myElement type h props className yo children Yo world These React elements are representations of what we d want to see on the screen Note elements make up components React reads these objects and uses them to make the DOM and update it ConclusionIn this blog post we learned about what React is and how to start a React application In future blog posts I ll dive into the main concepts of React with helpful demos Stay tuned Works CitedFUCIU Mircea “The Rise Of Instagram Evolution Statistics Advantages And Disatvantages Lucian Blaga University of Sibiu Romania Revista Economică 2022-02-23 19:23:07
海外TECH DEV Community Hello Devs https://dev.to/seymour1948/hello-devs-2bj6 Hello DevsIn this blog I will write about things that attract my interest and maybe it ll become some kind of bitacora in my actual journey of learning new technologies You are very welcome to be a witness of it or even partipate and sharing your probably invaluable experience 2022-02-23 19:21:58
海外TECH DEV Community Build APIs for the Web INSTANTLY with ASP.NET Core 6 https://dev.to/dotnet/build-apis-for-the-web-instantly-with-aspnet-core-6-30lc Build APIs for the Web INSTANTLY with ASP NET Core I ve been building web based applications for many years and I always run into the same questions and code that needs to be written again and again How do we get data into and out of the database for of our interactions The simple create read update and delete operations we ve simplified those processes over time with ORM tools like NHibernate Entity Framework and Dapper The next question is how do we get that data into our applications easily We want to create a repeatable process that is easy to follow and quick to integrate Typically folks have been building some sort of API that a web server responds with Great now we have to write ANOTHER layer of code over the database and generate records for all of those things we just exposed to our application with an ORM Enter Minimal APIsIn ASP NET Core we can dramatically simplify the creation of these APIs for interaction with the database by using the new Minimal API approach Our API code can be delivered in file referencing the Entity Framework context that connects to the database Consider this configuration to expose a Contacts table as a web endpoint that can be accessed with an HTTP GET verb var builder WebApplication CreateBuilder args builder Services AddSqlite lt MyContext gt Data Source contacts db var app builder Build app MapGet api Contacts async MyContext db gt await db Contacts ToArrayAsync app MapGet api Contacts id int async MyContext db int id gt var contact db Contacts FirstOrDefaultAsync x gt x Id id if contact null return Results NotFound return Results Ok contact app Run That s still a LOT of boilerplate code to just generate the GET and GET by id actions We still have more methods to write and that s just for this first entity Generate the code do it in lineThis got me thinking and I wanted to make this easier to build with sensible defaults I put together a simple prototype that would generate ALL of the default HTTP actions with a NuGet package and line of code var builder WebApplication CreateBuilder args builder Services AddSqlite lt MyContext gt Data Source contacts db var app builder Build app MapInstantAPIs lt MyContext gt app Run Now we re talking This one statement generates the following HTTP endpoints GET api ContactGET api Contact id POST api ContactPUT api Contact id DELETE api Contact id I put together a demo discussing this library and showing how it generates the same code that you might write by hand This is still just a prototype but if you would like to learn more check out our GitHub repository where we are welcoming discussions and pull requests You can even try out the library yourself by downloading the latest NuGet package How are you building APIs for the web How would you like to see it made easier and more repeatable 2022-02-23 19:19:19
海外TECH DEV Community What is the difference between DATETIME and TIMESTAMP data type in MySQL? https://dev.to/bobbyiliev/what-is-the-difference-between-datetime-and-timestamp-data-type-in-mysql-1f5b What is the difference between DATETIME and TIMESTAMP data type in MySQL IntroductionIf you have ever worked with MySQL and had to create your table structure you have probably noticed that the DATETIME and TIMESTAMP data types are quite similar at a first glance as they have a lot of similarities In this tutorial we will go over each one of them and learn the main differences between both so that you could know when you should use them DATETIMEThe DATETIME type is used for values that contain both the date and the time For example when retrieving the value MySQL will display it in the following format YYYY MM DD hh mm ss An important distinction is that the range that is currently supported is to You can think of DATETIME as a literal value as it stores the date and the time but has no reference to a specific timezone So when you store the value of NOW for example the server time zone will be used Once inserted the value of the DATETIME will remain the same regardless of any current sessions This is an important distinction that will get a bit clearer once you go over the example below TIMESTAMPJust as DATETIME the TIMESTAMP data type contains both the date and the time in the following format YYYY MM DD hh mm ss However unlike DATETIME the TIMESTAMP data type has a fixed range between UTC to UTC You should always consider this limit as it might not be suitable for all applications and use cases For more information on why this specific range make sure to read more about the Unix Time An important thing to keep in mind is that when you display the values of a TIMESTAMP column they would be converted to the current time zone What happens is that MySQL would convert the TIMESTAMP values from the current time zone to UTC when storing them but then it would convert the values back from UTC to the current time zone of the retrieval Let s go through the following example to make this a bit more clear ExampleLet s create a very simple table with just two columns for each of the two data types CREATE TABLE demo table datetime column DATETIME timestamp column TIMESTAMP Then let s insert the same values in both using NOW INSERT INTO demo table VALUES NOW NOW Then check the values of both columns SELECT FROM demo table Output datetime column timestamp column So far the values of both columns are the same But then let s check the current time zone SHOW VARIABLES LIKE time zone Output Variable name Value system time zone UTC time zone SYSTEM Next let s change the time zone for our current session SET time zone America New york Note if you get the following error ERROR HY Unknown or incorrect time zone America new york you can run the following command in another terminal window mysql tzinfo to sql usr share zoneinfo mysql mysqlAfter that let s see how the output values change SELECT FROM demo table Output datetime column timestamp column As you can see the displayed value of the datetime column remained the same but the timestamp column value changed and is now referencing our current time zone ConclusionThis is all Now you should have a better idea of what the main differences between datetime and timestamp are In case that you want to learn more about SQL in general I would recommend the following free eBook Introduction to SQL open source eBookIn case that you are already using SQL on daily basis and are looking for a way to drastically reduce the latency of your data analytics make sure to out Materialize Materialize is a Streaming Database for Real time Analytics It is a reactive database that delivers incremental view updates and it helps developers easily build with streaming data using standard SQL 2022-02-23 19:17:20
Apple AppleInsider - Frontpage News Here's how the five-hour Amsterdam Apple Store standoff played out https://appleinsider.com/articles/22/02/23/heres-how-the-five-hour-amsterdam-apple-store-standoff-played-out?utm_medium=rss Here x s how the five hour Amsterdam Apple Store standoff played outA hostage situation that led to an hours long standoff took place at Apple s flagship retail location in Amsterdam on Tuesday Here s how the incident went down Apple sign outside the Amsterdam location Credit Medhat Dawoud UnsplashApple s brick and mortar location was the site of a hostage situation and standoff on Tuesday Feb The hostage taker reportedly had disarmed explosives as well as an automatic weapon He fired multiple times at police officers during the situation Read more 2022-02-23 19:42:12
Apple AppleInsider - Frontpage News How to delete an Apple ID account https://appleinsider.com/articles/21/01/04/how-to-delete-an-apple-id-account?utm_medium=rss How to delete an Apple ID accountIf you really don t want to have an Apple ID associated with your identity it is possible to delete it Here s how to eliminate the Apple centric account There are a few reasons to delete an Apple ID account completely including some that are quite sensible and plausible For example a person may have multiple accounts set up by accident but only wants to use one and not the other On the other end of the scale there s reasons such as no longer wanting to be associated with Apple or its products at all or a person wishing to disassociate themselves from technology as a move to go off grid Read more 2022-02-23 19:03:28
海外TECH Engadget USPS won't be buying more electric mail trucks, despite EPA pleas https://www.engadget.com/usps-electric-next-gen-mail-truck-gas-194803588.html?src=rss USPS won x t be buying more electric mail trucks despite EPA pleasThe USPS is moving forward with plans to spend billion on a fleet of next generation mail trucks that mostly run on gas despite requests from the EPA and Biden administration to electrify its new vehicles instead The new trucks which were revealed last year feature modern amenities like air conditioning degree cameras and collision detection While they can be powered by either gas or electric engines the initial order from the USPS only included electric trucks or around percent of the entire order quot Our commitment to an electric fleet remains ambitious given the pressing vehicle and safety needs of our aging fleet as well as our fragile financial condition quot Postmaster General Louis DeJoy said in a statement He went on to say that the agency would try buy more EVs as additional funding became available but added that quot the process needs to keep moving forward quot to give postal workers more modern vehicles nbsp Today s postal trucks which include the Grumman Long Life Vehicle LLV have been in service since the s have few safety features and abysmal single digit fuel economy Practically any modern truck would be an improvement but the EPA argued earlier this month that investing in more gas vehicles would ultimately accelerate climate change and hurt American health The USPS ultimately decided to ignore the EPA s request for supplemental environmental impact statements and it refused to hold a public hearing about the next gen vehicle plan nbsp 2022-02-23 19:48:03
海外TECH Engadget Sony is rolling out a way to share PS5 clips from the PS App https://www.engadget.com/playstation-5-ps5-videos-screenshots-share-ps-app-ios-android-193325093.html?src=rss Sony is rolling out a way to share PS clips from the PS AppSony is gradually rolling out an option to let PS players access captured screenshots and clips from the PS App on iOS and Android The company started testing the feature in Canada and Japan in October At the outset players in the Americas will be able to view and share their PS captures on the mobile app Folks in the US Argentina Bolivia Brazil Chile Colombia Ecuador El Salvador Guatemala Mexico Panama Paraguay Peru and Uruguay should gain access in the coming days Sony will expand the feature to more territories next month Some people outside of Canada and Japan had access to the feature as of late January according to reports which hinted that a broader rollout was imminent We re gradually rolling out the ability to share your PS game captures through PS App in more regions Americas are first up with more countries next month Details pic twitter com sfrmPZZjーPlayStation PlayStation February To use the feature you ll need to switch it on manually on PS by going to the Captures tab of the settings menu and enabling Auto Upload On the PS App you ll need to enable the Captures option under Library You ll then be able to download the clips and screenshots to your phone or tablet Your PS will upload all clips lasting under three minutes as long as they re not in K All screenshots taken with the Create button or Create Menu shortcuts will be uploaded too Your screenshots and clips will only only stay on Sony s servers for days after you capture them though they ll remain on your console s storage While that s a bit of an odd limitation this is a useful way to get your screenshots and clips on your phone You ll be able to share them on social media and with your friends without using the PS s limited sharing options or transferring captures to a computer using a USB drive 2022-02-23 19:33:25
海外TECH Engadget Investigation of VRChat finds rampant child grooming and other safety issues https://www.engadget.com/bbc-vrchat-child-safety-report-193124305.html?src=rss Investigation of VRChat finds rampant child grooming and other safety issuesOne of the more popular VR apps you can download through Steam and Meta s Oculus Quest Store has a child safety problem If you re unfamiliar with VRChat the app styles as “the future of social virtual reality “Our vision for VRChat is to enable anybody to create and share their own social virtual worlds the game s developer says on its Steam store page With some understanding of Unity players can create their own social spaces and avatars That means you can see a lot of creativity on display in VRChat but there s also a dark side to it as the BBC nbsp found out Posing as a year old girl BBC researcher Jess Sherwood said she entered a virtual strip club where she saw adult men chase a child while telling them to remove their clothes In many of the rooms Sherwood visited she frequently saw condoms and sex toys on display and on one occasion even saw a group of adult men and minors simulating group sex She also saw instances of grooming nbsp quot It s very uncomfortable and your options are to stay and watch move on to another room where you might see something similar or join in ーwhich on many occasions I was instructed to do quot she said quot Predatory and toxic behavior has no place on the platform VRChat told the BBC The developer added it was “working hard to make itself a safe and welcoming place for everyone We ve reached out to the company for additional comment Part of the problem stems from the fact nearly anyone can download and play VRChat For instance to download the app from the Oculus Quest Store all you need is a Facebook account Sherwood created a fake profile to set up her account and access VRChat and users of all ages can mingle freely without age gating nbsp nbsp Sherwood isn t the first person to notice VRChat has a child safety problem While the game has a “Very Positive rating on Steam the presence of predatory adults is something you see referenced frequently in both positive and negative reviews “Enjoyable social VR slowly being ruined by horny degenerates and ddosers said one player with more than hours spent in the game “The amount of people around the age of attempting to do stuff like flirting all the way to trying to have e sex with clearly underage users is alarming said another player VRChat isn t the only metaverse app dealing with what amounts to a harassment problem At the start of February Meta added a Personal Boundary feature to Horizon Worlds to give users the ability to prevent people from entering their personal space More recently Microsoft took the dramatic step of removing Altspace VR s social hubs nbsp 2022-02-23 19:31:24
海外TECH Engadget Acer's latest Swift 5 laptop features a 16:10 display and 12th-gen Intel Core https://www.engadget.com/acer-swift-5-3-2022-laptop-update-192727858.html?src=rss Acer x s latest Swift laptop features a display and th gen Intel CoreAcer isn t wasting any time in making use of Intel s th gen ultraportable processors The PC maker has unveiled new versions of its Swift and Swift laptops that not only make use of new th gen Core chips but include a handful of upgrades of their own Most notably the new Swift pictured above has switched to a x display whose taller ratio not only helps with vertical content like documents and websites but helps eliminate the quot chin quot present on its predecessor The two tone aluminum shell gives it a more premium look too for those moments when you want to impress executives The revamped Swift includes up to a core CPU GB of LPDDR RAM and TB of SSD storage It also meets Intel s Evo specs for hours of real battery life and fast charging that delivers four hours of use from a minute top up Two Thunderbolt ports two USB Gen ports and HDMI offer solid connectivity too The system is heavier than its predecessor at lbs but you might not mind given the upgraded cooling improved twin fans and D heat pipes a low noise p webcam and a trackpad made from ocean bound plastic waste AcerThe Swift shown at middle is a more modest upgrade You ll have to make do with a display p or p in this inch system but you can have up to TB of SSD space minute fast charging and a mix of USB C USB A and HDMI ports The p low noise webcam also makes the leap to this lower priced model and you ll have your choice of more colorful bodies Be ready to wait Acer ships both systems in June with the Swift starting at and the Swift at The Swift s price is a steep hike from the you would have paid for the late model but Acer also appears to be targeting a more upscale audience ーthere don t appear to be many compromises 2022-02-23 19:27:27
海外TECH Engadget MIT study finds neurons in epilepsy patients that only respond to singing https://www.engadget.com/mit-found-a-group-of-neurons-in-your-brain-that-only-respond-to-singing-191218404.html?src=rss MIT study finds neurons in epilepsy patients that only respond to singingA study by MIT scientists on a group of epilepsy patients discovered that a specific group of neurons in their brains respond only to singing ーand not to instrumental music or any other type of sound The findings of the study were published today in the science journal Current Biology Scientists are still working to nail down the implications of the study for epilepsy patients some of whom rely on music as a form of therapy to reduce seizures “The work provides evidence for relatively fine grained segregation of function within the auditory cortex in a way that aligns with an intuitive distinction within music says Sam Norman Haignere the lead author of the study and assistant professor of neuroscience at the University of Rochester Medical Center Given how small and specific the study s sample size is fifteen people there s not much we can conclude from this single study alone But it will likely advance further studies on the link between neuroscience epilepsy and music in the future The study s participants were a group of fifteen epilepsy patients all whom consented to have electrodes implanted in their skull They were then asked to listen to hundreds of different sounds both natural and synthesized Scientists assisted by fMRI or functional magnetic resonance imaging observed how neurons in the auditory cortex of participants reacted to each sound Back in the same researchers used fMRI imaging to identify what they believe are a group of neurons that respond only to music nbsp The neurons only elicited mild reactions when hearing the sound of human voices but fired up at the sound of instrumental or vocal music In the new study the researchers found that there was a special subset of neurons right next to the original group that specifically lights up when the brain hears human singing quot There s one population of neurons that responds to singing and then very nearby is another population of neurons that responds broadly to lots of music At the scale of fMRI they re so close that you can t disentangle them but with intracranial recordings we get additional resolution and that s what we believe allowed us to pick them apart quot says Norman Haignere The research could also advance our understanding of the link between music and epilepsy While certain kinds of music can reduce the number of seizures that epilepsy patients suffer from some rare cases of epilepsy can also be provoked by music One recent study published in Scientific Reports last year found that listening to seconds of Mozart s “Sonata for Two Pianos in D Major helped drive down the neuron activity that causes seizures in epilepsy patients 2022-02-23 19:12:55
医療系 医療介護 CBnews 処遇改善財源の介護保険給付化、政策の趣旨と矛盾-快筆乱麻!masaが読み解く介護の今(74) https://www.cbnews.jp/news/entry/20220221203321 介護保険 2022-02-24 05:00:00
ニュース BBC News - Home Ukraine conflict: Boris Johnson defends UK sanctions against Russia https://www.bbc.co.uk/news/uk-politics-60494130?at_medium=RSS&at_campaign=KARANGA russia 2022-02-23 19:34:11
ニュース BBC News - Home Zverev thrown out of Mexican Open after attacking umpire's chair https://www.bbc.co.uk/sport/tennis/60490225?at_medium=RSS&at_campaign=KARANGA Zverev thrown out of Mexican Open after attacking umpire x s chairAlexander Zverev is thrown out of the Mexican Open for unsportsmanlike conduct after attacking the umpire s chair at the end of a doubles match 2022-02-23 19:08:51
ビジネス ダイヤモンド・オンライン - 新着記事 「倉庫シェアリング」が本格化、ムダをなくしたい物流業者ニーズの背景 - 物流専門紙カーゴニュース発 https://diamond.jp/articles/-/296478 2022-02-24 05:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 「1泊30万円なんて安さで大丈夫?」富裕層旅行商談会で見えた驚愕トレンド - 「リベンジ消費」は起きているのか https://diamond.jp/articles/-/296711 世界最大 2022-02-24 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 虎の子クレベリン巡る「大幸薬品vs消費者庁」全面戦争の行方 - 医薬経済ONLINE https://diamond.jp/articles/-/296476 online 2022-02-24 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 マスク着用「緩和」の民主党州知事続出、“身内の反乱”で誤算続くバイデン政権 - みずほ安井のHELP!アメリカ政治経済 https://diamond.jp/articles/-/297084 軌道修正 2022-02-24 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 「伊藤忠の戦後成長」を支えた、元軍人たちの知られざる役割とは - 伊藤忠 財閥系を凌駕した野武士集団 https://diamond.jp/articles/-/285835 「伊藤忠の戦後成長」を支えた、元軍人たちの知られざる役割とは伊藤忠財閥系を凌駕した野武士集団瀬島龍三の場合は敗戦から年が過ぎた後の就職だが、軍隊がなくなって、公的機関や民間企業に職を求めた人数は多い。 2022-02-24 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【クイズ】祖母の生命保険金500万円を相続人でないのに受け取った孫、相続税はかかる? - 「お金の達人」養成クイズ https://diamond.jp/articles/-/297035 生命保険 2022-02-24 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 アクセンチュア、NTTデータ…「セブン&アイDX抗争」で暗躍した企業とカネの実額を暴露 - 見逃し配信 https://diamond.jp/articles/-/297034 配信 2022-02-24 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 日本の賃金「韓国の77%」は本当か、時代遅れの日本の賃金統計 - 野口悠紀雄 新しい経済成長の経路を探る https://diamond.jp/articles/-/297066 国際比較 2022-02-24 04:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 東京23区「マンション居住者の平均年収」ランキング、自分の身の丈に合う区は? - ビッグデータで解明!「物件選び」の新常識 https://diamond.jp/articles/-/297085 自分たち 2022-02-24 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 年収1000万円もザラ!映像クリエイターが「稼げる職業」になったワケ - 消費インサイド https://diamond.jp/articles/-/297087 高まり 2022-02-24 04:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 エリートと一般職の給与格差が激しい米国式「ジョブ型雇用」の現実 - 2040年「仕事とキャリア」年表 https://diamond.jp/articles/-/296731 経営コンサルタント 2022-02-24 04:05:00
ビジネス 東洋経済オンライン 普通列車と違う?新幹線・特急の運転士は「特別」か 社内で「選抜」ある場合も、SLは複数免許が必要 | 特急・観光列車 | 東洋経済オンライン https://toyokeizai.net/articles/-/514209?utm_source=rss&utm_medium=http&utm_campaign=link_back 子どもたち 2022-02-24 04:30: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件)