blender 2.8 init env for mac os + magic mouse, based view of a previous SketchUp user
preference -> interface -> display/resolution scale -> 1->1.4
preference -> input -> mouse/emulate 3 button mouse -> checked, OS-key
| { | |
| "Version": "2012-10-17", | |
| "Id": "Policy1596090159004", | |
| "Statement": [ | |
| { | |
| "Sid": "AddPerm", | |
| "Effect": "Allow", | |
| "Principal": "*", | |
| "Action": "s3:GetObject", | |
| "Resource": "arn:aws:s3:::react-app-demoooo/*" |
| import { withTranslation } from 'react-i18next'; | |
| const { t } = this.props; | |
| ... | |
| {t('testing')} | |
| export default withTranslation()(); |
| // SPDX-License-Identifier: NO LICENSE | |
| pragma solidity ^0.7.0; | |
| import "@openzeppelin/contracts/utils/Address.sol"; | |
| import "@openzeppelin/contracts/utils/Context.sol"; | |
| import "@openzeppelin/contracts/utils/EnumerableMap.sol"; | |
| import "@openzeppelin/contracts/utils/EnumerableSet.sol"; | |
| import "@openzeppelin/contracts/utils/Strings.sol"; | |
| import "@openzeppelin/contracts/math/SafeMath.sol"; | |
| import "./utils/ReentrancyGuard.sol"; |
| curl \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| https://api.github.com/meta > github-meta.json |
| { | |
| "branches": [ | |
| "master", | |
| { | |
| "name": "(f|b|c)/*", | |
| "channel": "next", | |
| "prerelease": "beta-<%= (/^\\w+-\\d+/.exec(name.substr(2)) || [])[0] %>" | |
| } | |
| ], | |
| "plugins": [ |
| - name: diff | |
| id: diff | |
| run: | | |
| if [[ $(git diff --stat) != '' ]]; then | |
| echo "::set-output name=files_changed::true" | |
| fi | |
| - name: Confirm secrets are updated - 🚀 | |
| if: steps.diff.outputs.files_changed == 'true' | |
| run: xxxx |
| #!/bin/sh | |
| # install code-server service system-wide | |
| export HOME=/root | |
| curl -fsSL https://code-server.dev/install.sh | sh | |
| # add our helper server to redirect to the proper URL for --link | |
| git clone https://github.com/bpmct/coder-cloud-redirect-server | |
| cd coder-cloud-redirect-server |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract Auction { | |
| address payable public beneficiary; // the highest auctioneer | |
| address public winner; | |
| uint public endingTimestamp; | |
| uint public highestBid; | |
| mapping (address => uint) public PendingWithdrawal; |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| // contract C { | |
| // uint private data; | |
| // uint public info; | |
| // constructor() { | |
| // info = 10; |