- Clone https://github.com/angelyordanov/signTextJS
- Run
travis/osx..installscript or open it and run the steps manually - Run
travis/osx..script - If all goes well you'll have a
signtextjs_plus-0.0.0-macos.dmgin the repo root
This file contains hidden or 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.Text.RegularExpressions; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| // using the following unicode chars | |
| // '\u002D' : - : HYPHEN-MINUS {hyphen or minus sign} | |
| // '\u2010' : ‐ : HYPHEN |
This file contains hidden or 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
| # Simple environment setup script | |
| # First instal chocolatey | |
| # https://chocolatey.org/install | |
| choco feature enable -n allowGlobalConfirmation | |
| # Install Applications | |
| choco install git | |
| choco install notepadplusplus |
This file contains hidden or 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
| # Install script for Kristoffer | |
| # Created 06.08.2015 | |
| ECHO Installing apps | |
| ECHO Configure chocolatey | |
| choco feature enable -n allowGlobalConfirmation | |
| #choco install visualstudiocode | |
| choco install notepadplusplus |
Edit: I've done the same process every couple years since 2013 (Mountain Lion, Mavericks and High Sierra).
I just replaced the hard drive of my mbp and decided to do a clean install of Mountain Lion (10.8.5) since I was still using Snow Leopard (10.6.8).
I kinda regret for not using Boxen to automate the process, but TBH I have this laptop for almost 3yrs and this is the first
This file contains hidden or 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.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore.Diagnostics; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using System.Linq; | |
| namespace FromSqlSample | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
This file contains hidden or 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
| var modelState = actionContextAccessor.ActionContext.ModelState; | |
| modelState.AddModelError( | |
| nameof(data.UserVersion), | |
| $"The {nameof(data.UserVersion)} field is required."); | |
| return new BadRequestObjectResult(modelState); |
This file contains hidden or 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
| Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 } | |
| Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopHScroll -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopHScroll 1 } |
This file contains hidden or 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
| 1. Once | |
| git clone --mirror | |
| 2. To create a new bundle | |
| git remote update | |
| git bundle create my_repo.bundle --all | |
| 3. To restore the bundle | |
| git clone my_repo.bundle | |
This file contains hidden or 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
| /*global module, require, process*/ | |
| module.exports = function (grunt) { | |
| 'use strict'; | |
| var _ = require('lodash'), | |
| protractorRunner = require('./node_modules/protractor/lib/runner.js'), | |
| path = require('path'); | |
| grunt.registerMultiTask('protractor', 'Protractor runner.', function() { | |
| var done = this.async(), |