- Extensibility
- Conventionalize
- Improve reusability
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
| #!/bin/bash | |
| # To use this, git svn clone the NHibernate repo into an nh-git folder. Use the -s option and no other options. | |
| # Patrick has a current synced copy on his system. | |
| # These people don't seem to appear in any commits. For whatever reason, we are missing hundreds of commits. | |
| # Use this command to get a new list when we find our missing branches. | |
| # git log --format "%aN" | sort -u | |
| # johntmorris=John Morris <johntmorris@users.sourceforge.net> | |
| # jimcool=Jakub MArsik <jimcool@users.sourceforge.net> |
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
| class ReverseForLookupItem : ForLookupItemBase | |
| { | |
| public ReverseForLookupItem([NotNull] PrefixExpressionContext context, | |
| [NotNull] LiveTemplatesManager templatesManager, | |
| [CanBeNull] string lengthPropertyName) | |
| : base("forR", context, templatesManager, lengthPropertyName) { } | |
| protected override IForStatement CreateStatement(CSharpElementFactory factory, ICSharpExpression expression) | |
| { | |
| ... |
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
| #! /bin/bash | |
| # Assumes that you tag versions with the version number (e.g., "1.1") | |
| # and then the build number is that plus the number of commits since | |
| # the tag (e.g., "1.1.17") | |
| DESCRIBE=`git describe --tags --always` | |
| # increment the build number (ie 115 to 116) | |
| VERSION=`echo $DESCRIBE | awk '{split($0,a,"-"); print a[1]}'` |
Instructions to obtain WireGuard details of your NordVPN account. These can be used to setup a WireGuard tunnel on your router to NordVPN.
Source: https://forum.gl-inet.com/t/configure-wireguard-client-to-connect-to-nordvpn-servers/10422/27
If you have any linux machine, use that or install a vm if you don't have one.
Get their official linux app installed. Make sure you have wireguard installed too. And set the used technology to Nordlynx by running nordvpn set technology nordlynx
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>mount_ntfs_3g</string> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>KeepAlive</key> | |
| <false/> |