投稿時間:2022-06-16 23:21:45 RSSフィード2022-06-16 23:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] Amazon、今年のプライムデーは7月12日午前0時から48時間 https://www.itmedia.co.jp/news/articles/2206/16/news208.html amazoncom 2022-06-16 22:35:00
IT ITmedia 総合記事一覧 [ITmedia Mobile] 「OPPO Reno7 A」は何が変わったのか 先代の「Reno5 A」と比較する https://www.itmedia.co.jp/mobile/articles/2206/16/news207.html itmediamobile 2022-06-16 22:30:00
AWS AWS Government, Education, and Nonprofits Blog Getting started with AWS Ground Station https://aws.amazon.com/blogs/publicsector/getting-started-aws-ground-station/ Getting started with AWS Ground StationPublic sector organizations and commercial enterprises alike are reaping the benefits of AWS Ground Station which lets customers command and control satellite communications process satellite data and scale their satellite operations This article provides a general overview of AWS Ground Station its key benefits and general advice for getting started 2022-06-16 13:15:43
python Pythonタグが付けられた新着投稿 - Qiita pip, brew, pyenv https://qiita.com/abcrice/items/009144f97c133db45958 切り替え 2022-06-16 22:38:42
python Pythonタグが付けられた新着投稿 - Qiita JupyterLab 環境構築 Ubuntu 22.4 https://qiita.com/hiro_hiro_0425/items/5a6e62fd7691c9ed0c2a jupyterlab 2022-06-16 22:03:12
Linux Ubuntuタグが付けられた新着投稿 - Qiita JupyterLab 環境構築 Ubuntu 22.4 https://qiita.com/hiro_hiro_0425/items/5a6e62fd7691c9ed0c2a jupyterlab 2022-06-16 22:03:12
GCP gcpタグが付けられた新着投稿 - Qiita Google Cloud アップデート (6/2-6/8/2022) https://qiita.com/kenzkenz/items/ccb439edbaaae0b10033 bigtablejun 2022-06-16 22:25:00
Ruby Railsタグが付けられた新着投稿 - Qiita database.ymlを編集する事で変えられるもの https://qiita.com/NaoyukineoG/items/82b7dbb4174c601d2ecf databaseyml 2022-06-16 22:13:37
海外TECH Ars Technica Russia is taking over Ukraine’s Internet https://arstechnica.com/?p=1861225 censorship 2022-06-16 13:44:21
海外TECH MakeUseOf What Is a 120Hz Laptop Screen and Is It Worth the Money? https://www.makeuseof.com/is-120hz-laptop-worth-the-money/ laptop 2022-06-16 13:45:14
海外TECH MakeUseOf 8 Tips on Getting a Remote Job With No Work Experience https://www.makeuseof.com/tips-to-get-remote-job-no-experience/ remote 2022-06-16 13:30:14
海外TECH MakeUseOf Level Up Your Gaming Experience With Govee's DreamView G1 Gaming Light Kit https://www.makeuseof.com/govee-dreamview-review-gaming-lights-kit/ battle 2022-06-16 13:05:15
海外TECH DEV Community Quick guide to Function Overloading in TypeScript https://dev.to/murashow/quick-guide-to-function-overloading-in-typescript-2178 Quick guide to Function Overloading in TypeScriptWe use functions all the time in our apps generally speaking most of the JS code are functions TypeScript gives us many ways to describe them For a basic function this is fairly easy to do but what if the function takes a variety of argument counts and types or even returns a different type depending on how it s called For such cases TypeScript has the handy function overloading feature Let s see how to use it and how it can help you improve your code Function typingI feel hungry now so let s create a function that will cook a dish function cookDish ingredient string string return ingredient is ready bon appétit We passed a single string argument as an ingredient and it returns a string dish after invocation cookDish is ready bon appétit But wait this is not enough I definitely need a sandwich here To cook it we need to modify our function so that it could accept multiple ingredients function cookDish ingredient string string string const tableSet is ready bon appétit if typeof ingredient string return ingredient tableSet else if Array isArray ingredient return ingredient join tableSet throw new Error Nothing to cook We used Union type to describe our function argument that can be either one string or multiple string of them cookDish is ready bon appétit cookDish is ready bon appétit Adding types to support various arguments is a common and good approach in most cases but sometimes you need to explicitly define all the ways to call a function This is where function overloading comes into play Function overloadingIn the case of a rather complex function to improve usability and readability it is always better to use the function overloading feature to improve usability and readability This approach is considered the most flexible and transparent To use this we need to write some function signatures Overload signature defines different ways to call a function arguments and return types and doesn t have a body There can be multiple overload signatures usually two or more Implementation signature provides an implementation for a function function body There can be only one implementation signature and it must be compatible to overload signatures Let s rewrite our cookDish using function overloading Overload signaturefunction cookDish ingredient string stringfunction cookDish ingredients string string Implementation signaturefunction cookDish ingredient any string const tableSet is ready bon appétit if typeof ingredient string return ingredient tableSet else if Array isArray ingredient return ingredient join tableSet throw new Error Nothing to cook Two overload signatures describe two different ways the function can be called with string or string argument In both ways we will get a cooked string dish as a result An implementation signature defines the behavior of a function within a function body Our function invocation doesn t change though we can cook as before cookDish is ready bon appétit cookDish 🫓 is ready bon appétit const money any cookDish money No overload matches this call Overload of ingredient string string gave the following error Argument of type any is not assignable to parameter of type string Overload of ingredients string string gave the following error Argument of type any is not assignable to parameter of type string Note at the last example above money can t cook you a dish although an implementation signature is the one that implements our function it cannot be called directly even though it accepts any as an argument function cookDish ingredient any You can call only overload signatures It s dinner time let s look at a slightly more complex example function cookDinner dish string stringfunction cookDinner money number string Wrong argument type This overload signature is not compatible with its implementation signature function cookDinner dish string drink string dessert string stringfunction cookDinner dish string drink string dessert string string let dinner dish if drink amp amp dessert dinner drink dessert return dinner is ready bon appétit cookDinner is ready bon appétit cookDinner is ready bon appétit cookDinner Invalid number of arguments No overload expects arguments but overloads do exist that expect either or arguments Need to remember that implementation signature must be compatible to overloads and can t be called directly ConclusionFunction overloading is a powerful TypeScript feature that allows you to type your functions more elegantly More read Function OverloadsFunction overloading Do s and Don tsArrow functions overloadHope you enjoyed this guide stay tuned for more 2022-06-16 13:45:57
海外TECH DEV Community Open Source is great and all, but to whom? https://dev.to/hunghvu/open-source-is-great-and-all-but-to-whom-3p1g Open Source is great and all but to whom As days go by more people are going for open source software Many factors contribute to this movement from the expansion of Big Tech data collection to the increase of cyber warfare around the globe Open source software can be a solution to these concerns and I am one of the users too No matter your background there should be no barriers to joining the wave That said you might want to be aware of the following before making a decision Table of contentsOpen source means privacy a false sense Open source means secure but to whom A great monetarily free solution or just a freemium Overhead of adapting solutions Freedom is a solution to everything a fallacy Wrap up Open source means privacy a false sense Back to table of contents Personal data is valuable whether it is sensitive or not so there is an international market just for selling your data The Big Tech has been known for this kind of practice but not just them your daily coffee app can even know where you are at and doing at the moment Data collectors can use your information for their targeted tracking purpose or sell it to third parties That said at least these companies do not harm you Things get worse when they suffer a data breach and your information is exposed to malicious actors Considering the extensive nature of modern data collection who knows what the malicious actors are going to do with your data After all you are practically doxxed at that point With open source software you can determine whether the data collection mechanism is implemented by looking at the codebase In general the open source community promotes privacy and many of them have that as a focus but nothing prevents software developers to have such mechanisms in place In the case of Audacity a popular open source audio editing application changes to its privacy policy in mid created an uproar Whether the seriousness of these changes was blown out of proportion or not the outcry died down eventually and Audacity is still phoning home with its latest version in To me telemetry is acceptable to a certain degree It is really helpful to know some detail about user usage to improve my product but the open source community is really against it for an understandable reason Perhaps this is one reason why open source software tends to have a worse user experience compared to a proprietary alternative therefore hindering its adoption Open source means secure but to whom Back to table of contents Given enough eyeballs all bugs are shallow Linus s lawWith the increase in global cyber warfare threats to online security have rapidly grown along the line Open source software fights this with transparency and lets the communities discover and patch exploits and vice versa closed source software achieves the goal via obscurity Now then which is a better approach This has been debatable for decades and at least to me there is no definitive answer This aspect is all up to whoever maintains the software Admittedly with open source the community help detects vulnerabilities promptly as everything is transparent that is if there is an active community in the first place When can I have a reliable open source anti malware solution on Linux As a normal user do you have enough resources and capabilities to review the codebase If the answer is no then how is it different than using closed source software Everything is effectively abstracted away and you are just trusting that software maintainers are doing the job right With that said there are a few things to consider Are there many active and experienced contributors so the vulnerabilities can be detected promptly Are the maintainers themselves well versed in cybersecurity Is the project under active development Does it have a reasonable vulnerability disclosure policy and a good track record For the reasons stated I only use established projects which are backed by a dedicated community or a reputable organization e g Firefox VLC Linux LineageOS It is not a de facto rule but at least I can comfortably say I know no more than these project maintainers A great monetarily free solution or just a freemium Back to table of contents The free and open source software FOSS community promotes free software and indeed many projects operate on free licenses e g GNU MIT If you are into software development then the power of open source can really be seen there That said many operate on a freemium model require payment for full feature access either open core or partially open source e g MUI SheetJS In an extreme case the open source license can be too restrictive that prevent software usage in common scenarios effectively making the software nonfree In these cases it is advisable to consult attorneys before adopting the solutions Overhead of adapting solutions Back to table of contents In certain industries specific software suites are considered a default standard People have been using these software suites since their schooltime The proprietary ecosystems tend to use undisclosed protocols so they are not even compatible with open source solutions which are built mostly on open standards In a collaborative environment if you break even one chain it can create a cascading effect and hence a dilemma By being the sole adopter you can potentially increase overhead which leads to net negative results However if there is no adopter then the open source solutions can never grow to compete with proprietary software In the video below Linus and his team tried to use freemium not entirely open source and move away from Adobe s proprietary ecosystem In the end that could not happen Freedom is a solution to everything a fallacy Back to table of contents Monetarily free is one aspect of open source software but the main point is about free in freedom The source code is publicly available so anyone can fork modify and redistribute legally under an open source license assuming the terms are followed If you want more privacy feel free to modify the software your way If you want more security feel free to review the codebase for vulnerabilities and patch it yourself If the current project is somehow burnt to the ground you can try another project as they most likely are compatible with each other Everything is under your control With open source everything is configurable but the question about feasibility remains there Do you have enough resources to learn a new technology stack Do you have enough knowledge to modify its codebase What do you know about cybersecurity to patch the vulnerabilities Software development is not an easy task so most likely people do not have enough time to spend on tweaking around Fortunately the nature of open source allows unlimited contributors around the world to do the hard work for you so as a newcomer it is unlikely you have to do something yourself With that said you have choices and are not bound by the monopolistic approach of proprietary software When something goes off someone out there may fork the project and bring it a new life That is great and all but waiting for someone to stand up and maintain the fork is just as uncertain as it can be Even if that happens there is a question can you entirely trust the strangers If it is a corporate then they are legally bound and want to keep you as a customer due to monetary incentives By that alone I believe they are safer than some random people on the Internet After all no one wants to suffer any supply chain attack at all node ipc s maintainer embeds malware in its codebase Large scale NPM packages supply chain attack Wrap upBack to table of contents Even when I daily drive Linux and other open source solutions now I still cannot confidently say it is bulletproof Following in common good practices can help me go further but it is not the end of the road I have seen open source become a trend or even a buzzword in recent years and that was also what got me into this community If you are the same welcome There are many benefits to using open source software and I encourage you to try it out Remember as with everything on the Internet right now treat all software with caution and use them wisely Interested in web development GitHub Actions WordPress and more My other articles might be helpful to you Advanced GitHub Actions Conditional Workflow Host a free WordPress site with Google Cloud and Cloudflare How to run a web app on Google Cloud App Engine GAE 2022-06-16 13:29:19
海外TECH DEV Community How to Use Hexadecimal Color Strings in Flutter? https://dev.to/kuldeeptarapara/how-to-use-hexadecimal-color-strings-in-flutter-4g52 How to Use Hexadecimal Color Strings in Flutter While the new technologies are opening the way for coding more than of the global developers are using Flutter It comes as the open source software development kit SDK from technical giant Google free for all developers It has a single codebase that helps developers create scalable and high performance applications with functional user interfaces for IOS or Android Hence the run for hire flutter developer is at the fastest speed Not surprisingly Flutter has crossed the famous React Native to become the first preference for mobile app development While building apps using Flutter developers have to refer to a design file to create a user interface for the app The easiest way is to copy the color in the Hexadecimal color code string Let us understand all about using these hexadecimal color strings in Flutter How does Flutter work It is easy to understand Flutter working It is a layered system with a dedicated framework platform specific embedded and the engine All Flutter applications are created using Google s Dart object oriented programming language The flutter engine is written in C or C and the Skia library forms the Flutter graphics capabilities Dart Framework It contains material Cupertino Widgets Rendering Animation Painting Gestures Foundation etc Engine It contains Service Protocol Composition Platform Channels Dart Isolate Setup Rendering System Events Dart Runtime Management Frame Scheduling Asset Resolution Frame Pipelining Text Layout etc Embedder It contains Render Surface Setup Native Plugins App Packaging Thread Setup Event Loop Interop etc Benefits of FlutterSome of the key advantages of using Flutter include It offers an unbeatable user experience All the UI created in Flutter are functional attractive and well designed Highly scalable Developers can quickly add or remove features in Flutter applications Further the real time database updates make it easy for the developers to reduce downtime Easy to learn and easy to use Flutter is a simple application development language Further Flutter has excellent documentation and different platforms use Flutter to create applications Speedy application development Cross platform mobile application development is fast and straightforward due to different features Hence it is easy to create iOS and Android applications What are hexadecimal color strings in Flutter The hexadecimal color strings are the methods of describing the colors The format of these strings is RRGGBB where RR stands for red color GG stands for Green color and BB stands for Blue color Every color pair in hex code ranges from to FF where stands for no color while FF stands for full intensity The issue with the hexadecimal color code in Flutter is that it is not possible to use it directly It is because the color class in Flutter accepts integers as parameters only Hence it is required to convert the hex code into integer format which the color class can understand Let us now move on to the different steps to use hexadecimal color strings in Flutter Ways to use hexadecimal color strings in FlutterDevelopers can adopt any of the three ways to use hexadecimal color strings in Flutter These two methods are Without using extension Start by removing the “ sign Add “xFF at the Start of the color code Put it in the color class like “Color xFF “backgroundColor Color xFF Without using extension Using the extension file in Flutter makes it easy to use hexadecimal color strings The simple steps for the same are Starts by creating a new file “extension dart under the library folder and adds the code where “ is replaced with “ff The color string is converted into the integer value Use extension and add toColor at the end of the hex color like “ ac toColor It is easy to change the opacity of color in Flutter codes All you need to do is choose the values of “FF or ff according to the required opacity Using main dart file It is easy to use the color class of Flutter to pass the hex color in it The quick steps for the same are Importing the material dart package in the app s main dartStarting with the importing of material dart package is easy to import material dart in the main dart file or any file where you need to use hex color code It is like import package flutter material dart Calling MyApp in the run app functionThe next step is to call the main class MyApp using runApp Function It is like void main 🡺runApp MyApp Creating main class named MyAppIt is important to create the main class named MyApp It is like class MyApp extends StatelessWidget Using hex color to our FloatingActionButton widgetSource code for color coding dart fileimport package codereview extension dart import package flutter material dart class ColorCoding extends StatelessWidget const ColorCoding Key key super key key override Widget build BuildContext context return Scaffold appBar AppBar title const Text hexadecimal color body const Center child Text Welcome Hello Flutter Developers floatingActionButton FloatingActionButton onPressed tooltip button child const Icon Icons star backgroundColor ac toColor Source code for extension dart file import package flutter material dart extension ColorExtension on String toColor var hexStringColor this final buffer StringBuffer if hexStringColor length hexStringColor length buffer write ff buffer write hexStringColor replaceFirst return Color int parse buffer toString radix Output Advantages of using hexadecimal color strings in FlutterSome of the top benefits of using hexadecimal color strings in Flutter include Using hexadecimal color strings in Flutter eliminates the need for binary codes and hence offers a human friendly representation of values There is no difference between the RGB and HEX colors as both are the different ways of communicating blue green or red color values Disadvantages of using hexadecimal color strings in FlutterSome of the points of concern while using hexadecimal color strings in Flutter include While creating a “color from the hex string the color string doesn t remain to be a “const Assigning the colors according to the instantiating colors efficiently to improve the project standards is important Wrapping Up Hence it is easy to use hexadecimal color strings in Flutter While it has its advantages and disadvantages it is easy for any developer to understand the source codes Starting from the definition of a hexadecimal color code string the process of using it and changing the opacity it is easy to create amazing projects in Flutter 2022-06-16 13:08:48
Apple AppleInsider - Frontpage News Daily deals June 16: iPhone 12 and Apple Watch Series 6 scratch & dent sale on Woot!, discounted AirTags, more https://appleinsider.com/articles/22/06/16/daily-deals-june-16-iphone-12-and-apple-watch-series-6-scratch-dent-sale-on-woot-discounted-airtags-more?utm_medium=rss Daily deals June iPhone and Apple Watch Series scratch amp dent sale on Woot discounted AirTags moreIn addition to the Woot scratch dent sale Thursday s best deals include off a inch Vizio K TV off a WD TB SSD off a Kodak printer and much more Best deals June AppleInsider searches online stores every day to uncover discounts and offers on Apple hardware smart devices accessories toys and other products The best finds are collected together into our daily deals list Read more 2022-06-16 13:19:17
海外TECH Engadget EU's stricter disinformation guidelines get support from Google, Meta and Twitter https://www.engadget.com/eu-code-of-practice-on-disinformation-133102937.html?src=rss EU x s stricter disinformation guidelines get support from Google Meta and TwitterSome of the biggest names in tech have signed up for the European Union s escalating war against disinformation The EU has published a tougher Code of Practice on Disinformation with commitments from companies and organizations including Google Meta Microsoft TikTok Twitch and Twitter The stronger guidelines are meant to both refine the existing code while expanding it to deal with lessons learned in recent years including from the pandemic and Russia s invasion of Ukraine Participants in the updated code have promised better efforts to strip disinformation purveyors of revenue such as removing ads The signatories also have to tackle bots fake accounts and deepfakes used to spread bogus claims Supporters will have to create transparency centers and task forces to show how they re implementing the code backed by improved monitoring and provide better data access to researchers They ll have to more clearly label political ads too Users will get better tools to spot and flag false claims while expanded fact checking will cover all EU countries and languages Those agreeing to the code have six months to implement the necessary changes They ll share their first implementation reports at the start of The EU first published the code in and asserts that it helped fight disinformation surrounding elections the pandemic and Ukraine However there s little doubt that the situation has changed in the four years since Bots have become a significant problem and disinformation more frequently spreads through livestreams in addition to recorded media and social network posts In theory the revised approach will not only more catch more attempts to peddle fake info but do more to discourage that peddling in the first place As before the code is strictly voluntary This won t stop sites that either turn a blind eye to disinformation campaigns or don t feel they can adequately clamp down on bad behavior With numerous tech giants involved though this could make it considerably harder for fakers to gain much traction in Europe and beyond 2022-06-16 13:31:02
海外TECH Engadget Surface Laptop Go 2 review: Basic, but in a good way https://www.engadget.com/surface-laptop-go-2-review-basic-but-in-a-good-way-specs-price-133047655.html?src=rss Surface Laptop Go review Basic but in a good wayThe word basic gets a bad rap But there s something to be said for simple devices that deliver everything you need without a bunch of costly extras So while the new Surface Laptop Go isn t as flashy as the Surface Studio or as flexible as a Surface Pro it delivers all the essentials for a very affordable price And thanks to a refreshed CPU upgraded storage redesigned fans and a starting price of just now you get even more for your money nbsp DesignNot a lot has changed about the design and I don t care because it s basic in the best ways You still get that super minimalist Surface aesthetic in a light pound body Microsoft uses aluminum on its lid and deck but a plastic bottom helps keep its price down Inside the inch PixelSense display has slim bezels and while the Laptop Go s keycaps and touchpad are a bit smaller than what you d get on a bigger Surface it never felt cramped That said I think not adding backlighting to the keyboard was a bit too frugal on Microsoft s part It s Backlit keys should be standard regardless of price nbsp Sam Rutherford EngadgetNow I must admit that the port selection does feel a bit limited All you get is one USB A connection one USB C socket a headphone jack and a magnetic Surface Connect slot My ideal laptop has at least three USB ports And unlike its bigger siblings the Surface Laptop Go doesn t have a bonus USB A port on its power brick which would be really handy for when you want to recharge an extra accessory On the bright side the Laptop Go does support USB C power delivery so if you want you can easily switch out Microsoft s included brick for a third party charging adapter I also want to mention that while our higher end review unit does come with a fingerprint sensor built into its power button you won t get that on the base model Again I know Microsoft is trying to keep costs down but this should really be available on every config Display webcam and soundSam Rutherford EngadgetAs for the display Microsoft stuck with the same x touchscreen it used on the old model No it s not even full HD but colors are vibrant and while Microsoft claims a brightness of nits our review unit actually registered a much more impressive nits So kudos to Microsoft for exceeding its nominal specs Would I prefer a slightly higher resolution Of course But on a inch screen things still look pretty crisp From a normal viewing distance you don t really notice the lower pixel density nbsp Microsoft also says the Laptop Go speakers are percent louder than before and that feels about right You re not going to see any obvious speaker grilles because everything is hidden beneath the keyboard But audio still comes through quite clearly even if the soundstage comes off a bit shallow with less detail in the highs and lows that I d like But on a system that starts at I m satisfied nbsp Sam Rutherford EngadgetThe Laptop Go s webcam is still just p but Microsoft says there s a new sensor inside that improves contrast and color saturation And you know what it does I still maintain that a p webcam should be the minimum But unless you re livestreaming on Twitch or something which is sort of outside the system s intended use case this webcam is plenty capable nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp Performance nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp nbsp The most important improvements on the Surface Laptop Go are to its performance Microsoft has upgraded to an th gen Intel Core i CPU which isn t cutting edge but has more than enough oomph to ensure general productivity feels snappy Compared to a bigger machine like the HP Spectre x with an i H chip the Laptop Go s scores were only around percent lower on general performance tests like PCMark and Geekbench Though its lack of discrete graphics holds it back during more demanding tests or workloads LaptopPCMark Geekbench single core multi core DMark Night RaidSurface Laptop Go HP Spectre x Surface Pro Surface Laptop Studio Sadly Microsoft stuck with just GB of RAM on the base model which is a bit skimpy and is probably why the company sent out a higher spec model with GB of RAM for review And if you decide to pick one up you should probably pay for that upgrade Meanwhile the biggest change is that the Surface Laptop Go now comes with a GB SSD standard instead of the GB eMMC drive you got before So you get faster storage and more of it even on the base model Sam Rutherford EngadgetIn the real world the Surface Laptop Go has no issues quickly switching between a bunch of browser tabs multiple office apps and more which is really all I m asking for in a system like this And thanks to its integrated Intel Iris Xe graphics you can even do some light video editing and casual gaming though anything more is definitely pushing it nbsp Battery life and thermalsSam Rutherford EngadgetBattery life on the Surface Laptop Go is strong lasting hours and minutes on our video rundown test That s even longer than what you get with more expensive Surfaces including the Surface Pro and the Surface Laptop Studio However if longevity is your main concern the inch Surface Laptop still has a bit of an edge with a time of on our test nbsp LaptopBattery lifeSurface Laptop Go Surface Laptop inch Surface Pro Surface Laptop Studio I also appreciate that Microsoft made efforts to reduce the system s fan noise by as much as decibels at max speeds In normal use the Laptop Go is actually rather quiet often running completely silent if you re just browsing the web and rarely rising above a whisper unless you re doing some serious multi tasking In some respects this laptop seems like the ideal candidate for a fully fanless design That said Windows machines don t have access to the same kind of super efficient chips you get from something like an M MacBook Air But let s not forget an equivalent MacBook Air also costs more than the Surface Laptop Go nbsp Wrap upSam Rutherford EngadgetAnd in a way that s important context when comparing Microsoft s most travel friendly notebook to more expensive rivals For someone like me who uses a desktop at home the Surface Laptop Go is a great travel companion and I d much rather drag it around than the bigger and heavier Intel MacBook Pro I got assigned for work Sure it s not quite as powerful and it s got a lower res screen but it has more than enough performance for working on the go It s also a great machine for students or anyone who just wants a well designed no frills notebook that s easy to carry It doesn t have an IR webcam for facial login or a stylus like you get on more sophisticated Surfaces but that s okay Even if you pay for an upgraded model which I highly recommend the Surface Laptop Go is still super portable very affordable and even kind of stylish while also having all the basics down pat 2022-06-16 13:30:47
ニュース @日本経済新聞 電子版 イオン系のネットスーパー、自宅以外にも配送 https://t.co/HlRMY6xkzB https://twitter.com/nikkei/statuses/1537433242743480321 自宅 2022-06-16 13:53:43
ニュース @日本経済新聞 電子版 NYダウ一時3万ドル割れ、1年5カ月ぶり https://t.co/V1HYMWlTmN https://twitter.com/nikkei/statuses/1537430447851876352 ドル 2022-06-16 13:42:37
ニュース @日本経済新聞 電子版 国内コロナ感染、新たに1万5515人 累計911万172人 https://t.co/XzcxDQdjg7 https://twitter.com/nikkei/statuses/1537427835123421186 累計 2022-06-16 13:32:14
ニュース @日本経済新聞 電子版 グーグルなどが「学び直し」事業団体 講座200以上 https://t.co/f8wItHUhXl https://twitter.com/nikkei/statuses/1537426448478220288 講座 2022-06-16 13:26:43
ニュース @日本経済新聞 電子版 セントラル硝子、総資産2割圧縮 国内ガラス事業「撤退あり得る」 https://t.co/4eOEikzhjm https://twitter.com/nikkei/statuses/1537424419957915648 総資産 2022-06-16 13:18:40
ニュース @日本経済新聞 電子版 延命治療の拒否 必要な手続きと注意点 https://t.co/GV874M5eMP https://twitter.com/nikkei/statuses/1537421930428772354 延命治療 2022-06-16 13:08:46
ニュース BBC News - Home UK interest rates raised to 1.25% by Bank of England https://www.bbc.co.uk/news/business-61801362?at_medium=RSS&at_campaign=KARANGA forecasts 2022-06-16 13:17:01
北海道 北海道新聞 胆振管内62人、日高管内8人感染 新型コロナ https://www.hokkaido-np.co.jp/article/694456/ 新型コロナウイルス 2022-06-16 22:08:00
北海道 北海道新聞 上川管内86人コロナ感染 旭川の医療機関でクラスター https://www.hokkaido-np.co.jp/article/694455/ 上川管内 2022-06-16 22:07:00
北海道 北海道新聞 「おたる運がっぱ」赤い羽根募金の印に 今年もご当地ピンバッジ https://www.hokkaido-np.co.jp/article/694453/ 赤い羽根共同募金 2022-06-16 22:03: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件)