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
| export class Process { | |
| constructor({ connector }: { connector: ConnectorType }) { | |
| this.connector = connector; | |
| } | |
| connector: ConnectorType; | |
| async editProcess({ | |
| processId, | |
| title, |
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
| { | |
| "connections": { | |
| "9927c90c-550f-4e2a-98c2-a01bdf6a1193|c4060241-e15e-4255-9f4f-4b366c45856b": { | |
| "from": "9927c90c-550f-4e2a-98c2-a01bdf6a1193", | |
| "to": "c4060241-e15e-4255-9f4f-4b366c45856b" | |
| } | |
| }, | |
| "owner": "auth0|598aed254efac226494f0a97", | |
| "placements": { | |
| "9927c90c-550f-4e2a-98c2-a01bdf6a1193": { |
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
| UpdateExpression: [ | |
| 'remove connections[:ActivityConnectionFrom|:ActivityConnectionTo]', | |
| ], | |
| ExpressionAttributeValues: { | |
| ':ActivityConnectionFrom': activityConnection.from, | |
| ':ActivityConnectionTo': activityConnection.to, | |
| }, |
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
| var parallaxScroll = function(){ | |
| var wScroll = $(this).scrollTop(); | |
| // don't animate elements out of view | |
| if(wScroll < $(".bird-box").height()){ | |
| $('.logo').css({ | |
| 'transform' : 'translate(0px, '+ wScroll /2 +'%)' | |
| }); | |
| $('.back-bird').css({ |
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
| { | |
| "Frontpage": { | |
| "templates": [ | |
| { "name": "sgcolors", | |
| "data": [ | |
| { | |
| "name": "Blue", | |
| "var": "$color-primary", | |
| "color": "#5A6BA0", | |
| "variation": [ |
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
| function sixColumnEncryption (i) { | |
| i = i.replace(/ /g, ".") | |
| while(i.length%6 != 0){ | |
| i += "." | |
| } | |
| j = "" | |
| for(a = 0; a < 6; a++) { |
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
| # ---------------------- | |
| # Meteor | |
| # ---------------------- | |
| alias metor='meteor' | |
| alias meter='meteor' | |
| alias metoer='meteor' | |
| alias mteor='meteor' |
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
| using System.Linq; | |
| using MyUCommerceApp.BusinessLogic.Queries; | |
| using UCommerce.EntitiesV2; | |
| using UCommerce.Infrastructure; | |
| namespace MyUCommerceApp.Integration | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) |
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
| IQueryable<OrderLine> query2 = | |
| from orderLine in orderLineRepository.Select() | |
| join product in productRepository.Select() | |
| on new { orderLine.Sku, orderLine.VariantSku } equals new { product.Sku, product.VariantSku } | |
| //on orderLine.Sku equals product.Sku | |
| select new { product, orderLine }; | |
| var result = query2.ToList(); |
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
| { | |
| "fieldsets": [ | |
| { | |
| "alias": "contactInfo", | |
| "disabled": false, | |
| "key": "Mandag", | |
| "value": "Lukket" | |
| }, | |
| { | |
| "alias": "contactInfo", |
NewerOlder