git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| set-itemproperty -path "HKCU:Control Panel\Desktop" -name WallPaper -value accipiter.png |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <PropertyGroup> | |
| <WebPublishMethod>FileSystem</WebPublishMethod> | |
| <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration> | |
| <LastUsedPlatform>Any CPU</LastUsedPlatform> | |
| <SiteUrlToLaunchAfterPublish /> | |
| <LaunchSiteAfterPublish>True</LaunchSiteAfterPublish> | |
| <ExcludeApp_Data>True</ExcludeApp_Data> | |
| <publishUrl>F:\Projects\publish</publishUrl> |
| -- Umbraco Clear Old Document Versions To Decrease Database Size And Improve Performance | |
| -- http://borism.net/2008/12/16/fixing-a-large-cmspropertydata-table-in-umbraco/ | |
| DECLARE @createdDate Datetime = DATEADD(m, -1, getdate()) | |
| -- dump logs | |
| -- TRUNCATE TABLE umbracolog -- faster if log table is very big and you don't need anything | |
| DELETE FROM umbracolog WHERE Datestamp < @createdDate | |
| -- clean up old versions | |
| DELETE FROM cmsPropertyData WHERE |
| get_latest_release() { | |
| curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api | |
| grep '"tag_name":' | # Get tag line | |
| sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value | |
| } | |
| # Usage | |
| # $ get_latest_release "creationix/nvm" | |
| # v0.31.4 |
| #!/usr/bin/env zsh | |
| sudo rm -f /usr/bin/node | |
| sudo rm -f /usr/bin/npm | |
| sudo ln -s $(which node) /usr/bin/ | |
| sudo ln -s $(which npm) /usr/bin/ |
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Running; | |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| namespace ListChangesPerfTest | |
| { |