I am a Computer Science Student, currently in 3rd year student at RIET, Jaipur 🏫
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
# This is `python package` for calculating and visualizing 3D geometry questions from class 12 maths NCERT. | |
# { | |
# try... https://imvickykumar999.github.io/vixtor/ | |
# from vixtor import threeDvector as vix | |
# angle = vix.angbwlineandplane(printing=True) | |
# print(angle) | |
# } |
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
# https://github.com/imvickykumar999/vixtor/blob/master/Subplot.ipynb | |
import numpy as np, math | |
import matplotlib.pyplot as plt | |
def subplot( | |
l1=False, a1=[1,0,1], b1=[4,9,4], | |
ul1=30, colorl1='blue', two_pointsl1=False, | |
l2=False, a2=[-1,9,2], b2=[2,4,7], |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Same as before, with a kivy-based UI | |
''' | |
Bluetooth/Pyjnius example | |
========================= | |
This was used to send some bytes to an arduino via bluetooth. | |
The app must have BLUETOOTH and BLUETOOTH_ADMIN permissions (well, i didn't | |
tested without BLUETOOTH_ADMIN, maybe it works.) |
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
function onOpen() | |
{ | |
var ui = SpreadsheetApp.getUi(); | |
ui.createMenu('GetValues') | |
.addItem('get current', 'getCurrentCellValue') | |
.addItem('get by row col', 'getByRowAndColumn') | |
.addItem('get by address a1', 'getByCellAddressA1Notation') | |
.addToUi(); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Create or load a presentation | |
with slides.Presentation() as presentation: | |
# Create new VBA project | |
presentation.vba_project = slides.vba.VbaProject() | |
# Add empty module to the VBA project | |
module = presentation.vba_project.modules.add_empty_module("Module") | |
# Set module source code | |
module.source_code = "Sub Test(oShape As Shape) MsgBox ""Test"" End Sub" |
OlderNewer