Funny this popped up...I've been looking at replacing our slow and flaky Selenium test suite recently.
From what I can tell here are the benefits:
* With Playwright you don't need to put manual waits in your program. It's async.
* You also don't need to keep updating the Selenium.Webdriver to stay in sync with your browser version. This is a 15-20 minute time sink each time it happens.
* Can run in headless mode which will run the test suite much faster than selenium.
* Also appears to have better command line options to be run from a CI/CD environment
Selenium supports things like waiting till an element is clickable?
The webdriver issue is definitely annoying though. Not sure if there's a better way, but we're using a binary regex on the electron app in question to find a matching version and download it on the fly as part of test setup.
Where is the data for this stored? I was inspecting and didn't see anything in Local Storage, Session Storage, nothing on the network tab. Hit refresh thought everything would be wiped, but all my data was still there!
And if you put the URL into a URL shortener, you can (ab)use it as cloud storage for your spreadsheet.
I once did some checks and found at least one shortener could store a URL string of at least 65KB [1]. That was in 2009. Not sure where those shortener limits are all at today - I suspect the industry dynamics changed when Twitter introduced its built-in shortener.
The limits are definitely shorter now. I also checked when I created URL Pages [0], which hosts entire web pages in the URL.
However there is a link shortener that is quietly hosted by GitHub called https://git.io that doesn't seem to have a length limit as far as I've discovered. [1]
Think it gets encoded into the URL as it changes when you enter something. Also you are able to send that link to someone while visiting just https://tinysheet.com/ again gives a blank.
I'd like to point out that GP's comment went entirely over my head as I was scrolling past quickly, and your comment is the only reason I came back, took a closer look, and chuckled heartily.
I had the same issue with my MacBook Air with the exact specs, though I never dropped mine. Just shut it off one night after watching Thrones for a few hours and it never turned back. Pleaded with Apple for quite a while to see if they would replace the logic board due to defect, but they did not. Mine was purchased in May 2013 and dead Nov 2014. Finally broke down a couple of years ago and bought a low end I3, with 4gb of ram logic board and it's working again. Guess I would have tried this as well had i known it was an option at the time :)
Unfortunately I sent the whole thing back to the repair shop and I'm guessing they probably sold it. In hindsight I should have taken it out prior to sending it to them...
Were a team of 40 and we are using teams. It does work pretty well for most things, and I like all of the integration options. We had been using Mattermost prior to switching and a few of us still use that instead. The biggest issue I have with teams is the markdown support is not good. It tries to format as you type instead of letting you type markdown and have a type/preview mode. I've raised this on their forum and it doesn't appear to be anything they want to fix either. If they fixed that issue I wouldn't have any complaints.
I've been managing a small instance since version 5. There have been a few hiccups here and there, but mostly due on my part to not reading the release/upgrade notes carefully enough. Since version 8/9 it has been absolutely pain free. Run apt-get update then apt-get upgrade wait a bit and enjoy the new release!
SublimeMerge is also a wonderful tool. Been using that since it came out and has helped tremendously with difficult merges. It's lightning quick as well.
Similar to magit - Sublime Text also has SublimeGit, not as fast as SublimeMerge.
Visual Studio Code built in git functionality is also nice.
I second this as a owner of a bricked 2013 MBA with a dead logic board. Bought a Lenovo T430S for $450 a few years back and couldn't be happier with it. Never buying Macbook again.
That Louis Rossman guy does component level repair and you might be able to squeeze some coin out of repairing and selling it. I’m considering just gifting an 2010 water-damaged MBP 13 as support for his great content.
Lenovo’s are sturdy as heck too. That, standard upgradable parts and the industry best keyboard make them the most practical for both coding and corporate work. She may not be the prettiest date, but she has a great personality and is amazing at her vocation.
From what I can tell here are the benefits:
* With Playwright you don't need to put manual waits in your program. It's async.
* You also don't need to keep updating the Selenium.Webdriver to stay in sync with your browser version. This is a 15-20 minute time sink each time it happens.
* Can run in headless mode which will run the test suite much faster than selenium.
* Also appears to have better command line options to be run from a CI/CD environment