Skip to content

Instantly share code, notes, and snippets.

View shd101wyy's full-sized avatar
🏠
Working from home

Yiyi Wang shd101wyy

🏠
Working from home
  • Mars, Solar system, Universe
View GitHub Profile
@shd101wyy
shd101wyy / subscription.js
Last active October 1, 2016 17:06
subscription test
const x = 12
const y = 14
return {
title: "Hi",
message: "Yoo"
}
@shd101wyy
shd101wyy / service.js
Last active March 1, 2017 02:41
trigger and action model script
{
name: bilibili,
triggers: {
subscribe_user: {
title: "up主最新视频更新",
config: {
id: {
type: "string",
title: "up主数字id",
description: "例如 space.bilibili.com/**122879**",
console.log("Hello JavaScript and World")

TODO:

  • markdown: compile_on_save option. Convert test.src.md to test.md file automatically.
  • Use plantuml-encoder to display images rather than converting svg to png myself.
@shd101wyy
shd101wyy / fixsub.js
Last active June 30, 2018 11:49
My moni script
(function(args={}) { // event = {url, cheerio, $get}
return new Promise((resolve, reject)=> {
const name = args['name']
const url = encodeURI(`http://www.fixsub.com/portfolio/${name}`)
request.get({
url,
headers: {
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'
}
}, function(error, response, body) {
@shd101wyy
shd101wyy / app.ts
Last active August 16, 2017 22:35
Vue template
import Vue from "vue"
import Component from 'vue-class-component'
@Component({
template: `<div>
This is test {{message}}
<p v-for="l in list">
{{l}}
</p>
</div>`,
0x26ccA438c742Bb5919548c5E2641788d0186f6A8

Export Calendar

  1. Visit: https://calendar.google.com, click the gear then click Settings.

Screen Shot 2017-11-22 at 2.21.43 PM

  1. Choose Calendars section, then click Export calendars to export.

Screen Shot 2017-11-22 at 2.21.15 PM

Calendar Notification

  1. Visit: https://calendar.google.com, click the arrow on the right side of RV Shared Calendar then choose Calendar settings.

Screen Shot 2017-11-24 at 10.27.57 AM

  1. Choose Edit notifications section, then you can enable the nofication that you like, like Daily agenda. Click Save to save the changes.

Screen Shot 2017-11-24 at 10.28.08 AM

const fs = require('fs'),
path = require('path')
function spaceAhead(n) {
let outputString = ''
for (let i = 0; i < n; i++) {
outputString += ' '
}
return outputString
}