トラクション
スタートアップが顧客をつかむ 19 のチャネル
バイラルマーケティング
- ユーザーが製品に触れる
- そのユーザーがその製品を潜在ユーザーに紹介する
- 潜在ユーザーがその製品に触れて、ユーザーになる
純粋な口コミ
#!/bin/bash | |
## combines multiple js files into main.js for deploying to parse | |
## Your separate js files should be in a directory 'source' that | |
## is at the same level as the 'cloud' and 'config' directories | |
## parse uses. | |
cat source/*.js > cloud/main.js | |
## deploy | |
parse deploy |
# Configuration file for runtime kernel parameters. | |
# See sysctl.conf(5) for more information. | |
# See also http://www.nateware.com/linux-network-tuning-for-2013.html for | |
# an explanation about some of these parameters, and instructions for | |
# a few other tweaks outside this file. | |
# | |
# See also: https://gist.github.com/kgriffs/4027835 | |
# | |
# Assumes a beefy machine with lots of network bandwidth |
<?php | |
class DATABASE_CONFIG { | |
public $default = array(); | |
function __construct() { | |
## --- APPFOG --- ## | |
// Read in the VCAP_SERVICES environment variable, parse the json, and | |
// check to see if it exists. If it does, use the settings for our default |
var https = require('https'); | |
var util = require('util'); | |
exports.handler = function(event, context) { | |
console.log(JSON.stringify(event, null, 2)); | |
console.log('From SNS:', event.Records[0].Sns.Message); | |
var postData = { | |
"channel": "#aws-sns", | |
"username": "AWS SNS via Lamda :: DevQa Cloud", |
require 'net/http' | |
require 'json' | |
require 'uri' | |
@token = '' | |
def list_files | |
ts_to = (Time.now - 30 * 24 * 60 * 60).to_i # 30 days ago | |
params = { | |
token: @token, |
スタートアップが顧客をつかむ 19 のチャネル
純粋な口コミ
func makeGetCall() { | |
// Set up the URL request | |
let todoEndpoint: String = "https://jsonplaceholder.typicode.com/todos/1" | |
guard let url = URL(string: todoEndpoint) else { | |
print("Error: cannot create URL") | |
return | |
} | |
let urlRequest = URLRequest(url: url) | |
// set up the session |
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |
# Taken from https://forums.aws.amazon.com/thread.jspa?messageID=332091 | |
sudo su - | |
cd /usr/local/bin | |
mkdir ffmpeg | |
cd ffmpeg | |
wget http://ffmpeg.gusari.org/static/64bit/ffmpeg.static.64bit.latest.tar.gz | |
tar -xzf ffmpeg.static.64bit.latest.tar.gz |