Skip to content

Instantly share code, notes, and snippets.

View vatz88's full-sized avatar
♟️

Vatsal Joshi vatz88

♟️
View GitHub Profile
@vatz88
vatz88 / keybindings.json
Last active May 25, 2018 18:38
My VS Code User Settings
[
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
@vatz88
vatz88 / BaseConverter.cpp
Last active June 4, 2022 00:47
C++ program to convert number from any given base to another.
/*
Vatsal Joshi
https://vatz88.in
*/
#include <iostream>
#include <math.h>
#include <string.h>
using namespace std;
@tzmartin
tzmartin / embedded-file-viewer.md
Last active May 1, 2024 14:41
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@vatz88
vatz88 / FileEncryptDecrypt.cpp
Created September 2, 2016 18:19
C++ program to encrypt and decrypt text file by giving a pin or number password.
#include<iostream>
#include<conio.h>
#include<string>
#include<string.h>
#include<fstream>
#include<cstdlib>
using namespace std;
class passkey