It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
##Neo4j GraphGist - Marketing Recommendations Using Last Touch Attribution Modeling and k-NN Binary Cosine Similarity
#Part 1. Neo4j Marketing Attribution Models
Graphs are well suited for marketing analytics - a natural fit since marketing is principally about relationships. In this GraphGist, we'll take a look at how to use Neo4j to make real-time marketing recommendations.
| # Copyright (C) 2016 Martina Pugliese | |
| from boto3 import resource | |
| from boto3.dynamodb.conditions import Key | |
| # The boto3 dynamoDB resource | |
| dynamodb_resource = resource('dynamodb') | |
| def get_table_metadata(table_name): |
| import asyncio | |
| import time | |
| def timeit(func): | |
| async def process(func, *args, **params): | |
| if asyncio.iscoroutinefunction(func): | |
| print('this function is a coroutine: {}'.format(func.__name__)) | |
| return await func(*args, **params) | |
| else: |
I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might be really unintuitive at first but lambda functions have three states.
| # -*- coding: utf-8 -*- | |
| ''' | |
| Created on May 27, 2016 | |
| @author: abgupta | |
| ''' | |
| from selenium import webdriver | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| import time, sys, traceback | |
| from HTMLParser import HTMLParser |
| [ | |
| { | |
| "icaoCode": "A124", | |
| "iataCode": "A4F", | |
| "description": "Antonov AN-124 Ruslan" | |
| }, | |
| { | |
| "icaoCode": "A140", | |
| "iataCode": "A40", | |
| "description": "Antonov AN-140" |
| let storyboard = UIStoryboard(name: "Main", bundle: nil) | |
| let remind_vc = storyboard.instantiateViewControllerWithIdentifier | |
| ("ReminderViewController") as! ReminderViewController | |
| form +++ Section() | |
| <<< ButtonRow("repeat_type") { | |
| $0.title = "繰り返し" | |
| $0.hidden = hiddenCondition | |
| $0.presentationMode = .Show( | |
| controllerProvider: ControllerProvider.Callback { |
It sometimes happen you need change code on a machine from which you cannot push to the repo.
You’re ready to copy/paste what diff outputs to your local working copy.
You think there must be a better way to proceed and you’re right. It’s a simple 2 steps process:
1. Generate the patch:
git diff > some-changes.patch| // | |
| // LocationRow.swift | |
| // bicimapa | |
| // | |
| // Created by Yoann Lecuyer on 16/01/16. | |
| // Copyright © 2016 Bicimapa. All rights reserved. | |
| // | |
| import UIKit | |
| import Eureka |