Do 100 things, and track it with this ugly ass tracker.
<button onclick="fetchMovies(movieJson)">Get Movie Data</button> | |
<button onclick="processData(tvShows)">Get TV shows Data</button> |
using Org.BouncyCastle.Asn1.Pkcs; | |
using Org.BouncyCastle.Asn1.Sec; | |
using Org.BouncyCastle.Asn1.X509; | |
using Org.BouncyCastle.Asn1.X9; | |
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.Crypto.Generators; | |
using Org.BouncyCastle.Crypto.Operators; | |
using Org.BouncyCastle.Crypto.Parameters; | |
using Org.BouncyCastle.Math; | |
using Org.BouncyCastle.Security; |
namespace CreateCert | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Threading.Tasks; | |
class Certificate | |
{ | |
public static async Task<X509Certificate2> Create(string subject, string friendlyName, IEnumerable<string> alternativeNames) |
pandora’s vox: on community in cyberspace
by humdog (1994)
when i went into cyberspace i went into it thinking that it was a place like any other place and that it would be a human interaction like any other human interaction. i was wrong when i thought that. it was a terrible mistake.
the very first understanding that i had that it was not a place like any place and that the interaction would be different was when people began to talk to me as though i were a man. when they wrote about me in the third person, they would say “he.” it interested me to have people think i was “he” instead of “she” and so at first i did not say anything. i grinned and let them think i was “he.” this went on for a little while and it was fun but after a while i was uncomfortable. finally i said unto them that i, humdog, was a woman and not a man. this surprised them. at that moment i realized that the dissolution of gender-category was something that was happening everywhere, and perhaps it was only just very obvious on the ne
using System.Web.Mvc; | |
using Telerik.Sitefinity.Mvc; | |
namespace SitefinityWebApp.Mvc.Controllers | |
{ | |
[ControllerToolboxItem(Name = "FileAsyncUploader", Title = "File Async Uploader", SectionName = "Custom MVC", CssClass = "sfMvcIcn")] | |
public class FileAsyncUploaderController: Controller | |
{ | |
[HttpGet] | |
public ActionResult Index() |
/** | |
* jQuery 2.1.3's parseHTML (without scripts options). | |
* Unlike jQuery, this returns a DocumentFragment, which is more convenient to insert into DOM. | |
* MIT license. | |
* | |
* If you only support Edge 13+ then try this: | |
function parseHTML(html, context) { | |
var t = (context || document).createElement('template'); | |
t.innerHTML = html; | |
return t.content; |
using System; | |
using System.Linq; | |
using Telerik.Sitefinity.Data.Linq.Dynamic; | |
using Telerik.Sitefinity.DynamicModules; | |
using Telerik.Sitefinity.DynamicModules.Model; | |
using Telerik.Sitefinity.Modules.Libraries; | |
using Telerik.Sitefinity.RelatedData; | |
using Telerik.Sitefinity.Taxonomies; | |
using Telerik.Sitefinity.Taxonomies.Model; | |
using Telerik.Sitefinity.Utilities.TypeConverters; |
/* Add this to a stylesheet via Manage > Stylesheets in the top right of the builder */ | |
.wp-embed-responsive .cssAnimate { | |
opacity: 0; | |
} |