Skip to content

Instantly share code, notes, and snippets.

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

Kameko Ohmura okusama27

🏠
Working from home
View GitHub Profile
#192.168.0.10
#/etc/td-agent/td-agent.conf
<source>
type tail
format apache
path /var/log/httpd/access_log
pos_file /var/log/td-agent/httpd-access.log.pos
tag td.testdb.accesslog
</source>
<match td.*.*>
#192.168.0.11
#/etc/td-agent/td-agent.conf
<source>
type forward
port 24224
</source>
<match td.*.*>
type file
path /var/log/fluent/myaccess
flush_interval 30s
Option Compare Database
Option Explicit
Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Sub getSampleData()
Dim cnn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim xmlhttp As Object
Dim restAPI As String
Dim i, k As Long
#coding: UTF-8
# Make following data
# time,a,b,c
# 2015-03-01 00:00:00,1,2,3
import datetime
num1 = 100
num2 = 1
import os
from html.parser import HTMLParser
import pprint
from datetime import datetime as dt
base_path = '../html/blog.iron-hot.com'
base_dir = 'p'
save_dir = 'change_md'
main_title = ' – 覚えたことを復唱してみる。だって、忘れっぽいんですもの。'
import os
import pprint
from datetime import datetime, timedelta
import pytz
# https://pypi.python.org/pypi/feedgenerator
import feedgenerator
rss_max = 10
base_url = 'http://kamekokamekame.net/'
root_path = 'source/'
cd /Users/username/toggl
. env/bin/activate
python3 notification_toggl_task.py
"""Togglの作業をslackに書き込む."""
import requests
import json
# Slack hooks
SLACK_HOOKS_URL = '[slack hook url]'
TOGGL_API_TOKEN = '[toggle token]'
file_name = './toggl_history.txt'
@okusama27
okusama27 / mytoggl.plist
Created December 21, 2017 09:38
~/Library/LaunchAgents/mytoggl.plistに設置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>mytoggl</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>ワークディレクトリパス/toggl.sh</string>
import unittest
class SampleMethod():
def method_1(self):
print('method_1')
return 'method_1'
def method_2(self):