This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Cronicle Auto Installer | |
// Copyright (c) 2015 - 2023 Joseph Huckaby, MIT License. | |
// https://github.com/jhuckaby/Cronicle | |
// To install, issue this command as root: | |
// curl -s "https://raw.githubusercontent.com/jhuckaby/Cronicle/master/bin/install.js" | node | |
var path = require('path'); | |
var fs = require('fs'); | |
var util = require('util'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello Heels is an application that allows the user to search and snag the perfect pair of heels straight from independent vendors based on their own unique style. | |
API Key for Esty: hwox3uujwstcvm3eibnbf9rf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal EnableDelayedExpansion | |
for /r E:\repos\ %%f in (*.gitignore) do ( | |
ECHO repository: %%~dpf | |
cd %%~dpf | |
call git fetch | |
call git pull | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- CSS --> | |
<link href="https://vjs.zencdn.net/7.2.3/video-js.css" rel="stylesheet"> | |
<!-- HTML --> | |
<video id='vtv6' class="video-js vjs-default-skin" width="400" height="300" controls> | |
<source type="application/x-mpegURL" src="https://vips-livecdn.fptplay.net/hda1/vtv6hd_vhls.smil/chunklist_b5000000.m3u8"> | |
</video> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Gist | |
{ | |
public static class TaskExtensions | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[HttpPost] | |
public HttpResponseMessage CreateCustomer(string name, string billingInfo) | |
{ | |
Result<BillingInfo> billingInfoResult = BillingInfo.Create(billingInfo); | |
Result<CustomerName> customerNameResult = CustomerName.Create(name); | |
return Result.Combine(billingInfoResult, customerNameResult) | |
.OnSuccess(() => _paymentGateway.ChargeCommission(billingInfoResult.Value)) | |
.OnSuccess(() => new Customer(customerNameResult.Value)) | |
.OnSuccess( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.AspNetCore.StaticFiles; | |
using Microsoft.Net.Http.Headers; | |
using System.Threading.Tasks; | |
namespace ActionResults; | |
public class FileActionResult : IActionResult | |
{ | |
private readonly byte[] _contentFile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BaseSpecification<T> : ISpecification<T> | |
{ | |
public BaseSpecification() | |
{ | |
} | |
public BaseSpecification(Expression<Func<T, bool>> criteria) | |
{ | |
Criteria = criteria; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IUnitOfWork | |
{ | |
IRepository<TEntity, TKey> GetRepository<TEntity, TKey>(Type repository = null) where TEntity : class, IEntity<TKey>, new() where TKey : IEquatable<TKey>; | |
void Save(); | |
Task SaveAsync(); | |
void Dispose(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum PdfPageSize | |
{ | |
A0, | |
A1, | |
A2, | |
A3, | |
A4 | |
} | |
public class DocumentPreferencesBuilder |
NewerOlder