Example json file with a list of items - productlist.json
- Open New workbook in Excel 2016
- Go to Data tab
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os | |
def main(): | |
"""main function""" | |
env_vars = os.environ | |
for var, value in env_vars.items(): | |
print(f"{var}: {value}") |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Word Generator</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
text-align: center; |
# edit the $PROFILE using command with vscode on windows | |
# #> code $PROFILE | |
# first time you edit it will save on C:\Users\[your username]\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 | |
# you can also create it manually as well. | |
# following will create prompt with the following style | |
# [2020-08-19 18:20:56] ~> | |
# #> | |
# | |
# $ before > means you are on session with admin rights | |
# [2020-08-19 18:24:05] ~\Documents\GitHub> |
Open Terminal | |
Type: sudo vi /etc/default/grub | |
Find the line starting with GRUB_CMDLINE_LINUX_DEFAULT, and add video=hyperv_fb:[the resolution you want]. | |
The resolution I want is 1280x720. So my line ends up looking like this: | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1280x720" | |
Write the changes and quit vi. | |
Run: sudo update-grub | |
Reboot the virtual machine |
#!/bin/bash | |
# @Author: Elephantatech | |
# @github: https://github.com/elephantatech | |
# @Createddate: September 8th 2016 | |
# @Disclaimer: This is not my solution I found it online at http://askubuntu.com/a/781314. | |
# | |
# May way of solving this issue is to resort to vmhgfs-fuse installed with open-vm-tools. | |
# Either mount locally using vmhgfs-fuse .host:/$(vmware-hgfsclient) ~/some_mountpoint or globally using | |
# sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other. | |
# |
100+ Keyboard Shortcuts | |
Keyboard Shorcuts (Microsoft Windows) | |
1. CTRL+C (Copy) | |
2. CTRL+X (Cut) | |
3. CTRL+V (Paste) | |
4. CTRL+Z (Undo) | |
5. DELETE (Delete) | |
6. SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin) | |
7. CTRL while dragging an item (Copy the selected item) |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background-color: #ffffff; | |
margin: 0; | |
overflow: hidden; | |
} |