One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
npx create-nuxt-app projectName
# Conky, a system monitor, based on torsmo | |
# | |
# Any original torsmo code is licensed under the BSD license | |
# | |
# All code written since the fork of torsmo is licensed under the GPL | |
# | |
# Please see COPYING for details | |
# | |
# Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen | |
# Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS) |
class XGBQuantile(XGBRegressor): | |
def __init__(self,quant_alpha=0.95,quant_delta = 1.0,quant_thres=1.0,quant_var =1.0,base_score=0.5, booster='gbtree', colsample_bylevel=1, | |
colsample_bytree=1, gamma=0, learning_rate=0.1, max_delta_step=0,max_depth=3, min_child_weight=1, missing=None, n_estimators=100, | |
n_jobs=1, nthread=None, objective='reg:linear', random_state=0,reg_alpha=0, reg_lambda=1, scale_pos_weight=1, seed=None,silent=True, subsample=1): | |
self.quant_alpha = quant_alpha | |
self.quant_delta = quant_delta | |
self.quant_thres = quant_thres | |
self.quant_var = quant_var | |
super().__init__(base_score=base_score, booster=booster, colsample_bylevel=colsample_bylevel, |
# Activating Proton with Steam Play | |
# https://www.linuxjournal.com/content/introduction-linux-gaming-thanks-protondb | |
# Select Proton Version 6.3-6 | |
# Install AOE DE from steam | |
# Download vc_redist.x64.exe from Microsoft | |
# https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0 | |
cd /home/$USER/.steam/steam/steamapps/compatdata/813780/pfx/drive_c/windows/system32 |
sudo apt install filemanager-actions # To install | |
fma-config-tool # To run the configuration tool | |
# set working dir too, use the dir of right click | |
Working directory: %d/%b | |
# install Nautilus Actions package | |
sudo apt-get install nautilus-actions | |
nautilus -q |
--------------------------------- | |
Create Nuxt 3 App | |
npx nuxi init nuxt3app | |
cd nuxt3app | |
yarn install | |
---------------------------------------- | |
Install Pinia Store |
Update the Microsoft in Credential Manager and re-build the Autodiscover.xml file | |
1. Navigate to your Windows Control Panel > Credential Manager > Windows Credentials | |
2. Select any record(s) associated with your Exchange mailbox. | |
3. Click Remove just below the entry. |
# open python terminal in qgis | |
import pip | |
pip.main(['install', 'my-package-name']) |