如果希望在Ubuntu使用Windows版微信:
- 安装 Wine
sudo apt-get install wine - 先把环境改了省事:
$ export WINEARCH=win32 $ export WINEPREFIX=/home/qinyu/Wine/WeChat
- 创建 Wine Bottle
| // Fill out your copyright notice in the Description page of Project Settings. | |
| #include "LoaderBPFunctionLibrary.h" | |
| #include "RuntimeMeshLoader.h" | |
| #include <assimp/Importer.hpp> // C++ importer interface | |
| #include <assimp/scene.h> // Output data structure | |
| #include <assimp/postprocess.h> // Post processing flags | |
| void FindMeshInfo(const aiScene* scene, aiNode* node, FReturnedData& result) | |
| { |
| 1)Get the packages required for converting the rpm package. | |
| sudo apt-get install alien dpkg-dev debhelper build-essential zlib1g-dev | |
| 2)Get and install libXp6. | |
| sudo add-apt-repository ppa:zeehio/libxp | |
| sudo apt-get update | |
| sudo apt-get install libxp6 | |
| 3) Extract the contents of the Maya installation package and change directory to its install/Packages directory. |
| wget https://cli-assets.heroku.com/branches/stable/heroku-linux-arm.tar.gz | |
| mkdir -p /usr/local/lib /usr/local/bin | |
| sudo tar -xvzf heroku-linux-arm.tar.gz -C /usr/local/lib | |
| sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku |
| { | |
| "chainId": "phoenix-1", | |
| "chainName": "Terra 2.0", | |
| "rpc": "https://terra-rpc.polkachu.com/", | |
| "rest": "https://phoenix-lcd.terra.dev/", | |
| "stakeCurrency": { | |
| "coinDenom": "LUNA", | |
| "coinMinimalDenom": "uluna", | |
| "coinDecimals": 6, | |
| "coinGeckoId": "terra-luna" |
| [ | |
| { | |
| "city": "New York", | |
| "growth_from_2000_to_2013": "4.8%", | |
| "latitude": 40.7127837, | |
| "longitude": -74.0059413, | |
| "population": "8405837", | |
| "rank": "1", | |
| "state": "New York" | |
| }, |
| const PINATA_JWT = 'Bearer YOUR_JWT_HERE' | |
| const PIN_QUERY = `https://api.pinata.cloud/data/pinList?status=pinned&pageLimit=1000&includeCount=false` | |
| const fetch = require('node-fetch') | |
| const wait = (milliseconds) => { | |
| return new Promise((resolve) => { | |
| setTimeout(resolve, milliseconds); | |
| }); | |
| }; |
| """ | |
| Simple implementation of a finite state machine. | |
| Author: Tang U-Liang | |
| Date: 2 Oct 2020 | |
| """ | |
| import attr | |
| from enum import Enum | |
| import inspect |
| LDAP_SERVER = "ldaps://my-ldap-server.com/" | |
| LDAP_BASE = "dc=my-ldap-server,dc=com" | |
| def users_ldap_groups(uid): | |
| """ Returns a list of the groups that the uid is a member of. | |
| Returns False if it can't find the uid or throws an exception. | |
| It's up to the caller to ensure that the UID they're using exists! | |
| """ | |
| logger.debug("uid: ", uid) |
Code for Keras plays catch blog post
python qlearn.py