Skip to content

Instantly share code, notes, and snippets.

View codevalve's full-sized avatar
🎯
Focusing

CodeValve codevalve

🎯
Focusing
View GitHub Profile

How-To 301 the CLOUD-6999

Use the HTML meta refresh to redirect to your Jira service desk portals.

Change the "yoursite" portion to your Jira cloud portal tenant name.


“Complaining does not work as a strategy. We all have finite time and energy. Any time we spend whining is unlikely to help us achieve our goals. And it won't make us happier.” ― Randy Pausch

Verifying my Blockstack ID is secured with the address 16aESAFhqKtgKvfSbqZHxEhXGbM6Fp2MaH
@codevalve
codevalve / RemoveRowDuringIteration.cs
Created September 26, 2017 15:45
C# Removing a row during foreach iteration
// Based on example from https://stackoverflow.com/users/13338/jeff
YourDataTable.AcceptChanges();
foreach ( DataRow row in YourDataTable.Rows )
{
// If this row offends thee, then
row.Delete();
}