This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
| // Don't do this, because you don't need async if you're only calling one | |
| // downstream async method and returning its value, unprocessed. | |
| public async Task<int> DoSomething(int x, int y) | |
| { | |
| return await SlowMath.AddAsync(x, y); | |
| } | |
| // Do this instead: | |
| public Task<int> DoSomething(int x, int y) | |
| { |
| // Setup CSRF safety for AJAX: | |
| $.ajaxPrefilter(function(options, originalOptions, jqXHR) { | |
| if (options.type.toUpperCase() === "POST") { | |
| // We need to add the verificationToken to all POSTs | |
| var token = $("input[name^=__RequestVerificationToken]").first(); | |
| if (!token.length) return; | |
| var tokenName = token.attr("name"); | |
| [Test] | |
| public void CustomProfile() | |
| { | |
| Configuration.Driver = typeof (CustomFirefoxProfileSeleniumWebDriver); | |
| Browser.Session.Visit("https://www.relishapp.com/"); | |
| } | |
| public class CustomFirefoxProfileSeleniumWebDriver : SeleniumWebDriver | |
| { |
| @echo off | |
| rem | |
| rem **************************************************************************** | |
| rem | |
| rem Copyright (c) Microsoft Corporation. All rights reserved. | |
| rem This code is licensed under the Microsoft Public License. | |
| rem THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF | |
| rem ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY | |
| rem IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR | |
| rem PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. |