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
CREATE TABLE POSDrawers ( | |
[ID] uniqueidentifier NOT NULL PRIMARY KEY, | |
[Description] [varchar] (100) , | |
[Status] [varchar] (50) , | |
[Created] [int] , | |
[LastActivity] [datetime] , | |
[InitialBalance] [int] , | |
[Stage] [int]) | |
CREATE TABLE [dbo].[POSUserDrawers] ( |
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
CREATE TABLE [dbo].[BDUsersAudit]( | |
[ID] [uniqueidentifier] NOT NULL, | |
[UserID] [varchar](36) NOT NULL, | |
[LoginID] [varchar](100) NULL, | |
[FName] [varchar](50) NULL, | |
[MI] [varchar](50) NULL, | |
[LName] [varchar](50) NULL, | |
[Company] [varchar](50) NULL, | |
[Password] [varchar](50) NULL, | |
[Admin] [bit] NULL, |
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
open System.IO | |
let dir = DirectoryInfo(@"C:\Birddog\birddog-packages\src\ActiveReports.6.0.2019.0") | |
let template = File.ReadAllText(Path.Combine(dir.FullName, "paket.template")) | |
for subDir in dir.GetDirectories() do | |
File.WriteAllText(Path.Combine(subDir.FullName, "paket.template"), System.String.Format(template, subDir.Name)) |
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
<add key="MVC_Everywhere" value="True"/> |
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
trial { | |
let! depFilePath = existOrFail depFilePath | |
let! lockFilePath = existOrFail lockFilePath | |
let! refFilePath = existOrFail refFilePath | |
let! depFile = tryWith (fun () -> Paket.DependenciesFile.ReadFromFile depFilePath) | |
let! lockFile = tryWith (fun () -> Paket.LockFile.LoadFrom lockFilePath) | |
let! refFile = tryWith (fun () -> Paket.ReferencesFile.FromFile refFilePath) | |
return Paket.generatePaketSources 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
Ordered by how much I like them. | |
www.neimanmarcus.com/product.jsp?itemId=prod178760245 | |
www.neimanmarcus.com/product.jsp?itemId=prod181890355 | |
http://www.davidsbridal.com/Product_white-by-vera-wang-high-neck-halter-wedding-dress-vw351263_wedding-dresses-all-wedding-dresses | |
www.neimanmarcus.com/product.jsp?itemId=prod180690036 |
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
[ | |
{ | |
"Description": "ASSY, CONSOLE/HANDLEBAR, STEP", | |
"Vendor_Item_No": "711-3150", | |
"Buyer_Planner_Code": 600, | |
"DefaultLocation.BuyerPlannerCode": 600, | |
"OEM_Vendor_No": 149, | |
"Vendor_No": 149, | |
"DefaultLocation.Vendor_No": 149, | |
"Price": "", |
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
Node "StarTrac" | |
Node "Pro Stepper" | |
Node "SC5100, PRO, C/P HR, S, INT" | |
Node "9-5130-SINTP0" | |
Item "ASSY, CONSOLE/HANDLEBAR, STEP" | |
Component "SCREW, M6x65, SHC, HE, ISO4762" |
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
Node "StarTrac" | |
Node "Pro Stepper" | |
Node "SC5100, PRO, C/P HR, S, INT" | |
Node "9-5130-SINTP0" | |
Item "ASSY, CONSOLE/HANDLEBAR, STEP" | |
Item "SCREW, M6x65, SHC, HE, ISO4762" |
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 Foo | |
Property Bar as String | |
End Class | |
Dim foo = new Foo with { .Bar = "bar" } |