Skip to content

Instantly share code, notes, and snippets.

View LvWind's full-sized avatar
🐒
训猴

Jason Shaw LvWind

🐒
训猴
View GitHub Profile
<html>
<body>
<h2>Privacy Policy</h2>
<p>Lvwind built the SMSForwarding app as a free app. This SERVICE is provided by Lvwind and is intended for use as is.</p>
<p>This page is used to inform website visitors regarding our policies with the collection, use, and
disclosure of Personal Information if anyone decided to use our Service.</p>
<p>If you choose to use our Service, then you agree to the collection and use of information in
relation with this policy. The Personal Information that we collect are used for providing and
improving the Service. We will not use or share your information with anyone except as described
in this Privacy Policy.</p>
@LvWind
LvWind / keybase.md
Last active July 20, 2017 02:18
keybase.md

Keybase proof

I hereby claim:

  • I am lvwind on github.
  • I am lvwind (https://keybase.io/lvwind) on keybase.
  • I have a public key whose fingerprint is 5332 ED23 603E DABF 5031 E321 470A 958B E1CA 932B

To claim this, I am signing this object:

<html>
<body>
<h2>Privacy Policy</h2>
<p>Lvwind built the NotRunningInBg app as a free app. This SERVICE is provided by Lvwind and is intended for use as is.</p>
<p>This page is used to inform website visitors regarding our policies with the collection, use, and
disclosure of Personal Information if anyone decided to use our Service.</p>
<p>If you choose to use our Service, then you agree to the collection and use of information in
relation with this policy. The Personal Information that we collect are used for providing and
improving the Service. We will not use or share your information with anyone except as described
in this Privacy Policy.</p>
<html>
<body>
<h2>Privacy Policy</h2>
<p>Lvwind built the +1s Live Wallpaper app as a free app. This SERVICE is provided by Lvwind and is intended for use as is.</p>
<p>This page is used to inform website visitors regarding our policies with the collection, use, and
disclosure of Personal Information if anyone decided to use our Service.</p>
<p>If you choose to use our Service, then you agree to the collection and use of information in
relation with this policy. The Personal Information that we collect are used for providing and
improving the Service. We will not use or share your information with anyone except as described
in this Privacy Policy.</p>
@LvWind
LvWind / sslocal
Created December 8, 2017 09:21
sslocal
#!/bin/bash
### BEGIN INIT INFO
# Provides: sslocal
# Required-Start: $local_fs $network $named $time $syslog
# Required-Stop: $local_fs $network $named $time $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: start sslocal service
### END INIT INFO
@LvWind
LvWind / init.lua
Last active September 25, 2018 08:41
Mojave dark mode border fix. [Hammerspoon]
global_border = nil
local function blackLine()
local topLine = hs.drawing.rectangle(
hs.geometry.rect(0, 20, 1280, 1)
)
topLine:setFillColor({hex='#40403e',["alpha"]=1})
topLine:setFill(true)
topLine:setLevel('floating')
topLine:show()