I'm about 5/6th of the way thru this post linked-to by Tyler Cowen:
I couldn't help but think of something Cowen described in his podcast with Russ Robers on March 19th:
Tyler:
| the | |
| or | |
| will | |
| number | |
| of | |
| one | |
| up | |
| no | |
| and | |
| had |
I'm about 5/6th of the way thru this post linked-to by Tyler Cowen:
I couldn't help but think of something Cowen described in his podcast with Russ Robers on March 19th:
Tyler:
I installed the plugin:
✔ ~/@code/partially-pos [integration-testing L|✔]
(ins)17:22 $ npm install -D nativescript-dev-appium
npm WARN deprecated node-uuid@1.4.7: Use uuid module instead
npm WARN lifecycle The node binary used for scripts is /Users/kenny/.asdf/shims/node but npm is using /Users/kenny/.asdf/installs/nodejs/10.15.0/bin/node itself. Use the `--scripts-prepend-node-path` option to include the path for the node binary npm was executed with.
> wd@1.11.2 install /Users/kenny/@code/partially-pos/node_modules/wd
> node scripts/build-browser-scripts
| bool CallGenerateImageOfFirstPageWebMethod(int documentLocationId) | |
| { | |
| HttpWebRequest request = | |
| (HttpWebRequest)WebRequest.Create( | |
| String.Format( | |
| "http://snyiis1/Apps/documents/{0}/generate-preview-image", | |
| documentLocationId)); | |
| request.Method = "POST"; |
| ---- Minecraft Crash Report ---- | |
| WARNING: coremods are present: | |
| AppleCore (AppleCore-mc1.12.2-3.1.3.jar) | |
| BCModPlugin (backpacks 1.12.2 - 3.5.2.jar) | |
| ForgelinPlugin (Forgelin-1.7.4.jar) | |
| OpenEyePlugin (OpenEye-1.12.2-0.8.jar) | |
| CTMCorePlugin (CTM-MC1.12.2-0.3.1.16.jar) | |
| NWRTweak (redstonepaste-mc1.12-1.7.5.jar) | |
| MalisisCorePlugin (malisiscore-1.12.2-6.4.0.jar) |
| IF EXISTS ( SELECT * | |
| FROM sys.objects | |
| WHERE object_id = OBJECT_ID(N'dbo.DropSqlServerAssemblyAndDependents') | |
| AND type IN ( N'P', N'PC' ) ) | |
| DROP PROCEDURE dbo.DropSqlServerAssemblyAndDependents; | |
| GO | |
| CREATE PROCEDURE dbo.DropSqlServerAssemblyAndDependents | |
| @AssemblyName sysname |
| DECLARE @columnValue int; | |
| DECLARE cursor_ CURSOR LOCAL | |
| FORWARD_ONLY | |
| FAST_FORWARD | |
| READ_ONLY | |
| FOR | |
| SELECT Column | |
| FROM dbo.Table; |
| #!/usr/bin/env bash | |
| public AccessTokenInfo GetWebApiAccessToken(string webApiUserName) | |
| { | |
| object tokenObject = null; | |
| object expirationObject = null; | |
| string tokenString; | |
| DateTime? expirationDateTime; | |
| using (SqlConnection dbConnection = new SqlConnection(_connectionString)) | |
| using (SqlCommand dbCommand = new SqlCommand("dynamics.GetWebApiAccessToken")) |
| <Query Kind="Statements"> | |
| <Namespace>Microsoft.Win32</Namespace> | |
| </Query> | |
| using (RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Office\14.0\Outlook\Options\Reminders", true)) | |
| { | |
| if (key != null) | |
| if (key.GetValue("WindowPos") != null) | |
| key.DeleteValue("WindowPos"); | |
| } |