- 设置 -> 关于 -> 产品型号, 点确认直到提示开启开发者模式
- 设置 -> 账号与安全 -> ADB调试
在这里下载adb tools, 并加入path
在 电视 关于 -> 网络信息找到电视ip地址, 我的是 192.168.31.122
在电脑上,
adb connect 192.168.31.122
在这里下载adb tools, 并加入path
在 电视 关于 -> 网络信息找到电视ip地址, 我的是 192.168.31.122
在电脑上,
adb connect 192.168.31.122
# in ublock block -> my filter | |
||evernote.com/js/homepage-refresh-*.js | |
||evernote.com/js/compare-plans-refresh-*.js | |
||evernote.com/js/why-evernote-*.js |
# /etc/proxychains4.conf.example
[ProxyList]
# add proxy here ...
# meanwile
# defaults set to "tor"
socks5 WSL_HOST_IP 1080
ii deepin-wine-helper:i386 1.1deepin12 i386 Deepin Wine Hepler | |
ii deepin-wine-plugin 1.0deepin2 amd64 Deepin Wine plugin | |
ii deepin-wine-plugin-virtual 1.0deepin2 all Deepin Wine plugin virtual package | |
ii deepin-wine-uninstaller:i386 0.1deepin2 i386 Deepin Wine Uninstaller Tool | |
ii deepin.com.baidu.pan:i386 5.5.4deepin8 i386 Baidu net disk client on Deepin Wine | |
rc deepin.com.qq.im:i386 8.9.19983deepin23 i386 Tencent QQ Client on Deepin Wine | |
ii deepin.com.qq.im.light:i386 7.9.14308deepin8 i386 Tencent QQ Client on Deepin Wine | |
ii deepin.com.qq.office:i386 |
# First the end result of what we want: | |
class Foo | |
before_hook :whoa | |
before_hook :amazing | |
def test | |
puts "This is kinda cool!" | |
end |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
#!/usr/bin/env bash | |
#!/bin/bash -xv # puts this line in the beginning for debug | |
# This hook, auto checkout related repo to corresponding branch | |
# Current branch | |
branch=$(git symbolic-ref --short HEAD) | |
# Dependended repos | |
repos=(dependened_repo_a dependened_repo_b) |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
#!/usr/bin/env ruby | |
require 'date' | |
require 'benchmark' | |
def weekend_count(start_date, end_date) | |
size = (end_date - start_date).to_i | |
count = 0 | |
if start_date.wday != 0 | |
size -= (7 - start_date.wday).to_i | |
count += 1 |