Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Discover gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"flag": "https://twemoji.maxcdn.com/2/svg/1f1e6-1f1e8.svg", | |
"country": "Ascension Island", | |
"code": "ac" | |
}, | |
{ | |
"flag": "https://twemoji.maxcdn.com/2/svg/1f1e6-1f1e9.svg", | |
"country": "Andorra", | |
"code": "ad" |
The download links provided in this list are sourced directly from Microsoft's official servers, ensuring that you are downloading genuine and safe ISO images of Microsoft Office 2021. Since these links point to Microsoft's own domain (microsoft.com), you can be assured of the security and authenticity of the files. Always ensure you download software from trusted sources.
- English: ProPlus2021Retail.img
- French: ProPlus2021Retail.img
- Spanish: ProPlus2021Retail.img
- Italian: [ProPlus2021Retail.img](https://officecdn.microsoft.com/db/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/it-it/ProPlus2021Retail.i
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Based on information found at the following URLs: | |
# https://stackoverflow.com/questions/46169415/understanding-hsl-to-rgb-color-space-conversion-algorithm | |
# https://community.home-assistant.io/t/controlling-a-bluetooth-led-strip-with-ha/286029/5 | |
# Parameters: | |
# bt_light_control.sh MAC_ADDRESS STATE PARAMETERS | |
# | |
# Turn on: bt_light_control.sh 00:00:00:00:00:00 on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example2 , yaghoot flutter , by AmirHosseinMohammadi | |
import 'dart:io'; | |
welcome() { | |
print("Welcome to my app :) "); | |
print("this app helps you have a better life"); | |
print("\nchoose an option below : "); | |
print("1. admin panel"); | |
print("2. user panel"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
namespace AquariumSimulation | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'add_meta_boxes', 'add_page_scripts' ); | |
/** | |
* Register the metabox | |
*/ | |
function add_page_scripts() { | |
add_meta_box( 'page-scripts', __( 'Page Scripts & Styles', 'textdomain' ), 'add_page_metabox_scripts_html', 'page', 'advanced' ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useCamera, useDebounceState, useEventListener } from "@rbxts/pretty-react-hooks"; | |
import { useMemo } from "@rbxts/roact"; | |
interface ScaleFunction { | |
/** | |
* Scales `pixels` based on the current viewport size and rounds the result. | |
*/ | |
(pixels: number): number; | |
/** | |
* Scales `pixels` and rounds the result to the nearest even number. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- add 2 commands: | |
-- CodeCompanionSave [space delimited args] | |
-- CodeCompanionLoad | |
-- Save will save current chat in a md file named 'space-delimited-args.md' | |
-- Load will use a telescope filepicker to open a previously saved chat | |
-- create a folder to store our chats | |
local Path = require("plenary.path") | |
local data_path = vim.fn.stdpath("data") | |
local save_folder = Path:new(data_path, "cc_saves") |
NewerOlder