These instructions also work on Microsoft Edge (which is based on Chrome).
For people who can't code good and want to learn to do other stuff good too.
You can use your browser's built-in Developer Tools (DevTools) to see how well your webpage performs.
In Chrome or Edge:
- Open a Private or Incognito browser window.
Function GetFirstEmptyCell(Direction As String, StartRowIndex As Integer, StartColIndex As Integer) As Range | |
Dim CurrentRowIndex As Integer, CurrentColIndex As Integer, CurrentCell As Range | |
CurrentRowIndex = StartRowIndex | |
CurrentColIndex = StartColIndex | |
Do While True | |
Set CurrentCell = Cells(CurrentRowIndex, CurrentColIndex) | |
If IsEmpty(CurrentCell.Value) Then |
I'm a contractor in Minnesota with a single-person LLC. I was gobsmacked by the size of my taxes. Someone recommended filing as an "S-Corp" instead of filing as an individual, in order to not pay self-employment tax.
How, though? This is discussed in lots of blog/forum/Reddit posts, and the answer everyone gives is, "Hire a CPA."
But I like knowing how things work. This is my attempt at crunching the numbers. Note: I have no background in accounting/finance.
...and obviously we're building a workaround. But I'm absolutely flabbergasted that a standard <input type="date">
HTML field, in a standard browser, from a company that bases its reputation good design, could be so dreadful.
I'm the developer for a startup that sells a genetic test to recommend medications for high blood pressure. For medical reasons we need to know our customers' birth date. Most of our customers are in their 60s or older. We've found that many of them use iPads or iPhones. And they're the ones who complain to our customer support that our site is unusable.
Yes, it's cool and all that it's "blazing-fast". And for brand-new projects with small teams, it's probably totally sufficient. But IMO it's one of the biggest roadblocks to Deno being used for Serious Business.
Having robust linting/styles rules is crucial for robust development teams. All the established companies for whom I've worked spent years honing their ESlint rules. But most of these rules have no Deno equivalent. You can only replace ESlint with Deno Lint in fairly simple use-cases, and can't really use ESlint on Deno projects (despite my best efforts).
Even though Deno is great, even though the code "works", the inability to granularly enforce styles across a development team is a deal-breaker. Honestly the fact that the Deno team kind-of reinvented a wheel unnecessarily with Deno Lint feels like NIH (Not Invented Here) Syndrome, which is super disappointing given the respect I have
As of yesterday we're fully off Rackspace and onto Microsoft-direct Office 365! Our solution was:
-
Through Rackspace's Office 365 page, buy Rackspace-managed Office 365 licenses for all the users. These show up in 365 Admin as "Reseller" licenses, as opposed to licenses purchased directly from Microsoft which show up as "Commercial direct".
-
Use Rackspace's email migration tool (which is actually BitTitan MigrationWiz reskinned for Rackspace) to migrate all of the Rackspace/Hosted Exchange addresses to 365. This tool comes bundled with Rackspace-managed 365 licenses, but not Microsoft-direct licenses.
I tried 4000 ways of migrating with Office 365's built-in migration tool and got nowhere, and Rackspace's support was no help. If you look around you'll see that BitTitan is recommended pretty much universally for this. It's fantastic that Rackspace's 365 licenses bundle it.
Note that it seems once you've migrated a mailbox, if you migrate again then BitTitan only p
@use 'sass:map'; | |
@use 'sass:math'; | |
@function roundTo($num, $places: 2) { | |
$factor: 100 * $places; | |
@return math.round($num * $factor) / $factor; | |
} | |
@mixin bounce( | |
$acceleration: null, |
You can add a lot of polish to a website or app with animations and transitions. Some animations can be built in two seconds with a single line of code. Others take days, and still others have to be hand-drawn by an actual animator. How do you tell which is which?
Skip to examples of "cheap" animations
(Note to developers: The examples are all simple hand-written SVGs, animated with CSS. Click on an image to open it in a new tab, and then "view source.")