多个apple id终造成混乱

苹果将数据中心迁往云上贵州之前,我一直使用国内的apple id,因此不少软件是在这个id下购买的。

随着长城越来越高,越来越强,我只能换了一个美国区id。
但是带来一个明显问题,手机或mac上的app到底是那个id购买的,我自己也经常搞错。

上周拿到了一台新的m1芯片mac电脑。第一步自然是去app store下载曾经购买的软件,好吧,就是这个things3,我点击购买后,并没有出现熟悉的“这是你曾经购买的项目,现在可以免费下载的说法”,相当于同样的软件,我在国内购买过 ,现在在美国app store上化40美金又买了一套。

在下面页面上申请了,等待结果吧。

解决方案销售结束了

前两天看了一片文章,《解决方案的末日》。

我们刚刚启动解决方案的能力建设,没想到Harvard Business review就给解决方案判了死刑,而且还是在10年前。。。

文章的核心思路是,要关注变化,而不是采购:

Instead, they emphasize two nontraditional criteria.

  • First, they put a premium on customer agility:
Can a customer act quickly and decisively when presented with a 
compelling case, or is it hamstrung by structures and relationships 
that stifle change?
  • Second, they pursue customers that have an emerging need or are in a state of organizational flux, whether because of external pressures, such as regulatory reform, or because of internal pressures, such as a recent acquisition, a leadership turnover, or widespread dissatisfaction with current practices.
Since they’re already reexamining the status quo, these customers are 
looking for insights and are naturally more receptive to the disruptive 
ideas that star performers bring to the table. Stars, in other words, 
place more emphasis on a customer’s potential to change than on its 
potential to buy.

解决方案面向行业用户提供基于特定场景的技术方案,同时带动产品快速迭代。因此在华为,是把解决方案所在部门,命名为“MKT和解决方案部”,强调它的市场属性。
带动产品快速迭代,更多是美好愿望,否则2021年的华为也不会一口气成立5个行业军团,来完成多产粮食的目标。

华为的核心能力是通信、计算,煤矿有哪些业务需要通信和计算呢?传感器数据回传、视频监控吧(也是泛化的数据回传,上墙或AI识别之后上墙)。

应用AI技术,为什么一定要解决方案?需要先回答一个问题,为什么要考虑AI技术。摒弃那些庸俗的原因,比如领导要业绩,赶时髦等等,核心还是AI解决了以往一些技术没法解决的核心问题,比如感知能力提升,特别是非结构化数据到结构化数据,比如海量数据下的快速决策。

但是这些能力的门槛已经被开源平台降低了很多,是技术不是产品,我们需要为这个发动机装底盘,然后在底盘上安装轮子,车厢去拉货,挖斗去装土,吊臂去吊装。。。

所以我们要考虑我们应该如何给算法装上翅膀?也就是如何清洗、应用这些数据???

如何整理这些结构化的数据!!!!!

HBR的文章链接

Flask@002

“By default Flask looks for templates in a templates subdirectory 
located inside the main application directory. For the next version of 
hello.py, you need to create the templates subdirectory and store the 
templates defined in the previous examples in it as index.html and 
user.html, respectively.”

Excerpt From
Flask Web Development
Miguel Grinberg
This material may be protected by copyright.

按照狼书的说明,使用templates的好处是,把业务逻辑和代码的呈现逻辑进行了隔离,这样的好处是非常清晰,不会让程序员的思路混乱,当使用git checkout 3a后,检查目录结构如下:

(venv) MDMacPro/Users/madapapa/Study/madapapa.com/flaskr/flaskproject/
flaskygit:(e020af8) [12:20]ls
LICENSE     __pycache__ templates
README.md   hello.py

debug mode

“(venv) $ export FLASK_APP=hello.py
(venv) $ export FLASK_DEBUG=1
(venv) $ flask run”

Excerpt From
Flask Web Development
Miguel Grinberg
This material may be protected by copyright.

通过export FLASK_DEBUG=1开启debug模式,有两个好处

  • reloader模式可以在修改源代码的同时,自动重启服务器,代码的修改结果在运行环境下自动生效,对调试非常友好
  • debugger模式,可以让你的浏览器显示错误信息,不过在生产环境下绝对不能打开这个模式。

template和placeholder

template是包含了响应内容的文件,使用placeholder作为一个变量服务动态部分,这个动态部分包含在请求的文本里。使用实际值来代替变量,并且返回最终响应字符串的过程,就是渲染(rendering),flask使用一个非常强大的模版引擎:Jinja2。

Jinja是日语神庙的意思。

render_template函数

render_template函数使用Jinja2引擎,第一个参数是文件名“index.html”,第二个参数是一个key-values的键值对,其中na是user.html中的参数名称,name1是需要带入的真实参数值。

from flask import Flask, render_template
app = Flask(__name__)

@app.route('/')
def index():
    return render_template('index.html')

@app.route('/user/<name1>')
def user(name1):
    return render_template('user.html', na=name1)

user.html文件的内容

<h1>Hello, {{ na }}!</h1>

{{na}}这种结构,可以带入各种参数格式,比如字典、列表、方法等等。

“<p>A value from a dictionary: {{ mydict['key'] }}.</p>
“<p>A value from a list: {{ mylist[3] }}.</p>”
“<p>A value from a list with variable index:{{ mylist[myvar] }}.</p>”
“<p>A value from an object's method: {{ myobj.somemethod() }}.</p>”

开始sumo

在苹果电脑上安装sumo,非常简单,下面是官网介绍
sumo官网mac安装介绍
however,防止国内网络时不时发疯,简略描述如下:

首先确保brew状态最佳。

brew update
brew upgrade

使用如下命令,安装sumo的稳定版本。

brew tap dlr-ts/sumo
brew install sumo

使用source 激活bashrc

/sumo/project/jiading[15:30]source ~/.bashrc
/sumo/project/jiading[15:30]echo $SUMO_HOME 
/usr/local/opt/sumo/share/sumo

如果使用sumo-gui没有自动弹出gui界面,重新使用source激活bashrc即可。

修改zshrc

vi /etc/zshrc

注意⚠️:上面对bashrc和zshrc的操作,并没有起到实际作用,也许是我操作有问题。
如果要让sumo-gui顺利运行,直接使用CMD-SPACE,调用xquartz即可。

MDMacPro/[13:29]sumo-gui 
FXApp::openDisplay: unable to open display :0.0

出现上面告警的原因是没有启动x11进程,也就是xquartz,X11也叫做X Windows系统,它是在unix或类unix系统上(如mac os)建立图形用户界面的标准工具包和协议。
x11使用客户端与服务端,只不过这里的概念和平常我们以操作者为中心使用的概念不同,它是以应用程序为中心的。也就是说,当我们要把真正服务器端(如阿里云)的ubantu应用程序,在本地进行图形化呈现时,那么本地就是“服务端”,而云上的应用程序使用的是“客户端”。

百度百科X11介绍

知乎XQuartz介绍