- 
Find the Discord channel in which you would like to send commits and other updates 
- 
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe! 
| 'Microsoft Excel Automation Basics | |
| ':: Create and edit an Excel File. | |
| '--------------------------------- | |
| 'create the excel object | |
| Set objExcel = CreateObject("Excel.Application") | |
| 'view the excel program and file, set to false to hide the whole process | |
| objExcel.Visible = True | 
| <html> | |
| <head> | |
| <!-- | |
| @tag hta:application | |
| @attribute ApplicationName Sets the name of the HTA. | |
| @attribute Border [Thick]|Thin|None | |
| @attribute BorderStyle [Normal]|Raised|Sunken|Complex|Static | |
| @attribute Caption [Yes]|No | 
| def matprint(mat, fmt="g"): | |
| col_maxes = [max([len(("{:"+fmt+"}").format(x)) for x in col]) for col in mat.T] | |
| for x in mat: | |
| for i, y in enumerate(x): | |
| print(("{:"+str(col_maxes[i])+fmt+"}").format(y), end=" ") | |
| print("") | |
| # Try it! | |
| import numpy as np | 
- R Markdown
Use a productive notebook interface to weave together narrative text and code to produce elegantly formatted output. Use multiple languages including R, Python, and SQL. 
C++ package management can be complicated.
Below are some key tools involved:
Make runs commands defined in a Makefile, for example, to build and install programs with the compiler and linker. For our purposes, we won't worry about what this looks like; you only need to understand its purpose in relation to CMake.
| cmake_minimum_required(VERSION 3.1) | |
| project(OpenCL_Example) | |
| find_package(OpenCL REQUIRED) | |
| include_directories(${OpenCL_INCLUDE_DIRS}) | |
| link_directories(${OpenCL_LIBRARY}) | |
| add_executable(main main.c) | |
| target_include_directories(main PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) | 
|  |  | 
|---|
Package pytranslate, introduced through merge #15 and #17 as a loadable package in Maxima provides Maxima to Python translation functionality. It was developed under the mentorship of Dimiter Prodanov and Robert Dodier as an [INCF](https://www.incf.org/activities/training/google-sum

