投稿時間:2023-06-20 00:17:10 RSSフィード2023-06-20 00:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita ただpythonでhtmlリクエストしたかっただけなのに躓いたので、解決までをメモ https://qiita.com/tch_ukey/items/30677cbc44293c08b40d importreque 2023-06-19 23:24:34
Linux Ubuntuタグが付けられた新着投稿 - Qiita UbuntuにFlaskとuwsgiとNginxを一気貫通する https://qiita.com/akeyi2018/items/8644a40d3d83739b85e7 flask 2023-06-19 23:48:25
AWS AWSタグが付けられた新着投稿 - Qiita EC2 Instance Connect Endpointを作成してEC2インスタンスにSSH接続してみた https://qiita.com/masaki_naito/items/8fea46668cfd482976c8 ecinstanceconnectendpoint 2023-06-19 23:35:37
golang Goタグが付けられた新着投稿 - Qiita ent で 簡易的なテストを書く https://qiita.com/hikaru_nakayama/items/531769dc3e15fec55c0a enttest 2023-06-19 23:57:52
Ruby Railsタグが付けられた新着投稿 - Qiita Rails6における非同期通信「コメント編」 https://qiita.com/PB-193/items/178d0cf388f66be1e072 jquery 2023-06-19 23:10:38
技術ブログ Developers.IO [初心者向けシリーズ] Dockerイメージを作成しAmazon ECRにプッシュする方法を確認してみた https://dev.classmethod.jp/articles/beginner-series-to-check-how-t-create-docker-image-and-push-to-amazon-ecr/ amazon 2023-06-19 14:37:29
海外TECH DEV Community Optimizing GitHub Actions Performance: Enhance Workflows with Caching https://dev.to/ken_mwaura1/optimizing-github-actions-performance-enhance-workflows-with-caching-4hla Optimizing GitHub Actions Performance Enhance Workflows with CachingThis article continues my series on GitHub Actions In this article I will show you how to improve the execution time of your GitHub Actions workflow by using caching Feel free to read my previous articles on GitHub Actions Running GitHub workflows locallyAutomate Docker Image builds and push to Docker HubAutomate Docker Image Builds and Push to GitHub Registry using GitHub ActionsBeginners Guide to GitHub Actions Django amp Docker IntroductionGitHub Actions is a powerful tool for CI CD It is free for public repositories and has a generous free tier for private repositories However the free tier has some limitations One of them is the execution time limit For example the free tier for private repositories has a limit of minutes per month This is more than enough for most projects but if you have a large project with a lot of tests you can easily hit this limit In this article I will show you how to improve the execution time of your GitHub Actions workflow by using caching Caching in GitHub Actions allows you to store and reuse certain files or dependencies between workflow runs By caching these artifacts you can avoid redundant computations and reduce the time required for tasks such as installing dependencies building packages or compiling code Benefits of Caching in GitHub ActionsHere are some key benefits of using caching in GitHub Actions Faster Workflow Execution Caching allows you to avoid repeating time consuming tasks such as downloading and installing dependencies By storing these files in the cache subsequent workflow runs can retrieve them quickly reducing overall execution time Cost and Resource Efficiency With caching you can reduce resource consumption and associated costs Instead of performing repetitive operations you can reuse cached artifacts optimizing the utilization of available computing resources Improved Developer Productivity Faster feedback loops enable developers to iterate and test their code more frequently By reducing the time spent waiting for workflows to complete developers can focus on writing code and delivering features faster Best Practices for Caching in GitHub ActionsTo leverage caching effectively in GitHub Actions consider the following best practices Identify Cacheable Artifacts Determine which files or dependencies can be cached For example you can cache package managers dependencies like node modules or pip packages Identifying the right artifacts to cache is crucial to achieve maximum performance gains Define Cache Keys Cache keys determine when the cache should be used or invalidated GitHub Actions allows you to define custom cache keys based on specific criteria such as the content of a file or the version of a dependency Choosing appropriate cache keys ensures that the cache is invalidated only when necessary preventing outdated artifacts from being reused Use Cache Actions GitHub Actions provides cache actions that simplify caching implementation The actions cache JavaScript library is a popular choice for managing caching in workflows It offers flexible options for storing and retrieving cache artifacts based on keys scopes and paths Balance Cache Size and Freshness While larger caches may provide more performance benefits it s essential to strike a balance between cache size and freshness Storing too much in the cache can lead to increased storage costs and longer cache retrieval times Consider periodically purging and rebuilding the cache to avoid accumulating unnecessary artifacts Leverage Workflow Matrix If your workflows involve multiple platforms versions or configurations consider utilizing the workflow matrix feature By defining different matrix combinations you can cache artifacts specific to each configuration further improving execution times Enough Talk Show Me the Code Workflow without CachingWe ll go through two examples of the same workflow The first one will not use caching and the second one will use caching We ll compare the execution times of both workflows to see the difference We ll use an existing FastApi project that I created in a previous article You can find the project KenMwaura Fast Api example Simple asynchronous API implemented with Fast Api framework utilizing Postgres as a Database and SqlAlchemy as ORM GitHub Actions as CI CD Pipeline FastAPI Example App This repository contains code for asynchronous example api using the Fast Api framework Uvicorn server and Postgres Database to perform crud operations on notes Accompanying ArticleRead the full tutorial hereInstallation method Run application locally Clone this Repogit clone Cd into the Fast Api foldercd Fast Api exampleCreate a virtual environmentpython m venv venvActivate virtualenvsource venv bin activateFor zsh userssource venv bin activate zshFor bash userssource venv bin activate bashFor fish userssource venv bin activate fishCd into the src foldercd srcInstall the required packagespython m pip install r requirements txtStart the apppython main pyb Start the app using Uvicornuvicorn app main app reload workers host port Ensure you have a Postgres Database running locallyAdditionally create a fast api dev database with user fast api having required privilegesORChange the DATABASE URL variable in the env file inside then app folder to… View on GitHub The project utilizes Docker and Docker Compose to run the application The workflow tests the application and builds a Docker image and pushes it to Docker Hub The workflow is triggered on every push to the main branch Here is the workflow file name Docker Compose Actions Workflowon push branches main pull request branches main env Use docker io for Docker Hub if empty REGISTRY docker io github repository as lt account gt lt repo gt IMAGE NAME github repository jobs push to registry name Push Docker image to Docker Hub runs on ubuntu latest steps name Check out the repo uses actions checkout v name Set up Docker Buildx uses docker setup buildx action v name Log in to Docker Hub if github event name pull request uses docker login action v with username secrets DOCKER USERNAME password secrets DOCKER PASSWORD name Extract metadata tags labels for Docker id meta uses docker metadata action dbbdffdcbea with images env REGISTRY env IMAGE NAME name Build and push Docker image if github event name pull request uses docker build push action v with context defaultContext src push true tags steps meta outputs tags labels steps meta outputs labels Lets go through the workflow step by step Name The name of the workflow This is optional On The event that triggers the workflow In this case the workflow is triggered on every push to the main branch Env Environment variables used in the workflow In this case we have two environment variables REGISTRY and IMAGE NAME The REGISTRY variable is used to specify the Docker registry to push the image to The IMAGE NAME variable is used to specify the name of the image Jobs The workflow consists of one job called push to registry The job is run on the latest version of Ubuntu Inside the push to registry we specify the steps to be executed The first step is to check out the repository The second step is to set up Docker Buildx The third step is to log in to Docker Hub The fourth step is to extract metadata for Docker The fifth step is to build and push the Docker image a Check out the repo This step checks out the repository This is a required step for all workflows b Set up Docker Buildx This step sets up Docker Buildx Docker Buildx is a CLI plugin that extends the Docker command with the full support of the features provided by Moby BuildKit builder toolkit It provides the same user experience as docker build with many new features like creating scoped builder instances and building against multiple nodes concurrently You can read more about Docker Buildx here c Log in to Docker Hub This step logs in to Docker Hub The step is only executed if the event that triggered the workflow is not a pull request The step uses the DOCKER USERNAME and DOCKER PASSWORD secrets to log in to Docker Hub The secrets are stored in the repository settings You can read more about secrets here In this instance ensure you have the DOCKER USERNAME and DOCKER PASSWORD secrets set in your repository settings d Extract metadata tags labels for Docker This step extracts metadata for Docker The step uses the docker metadata action action to extract the metadata The action is used to extract metadata from Dockerfiles and docker compose files The action outputs two variables tags and labels The tags variable contains the tags for the Docker image The labels variable contains the labels for the Docker image You can read more about the docker metadata action action here e Build and push Docker image This step builds and pushes the Docker image The step uses the docker build push action action to build and push the Docker image The action is used to build and push Docker images The action takes in the following parameters context The build context This is the path to the directory containing the Dockerfile In this case the build context is src push Whether to push or not In this case we set it to true to push the image tags The tags for the Docker image In this case we use the tags variable from the previous step labels The labels for the Docker image In this case we use the labels variable from the previous step Now lets see the execution time on the first run As the image shows the workflow took minutes seconds to complete Now lets implement caching and see if we can improve the execution time Workflow with CachingUsing caching in GitHub Actions is pretty straightforward You just need to add the actions cache action to your workflow The action takes in the following parameters path The path to the directory to be cached In this case we want to cache the src directory key The key to use for restoring and saving the cache restore keys An ordered list of keys to use for restoring the cache if no cache hit occurred for key cache version The version of the cache This is optional run The steps to run if the cache is not restored This is optional Now lets add the actions cache action to our workflow name Docker Compose Actions Workflowon push branches main pull request branches main env Use docker io for Docker Hub if empty REGISTRY docker io github repository as lt account gt lt repo gt IMAGE NAME github repository jobs push to registry name Push Docker image to Docker Hub runs on ubuntu latest steps name Check out the repo uses actions checkout v name Set up Docker Buildx uses docker setup buildx action v name Log in to Docker Hub if github event name pull request uses docker login action v with username secrets DOCKER USERNAME password secrets DOCKER PASSWORD name Extract metadata tags labels for Docker id meta uses docker metadata action v with images env REGISTRY env IMAGE NAME name Cache Docker layers id cache uses actions cache v with path tmp buildx cache key runner os buildx github sha restore keys runner os buildx name Build and push Docker image if github event name pull request uses docker build push action v with context defaultContext src push true tags steps meta outputs tags labels steps meta outputs labels cache from type local src tmp buildx cache cache to type local dest tmp buildx cacheNote the following changes Cache Docker step is added before the Build and push Docker image step cache from and cache to parameters are added to the Build and push Docker image step Lets breakdown the changes in detail Cache Docker layers This step caches the Docker layers The step uses the actions cache action to cache the Docker layers The action takes in the following parameters path The path to the directory to be cached In this case we want to cache the src directory key The key to use for restoring and saving the cache Here we use the runner os and github sha variables to create a unique key for the cache restore keys An ordered list of keys to use for restoring the cache if no cache hit occurred for key Here we use the runner os variable to create a unique key for the cache Build and push Docker image This step builds and pushes the Docker image The step uses the docker build push action action to build and push the Docker image Here we added the cache from and cache to parameters to the action The cache from parameter specifies the cache to use for the build The cache to parameter specifies the cache to use for the push In this case we use the type local cache to cache the Docker layers The src tmp buildx cache specifies the source of the cache The dest tmp buildx cache specifies the destination of the cache Now lets see the execution time on the first run As the image shows the workflow executed in seconds The percentage improvement is approximately now this isn t by any means a conclusive test but it does show the potential of caching in GitHub Actions Also note that the workflow execution will vary on subsequent runs as the cache will be used Below is a screenshot of the cache step on GitHub actions ConclusionIn this article we saw how to use caching in GitHub Actions We saw how to implement caching in a workflow and saw the performance improvement We also saw how to use the actions cache action to cache the Docker layers ReferencesLearn More about CachesGithub Actions Cache ActionLearn More about Docker BuildxGitHub Metadata ActionDocker Build Push ActionDocker Setup Buildx ActionFeel free to reach out to me on Twitter for any questions or feedback You can also leave a comment below 2023-06-19 14:52:02
Apple AppleInsider - Frontpage News Daily deals: $949 M2 MacBook Air, $100 off iPad Pro, up to 43% off Microsoft Surface laptops & tablets https://appleinsider.com/articles/23/06/19/daily-deals-949-m2-macbook-air-100-off-ipad-pro-up-to-43-off-microsoft-surface-laptops-tablets?utm_medium=rss Daily deals M MacBook Air off iPad Pro up to off Microsoft Surface laptops amp tabletsToday s hottest deals include off an M Max MacBook Pro with AppleCare off Skullcandy Riff wireless headphones off a mophie wireless charging dock and up to off Theragun products Save on an M MacBook AirThe AppleInsider team scours the web for top notch bargains at ecommerce stores to showcase a list of unbeatable deals on popular tech gadgets including discounts on Apple products TVs accessories and other items We share our top finds daily to help you save money Read more 2023-06-19 14:26:07
海外TECH Engadget The best E Ink tablets for 2023 https://www.engadget.com/best-e-ink-tablet-130037939.html?src=rss The best E Ink tablets for I ve been a notebook person for most of my life I ve had dozens of notebooks over the years that served as repositories for to do lists story ideas messages jotted down during meetings and everything in between But at a certain point in my adult life I turned away from physical notebooks because it became easier to save all of those things digitally in various apps that were always available to me on my phone I sacrificed tactile satisfaction for digital convenience and a small part of me mourns for all of the half filled notebooks I left in my wake For some like me an E Ink tablet may be the solution to those dueling impulses They can combine the feeling of writing in a regular notebook with many of the conveniences of digitized documents E Ink tablets allow you to take all of your notes with you on one device while also letting you scribble with a stylus just like you would with pen and paper Unlike regular tablets and styli though E Ink tablets are nowhere near ubiquitous ーbut there are just enough players in the game to make deciding which one to buy more complicated than you might think We tested out a bunch of the most popular E Ink tablets available now to see how well they work how convenient they really are and which are the best available today Are E Ink tablets worth it An E Ink tablet will be a worthwhile purchase to a very select group of people If you prefer the look and feel of an E Ink display to LCD panels found on traditional tablets it makes a lot of sense They re also good options for those who want a more paper like writing experience although you can get that on a regular tablet with the right screen protector or a more distraction free device overall The final note is key here Most E Ink tablets don t run on the same operating systems as regular tablets so you re automatically going to be limited in what you can do And even with those that do allow you to download traditional apps like Chrome Instagram and Facebook E Ink tablets are not designed to give you the best casual browsing experience This is mostly due to the nature of E Ink displays which have noticeable refreshes a lack of color and lower quality than the panels you ll find on even the cheapest iPad Arguably the biggest reason why you wouldn t want to go with an iPad all models of which support stylus input a plethora of reading apps etc is because it s much easier to get distracted by email social media and other Internet related temptations An e reader is also worth considering if this is the case for you but just know that most standard e readers do not accept stylus input If you like to make notes in the margins of books underline and mark up PDFs and the like an e reader won t cut it What to look for in an E Ink tabletI discovered four main things that can really make or break your experience with an E Ink tablet during my testing first is the writing experience How good it is will depend a lot on the display s refresh rate does it refresh after every time you put pen to “paper so to speak and the stylus latency Most had little to no latency but there were some that were worse than others Finally you should double check before buying that your preferred E Ink tablet comes with a stylus Believe it or not many of them require you to purchase the pen separately The second thing to consider is the reading experience How much will you be reading books documents and other things on this tablet While you can find E Ink tablets in all different sizes most of them tend to be larger than your standard e reader because it makes writing much easier Having a larger display isn t a bad thing but it might make holding it for long periods slightly more uncomfortable Most e readers are roughly the size of a paperback book giving you a similar feeling to analog reading The supported file types will also make a big difference It s hard to make a blanket statement here because this varies so much among E Ink tablets The TL DR is that you ll have a much better reading experience if you go with one made by a company that already has a history in e book sales i e Amazon or Kobo All of the titles you bought via the Kindle or Kobo store should automatically be available to you on your Kindle or Kobo E Ink tablet And with Kindle titles specifically since they are protected by DRM it s not necessarily the best idea to try to bring those titles over to a third party device Unless the tablet supports reading apps like Amazon s Kindle or the Kobo app you ll be limited to supported file types like ePUB PDF MOBI JPEG PNG and others Third most E Ink tablets have some search features but they can vary widely between models You ll want to consider how important it is to you to be able to search through all your handwritten notes and markups I noticed that Amazon s and Kobo s E Ink tablets made it easy to refer back to notes made in books and files because they automatically save on which pages you took notes made highlights and more Searching is less standardized on E Ink tablets that have different supported file types but their features can be quite powerful in their own right For example a few devices I tested supported text search in handwritten notes along with handwriting recognition the latter of which allows you to translate your scribbles into typed text The final factor to consider is sharing and connectivity Yes we established that E Ink tablets can be great distraction free devices but most manufacturers understand that your notes and doodles aren t created in a vacuum You ll likely want to access them elsewhere and that requires some form of connectivity All of the E Ink tablets I tried were WiFi devices and some supported cloud syncing companion mobile apps and the ability to export notes via email so you can access them elsewhere None of them however integrate directly with a digital note taking system like Evernote or OneNote so these devices will always be somewhat supplementary if you use apps like that too Ultimately you should think about what you will want to do with the documents you ll interact with on your E Ink tablet after the tablet portion is done Best for most reMarkable The latest reMarkable tablet isn t topping our list because it s the most full featured or even most interesting E Ink tablet we tested Rather it provides the best mix of features people will find useful in a device like this We ll get into them all but first it s worth mentioning build quality The reMarkable weighs less than one pound and is one of the sleekest E Ink tablets we tried It has a inch monochrome digital paper display that s surrounded by beige colored bezels with the chunkiest portion at the bottom edge where you d naturally grip it There s a slim silver bezel on the left side which attaches to accessories like the folio case and the new Type Folio keyboard Hats off to reMarkable for making an E Ink tablet that feels right at home with all of your other fancy gadgets Let s start with the writing and reading experiences on the reMarkable both of which are great From the get go scribbling doodling and writing was a breeze We tested out the Marker Plus which has a built in eraser but both it and the standard Marker are tilt and pressure sensitive pens and require no batteries or charging I observed basically no lag between my pressing down onto the reMarkable s screen and lines showing up The latency was so low that it felt the closest to actual pen and paper But I will say that this is not unique among our top picks in this guide almost all of the E Ink tablets we tested got this very crucial feature right When it comes to reading the reMarkable supports PDFs and ePUBs and you can add files to the device by logging into your reMarkable account on desktop or via the companion mobile app on your phone You can also pair your Google Drive Microsoft OneDrive or Dropbox account with your reMarkable account and access files that way as well That should be good enough for anyone who say reads a lot of academic papers or reviews many documents for work It ll be harder for people who purchase their ebooks from online marketplaces like the Kindle or Kobo stores but there are other options for those Another fun way to get documents onto the reMarkable is via the Read with reMarkable extension for Google Chrome After installing it and pairing your reMarkable account you ll be able to send articles you find online directly to your reMarkable so you can check them out later You can even customize these files to be sent as text only which will let you change their format directly on your reMarkable or as a PDF file Regardless of which you choose you ll be able to mark up these articles as you would any other file on the E Ink tablet I used this extension a lot and I did enjoy reading longform articles on the reMarkable more than on my iPhone Being able to underline highlight and otherwise mark up those stories was more of a bonus than a necessity for me but for others who glean sources from online materials will be better off for it Overall it s pretty easy to get files onto the reMarkable and it is possible to access themelsewhere when you may not be able to whip out the E Ink tablet Those with a reMarkable Connect subscription will have the best experience and it s a nice perk that you get a one year membership when you buy one The per month subscription provides the ability to edit existing notes and take new ones from anywhere using the desktop and mobile apps plus unlimited cloud storage and syncing On that last front if you don t pay for Connect only “notes and documents synced online in the last days will be available in reMarkable s companion apps I suspect days worth of document syncing will be enough for some but not power users Putting the ability to take notes anywhere behind a paywall is a bit of a bummer no matter what and makes it much harder for anyone to use the reMarkable ecosystem as their main note taking space That said I kept most of my testing to the reMarkable itself and was impressed by its ability to be a digital notebook without a steep learning curve You can create different notebooks and “quick sheets to organize your handwritten notes and folders to make sense of imported files You ll find eight different brush types with which to mark up documents and take notes along with customizable line thicknesses and “colors which just show up as shades on the tablet itself You can even type wherever you want in a doc and the reMarkable can translate handwritten notes into machine readable text with surprising accuracy It was no shock that the reMarkable ended up having the best mix of features along with a relatively low learning curve The company was one of the first on the scene with a truly viable E Ink tablet back in and they ve been refining the experience ever since But that comes at a cost the reMarkable isn t the most expensive E Ink tablet we tested but it s not cheap either The tablet alone will set you back and then you ll have to shell out either or for the Marker or Marker Plus respectively In all you re looking at for the best version of the reMarkable you can get and that assumes you skip the new Type Folio Keyboard You could get a th gen iPad and the st gen Apple Pencil for the same price and you d have a more flexible duo purely based on the capabilities of iOS But you re probably not considering an iPad for a specific reason whether that s your love for E Ink or the feeling of pen to paper writing or you simply want a more distraction free experience If you re looking for an E ink tablet that will not take ages to get used to offers a stellar writing experience and makes it relatively simple to access notes elsewhere the reMarkable is your best bet Best e reader E Ink tablet Amazon Kindle ScribeYou really have two options in this space the Amazon Kindle Scribe and the Kobo Elipsa E The Scribe edged out the Elipsa E purely because of its low latency pen and screen combination The Elipsa has its merits which we ll get into in a bit but it just couldn t compete with the Scribe when it came to a seamless and smooth handwriting experience We already gave the Kindle Scribe the full review treatment and in general I enjoyed it while testing it out for this guide too As mentioned there s little to no latency when writing on the Scribe with its companion pen Thanks to the latest software update you also have more brush types to choose from now including fountain pen marker and pencil which add to the charm Like other E Ink tablets the Scribe makes it easy to create multiple notebooks and you can add pages to them and change up their templates if you wish As an e reader the Scribe shines not only thanks to its inch display with auto adjusting front lights but also because you have Amazon s entire ebook store at your fingertips If you get most of your reading material from Amazon or subscribe to Kindle Unlimited you ll be able to jump right into all of your titles instantly on the Scribe In addition the Scribe can connect to Audible via Bluetooth It s also easy to get ebooks from your local library and read them on a Kindle This will be crucial not only for voracious readers but especially for students who buy or rent digital textbooks and those who consume books regularly for research purposes I thought about students a lot when using the Scribe I started college in two years after the first Kindle was released and one year before the first iPad came out Getting textbooks digitally really wasn t an option for me but I can understand the appeal a note taking device like the Kindle Scribe would have for students It s arguably even better than a standard Kindle because its bigger screen size which will make it less tiring to stare at for long periods of time Adding the ability to take handwritten notes while you re studying is icing on the cake However Amazon s execution of book notes is not my favorite You actually cannot take notes in the margins of Kindle ebooks Instead you press and hold the pen s tip on the screen to highlight text or add a note to a particular word or phrase If you do the latter a window pops up on the bottom half of the screen where you can either take a handwritten note or type a text note using the Scribe s mildly frustrating and sluggish on screen keyboard Amazon recently rectified this a bit with a software update that allows for direct on page writing in certain Kindle books The Kindle Store now has a section that showcases quot Write on Books quot which is currently mostly made up of journals and game books that feature puzzles like crosswords and sudoku This is certainly a step in the right direction but it means you still won t be able to mark up your favorite fiction and non fiction books until they support the new feature This is where I give a nod to the Kobo Elipsa E where you can write notes in the margins underline circle and otherwise mark up your reading material It s a more natural and fun experience since it mimics what you d do if you were reading a physical book It s a shame that the latency on the Elipsa was just a hair more noticeable than that of the Scribe If it weren t for that it might have beaten Amazon s device here What that extra bit of latency translates to in practice is handwriting that can come out just a bit messier and that increases precipitously the faster you write But that also means that you ll notice this the most when taking notes longhand on the Elipsa if you re primarily using an E Ink tablet to mark up documents it won t affect you as much Despite that I did like the way Kobo executed notebooks on the Elipsa You can have a standard notebook where you can write and scribble away or an “advanced notebook that supports handwriting to text conversion and inserting things like diagrams and formulas Text conversion is actually pretty accurate too even when dealing with some of my ugliest handwriting Kobo also has a pretty sizable ebook marketplace so it s certainly a decent option if you want to stay clear of the Amazon ecosystem But Amazon has the upper hand when it comes to price The Kobo Elipsa E pack that includes its stylus is while the GB Kindle Scribe with the premium pen which includes dedicated eraser and shortcut buttons comes in at Even if you max out the Scribe with GB of storage you d only spend more than you would on the Kobo Elipsa That combined with the Scribe s strong overall performance and the ubiquity of Amazon s ebook offerings will make it the better choice for most readers Best as a notebook Supernote XI spent a while testing all of these E Ink tablets and the Supernote X is the one I was consistently most excited to use As a notebook nerd I find this thing so cool Available in inch what I tested and inch sizes the Supernote X has a “FeelWrite screen protector that has a different feel than a standard E Ink screen When writing on it with Heart of Metal Pen which is weighty and looks like a fountain pen you get a gel pen like feel rather than the subtly scratchy vibe that other E Ink tablets have In fact the Supernote X has one of the best writing experiences out of any tablet I tested The Supernote X supports a range of file formats including PDF ePUB Word doc PNG and JPG which really opens up the content you can put onto the thing I wanted to see if I could treat it almost like a digital bullet journal and that wasn t hard to do There are built in page templates but I was able to download daily weekly and monthly planner templates online resize them and move them onto the Supernote X using Android File Transfer The device has a dedicated “MyStyle folder where you can save files you want to use as templates The most difficult part was making sure I had the dimensions right while resizing the documents Once saved in the right folder I could make an entire notebook out of the templates I had gotten from the internet for free Supernote does have its own “app store but there s not much in there and its Play Store offerings are limited to only the Kindle app This device doesn t have a backlight so it won t be easy to see in dark environments But you can download Amazon s ebook app and read just like you would on a standard tablet no you can t mark up books here either Honestly the last thing I wanted to do with the Supernote X was read though The device really shines as an E Ink notebook and the company clearly put a lot of thought into “building a better mousetrap so to speak You can translate handwritten words into typed text but you don t have to do that in order for the software to recognize your handwriting There s a keywords feature that lets you basically bookmark important phrases for quick access later All you need to do is lasso the word press the keyword button and the tablet s software will translate your writing into typed text Then you can add it as a keyword and quickly jump back to it from the left side tablet of contents menu Similarly you can bookmark titles and add stars to pages that are important all of which help you jump between important bits That said the Supernote X sometimes felt a little inconsistent The writing experience was top notch but there were other things that felt a little less polished For example you can swipe down on the right bezel to bring up a menu that lets you quickly navigate between favorited notes and recent documents that s quite thoughtful But then the Files page just has a couple of starkly named folders like Export Screenshot and Inbox that I didn t touch once and the pen sidebar has more options than most people will know what to do with and none of them have text labels These are small nit picks but they go to show that the Supernote X might not be the best device for tech novices There is a learning curve here but notebook nerds like myself will be thrilled with all that the Supernote X has to offer Unsurprisingly all those advanced features come at a steep price the A sized tablet with a folio and pen will set you back at least making it the most expensive set on our list Honorable mention Boox Note Air PlusIf you removed some of the notebook specific features from the Supernote X and added in a more complete version of Android you d get the Boox Note Air Plus Boox makes a number of interesting E Ink devices and the Note Air Plus is the one that best compares to the others on our list thanks to its inch display This is an Android tablet with an E Ink screen so that means you can actually download Android apps like Kindle Kobo and others There s even a web browser and yes you can watch videos on this thing too Of course just because you can do all of that doesn t mean you should E Ink screens are truly best for reading and writing so I didn t spend much time binge watching YouTube on the Note Air Plus but I was happy that I had the freedom to do so Really the utility of Android comes in with the app store and I expect that most people will use it to download all of their favorite reading and writing apps Much like a standard tablet the Note Air Plus will be a great option for anyone that gets their reading material from a bunch of different places ーand since you can manually transfer documents from your computer to the device too it s far and away the most versatile option on our list I experienced little to no latency when writing on the Note Air Plus and I was happy with the number of brush options it has Like the Supernote X it comes with a bunch of page templates you can use or you can bring in your own PDFs and other documents to use as templates There s an “AI recognition feature that translates a whole page s handwriting into typed text and it s actually pretty accurate Though it did consistently confuse my “ amp for a capital A I also appreciated that you can add other kinds of material to your notes including web pages and voice recordings and share notes as PDFs or PNGs via email Google Drive and other services Features like those ensure that with this partially analog device you don t miss out on some of the conveniences that a true digital notebook system would have Instead of going into all of the features the Note Air Plus offers I think it s most useful to talk about the value of this device A bundle with the tablet a standard pen and a folio case comes in at putting it on the higher end of the price spectrum among the devices we tested But considering it s a full Android tablet that doesn t seem absurd Those who want to avoid distractions most of the time while still having access to email and a web browser might gravitate towards a device like this Also most of Boox s devices operate in the same way so you do have more affordable options if you like this blueprint For example the Boox Nova Air is a inch version of the Note Air Plus with slightly different RAM and storage specs to match and its bundle comes in at This article originally appeared on Engadget at 2023-06-19 14:55:15
海外TECH Engadget Apple Watch Series 8 is back on sale for $329 https://www.engadget.com/apple-watch-series-8-is-back-on-sale-for-329-141547847.html?src=rss Apple Watch Series is back on sale for This is a good moment to get an Apple smartwatch if you re more concerned about price than anything else Amazon is once more selling the Apple Watch Series with a mm case and GPS for or a steep discount that s very nearly a record low This applies to all but the Product Red color and you ll also see bargains for cellular and mm models The Apple Watch Series may be an iterative update but it remains our favorite overall smartwatch You can expect brisk performance an exceptional display solid fitness tracking and robust health features that include ECGs blood oxygen monitoring crash detection and a temperature sensor for sleep and reproductive cycle tracking More importantly there s a strong ecosystem that includes a wide range of third party apps as well as tight integration with other Apple products You can seamlessly switch AirPods between your iPhone and watch or unlock your Mac The catch aside from the iPhone requirement is simply that Series is several months old We won t be surprised if there s an Apple Watch Series in September The current generation is much easier to justify at though and it will easily handle watchOS when the software upgrade arrives later this year And right now this is arguably the best value in the lineup While the second generation Apple Watch SE is priced lower at the gap is small enough that it may be worth the extra money for the s always on display and more advanced health sensors Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-06-19 14:15:47
海外科学 NYT > Science Donald Triplett, ‘Case 1’ in the Study of Autism, Dies at 89 https://www.nytimes.com/2023/06/18/obituaries/donald-triplett-dead.html happy 2023-06-19 14:41:06
金融 金融庁ホームページ つみたてNISA対象商品届出一覧を更新しました。 https://www.fsa.go.jp/policy/nisa2/about/tsumitate/target/index.html 対象商品 2023-06-19 15:00:00
ニュース BBC News - Home Covid party 'Jingle and Mingle' invite sent to Tory aides https://www.bbc.co.uk/news/uk-politics-65952298?at_medium=RSS&at_campaign=KARANGA covid 2023-06-19 14:01:16
ニュース BBC News - Home Titanic tourist submersible goes missing sparking search https://www.bbc.co.uk/news/world-us-canada-65953872?at_medium=RSS&at_campaign=KARANGA famous 2023-06-19 14:43:49
ニュース BBC News - Home US and China pledge to stabilise tense relationship after talks https://www.bbc.co.uk/news/world-asia-china-65947192?at_medium=RSS&at_campaign=KARANGA beijing 2023-06-19 14:17:17
ニュース BBC News - Home Man pleads guilty over 'abhorrent' Hillsborough shirt at FA Cup final https://www.bbc.co.uk/news/uk-england-65951045?at_medium=RSS&at_campaign=KARANGA enough 2023-06-19 14:55:34
ニュース BBC News - Home Hounslow: Murder investigation after family found dead in home https://www.bbc.co.uk/news/uk-england-london-65949353?at_medium=RSS&at_campaign=KARANGA homicide 2023-06-19 14:54:44
ニュース BBC News - Home Bournemouth: Cherries sack Gary O'Neil and appoint Andoni Iraola as new head coach on two-year deal https://www.bbc.co.uk/sport/football/65954183?at_medium=RSS&at_campaign=KARANGA Bournemouth Cherries sack Gary O x Neil and appoint Andoni Iraola as new head coach on two year dealBournemouth have announced Spaniard Andoni Iraola as their new head coach replacing Gary O Neil who was sacked earlier on Monday 2023-06-19 14:36:04
ニュース BBC News - Home Ashes: Pat Cummins traps England captain Ben Stokes lbw for 43 https://www.bbc.co.uk/sport/av/cricket/65951422?at_medium=RSS&at_campaign=KARANGA Ashes Pat Cummins traps England captain Ben Stokes lbw for Australia captain Pat Cummins removes England counterpart Ben Stokes for as the hosts falter on day four of the first Ashes Test between England and Australia 2023-06-19 14:18:29

コメント

このブログの人気の投稿

投稿時間: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件)