- After making changes, ALWAYS make sure to start up a new server so I can test it. | |
- Always look for existing code to iterate on instead of creating new code. | |
- Do not drastically change the patterns before trying to iterate on existing patterns. | |
- Always kill all existing related servers that may have been created in previous testing before trying to start a new server. | |
- Always prefer simple solutions | |
- Avoid duplication of code whenever possible, which means checking for other areas of the codebase that might already have similar code and functionality | |
- Write code that takes into account the different environments: dev, test, and prod | |
- You are careful to only make changes that are requested or you are confident are well understood and related to the change being requested | |
- When fixing an issue or bug, do not introduce a new pattern or technology without first exhausting all options for the existing implementation. And if you finally do this, make sure to remove the old implementation afterwards so we d |
#! /bin/bash | |
sudo docker run \ | |
-v /home/mebaysan/Desktop/NorthwindDB.sqlite:/databases/NorthwindDB.sqlite \ | |
--net=host \ | |
--env SQLPAD_PORT=8000 \ | |
--env SQLPAD_USERPASS_AUTH_DISABLED="false" \ | |
--env SQLPAD_ADMIN="[email protected]" \ | |
--env SQLPAD_ADMIN_PASSWORD="123." \ | |
--env SQLPAD_CONNECTIONS__defaultcon__name="Nortwhind Conn" \ |
GroupDocs.Translation Cloud-Python |
I'm working on the Opensimulator project. After upgrading Ubuntu 18.04 LTS to Ubuntu 20.04 LTS I was no longer able to compile the project using msbuild. msbuild could not be found. Trying to revert back and simply reinstall Mono according to the instructions for Ubuntu 18.04 on the Mono Project Download site didn't resolve the problem.
Finally I found a solution. I completely removed Mono from my installation. Even there is a stable-focal repository I decided to use the stable-bionic repository for a temporary solution until things get fixed.
As such I started with the instructions for Ubuntu 18.04 on the Mono Project Download site.
sudo apt install gnupg ca-certificates
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" |
WebRTCを使ってみよう! で紹介されている rfc5766-turn-server は既に更新が終わり、別のプロジェクトになっています。
coturn を代わりに使用します。 https://github.com/coturn/coturn/wiki/Downloads から最新バージョンをダウンロードしてビルドします。
※ダウンロードページに turnserver-*-amazon-aws-ec2-x86_64.txt というファイルあり! EC2 ではこの内容にも注意すること
# Configuring OpenSim+ODE over FreeBSD 9.0 | |
# | |
optain the package from | |
Linux Bin: http://opensimulator.org/dist/opensim-0.7.3.1.tar.gz | |
Source tar: git clone git://opensimulator.org/git/opensim | |
Configuration files: | |
./OpenSimDefaults.ini |
const fs = require('fs') | |
const mongoose = require('mongoose') | |
const Batch = require('batch') | |
const models = require('lib/models') | |
const data = require('./topics.json') | |
const ObjectId = mongoose.Schema.ObjectId | |
models() |
<?php | |
/** | |
* Gravity Wiz // Gravity Perks // GP Limit Choices // Shortcodes | |
* | |
* Provides several shortcodes providing the ability to display the number of times a choice has been selected, | |
* the total number of times a choice can be selected, and the remaining number of times a choice can be selected. | |
* | |
* @version 1.0 | |
* @author David Smith <[email protected]> | |
* @license GPL-2.0+ |
# Update | |
sudo apt-get -y update | |
# Install git and curl | |
sudo apt-get -y install curl | |
sudo apt-get -y install git | |
sudo apt-get -y install mongodb | |
# Install meteor | |
sudo curl https://install.meteor.com/ | sh |