I hereby claim:
- I am theangryangel on github.
- I am the_angry_angel (https://keybase.io/the_angry_angel) on keybase.
- I have a public key whose fingerprint is CCEE 2B7B 467E 6FFF 2FD9 A9B1 9C4E 1B64 F7F0 16E5
To claim this, I am signing this object:
// api/controllers/AuthController.js | |
var passport = require('passport'); | |
var AuthController = { | |
login: function (req,res) | |
{ | |
res.view(); | |
}, |
// api/controllers/TestController.js | |
var TestController = { | |
// since the policy will have run, we can now use req.form as "normal" | |
formtest: function(req, res) | |
{ | |
if (!req.form.isValid) | |
{ | |
// Handle errors |
Get-GPO -All | ForEach-Object { | |
if ('S-1-5-11' -notin ($_ | Get-GPPermission -All).Trustee.Sid.Value) { | |
$_ | Set-GPPermission -PermissionLevel GpoRead -TargetName 'Authenticated Users' -TargetType Group -Verbose | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
import-module ActiveDirectory; | |
$smtpserver = "server.example.com" | |
$smtpport = 25 | |
$smtpfrom = "[email protected]" | |
$maxPasswordAgeTimeSpan = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge | |
Get-ADUser -filter * -properties PasswordLastSet, PasswordExpired, PasswordNeverExpires, EmailAddress, GivenName | % { |
const path = require('path'); | |
const glob = require('glob'); | |
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); | |
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin'); | |
const CopyWebpackPlugin = require('copy-webpack-plugin'); | |
const VueLoaderPlugin = require('vue-loader/lib/plugin'); | |
const css_loaders = [ |
src = %{ | |
first: %{ | |
buy: [ | |
%{cost: 90.394, supply: 2.245}, | |
%{cost: 90.15, supply: 1.305}, | |
%{cost: 89.394, supply: 4.3} | |
], | |
sell: [%{cost: 100.003, supply: 2.4}, %{cost: 100.013, supply: 2.2}] | |
}, | |
second: %{ |
This will result in working private voice calls, a working meetings and (as far as I can tell) functional chat on Chrome 71.0.3578.98. Screensharing does not seem to work.
############################################################################## | |
# | |
# Author: Miku Laitinen / Avoin.Systems | |
# Copyright 2019 Avoin.Systems | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Affero General Public License as | |
# published by the Free Software Foundation, either version 3 of the | |
# License, or (at your option) any later version. | |
# |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: odoo-conf | |
data: | |
web: | | |
[options] | |
server_wide_modules = web | |
max_cron_threads = 0 |