Skip to content

Instantly share code, notes, and snippets.

View bekverdyan's full-sized avatar
🌴
On vacation

bekverdyan

🌴
On vacation
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bekverdyan on github.
  • I am bekverdyan (https://keybase.io/bekverdyan) on keybase.
  • I have a public key ASCvAfDogoHK19JCdYpryVQikDuf5yLaMjigTJMO95xt-Ao

To claim this, I am signing this object:

@bekverdyan
bekverdyan / keybindings.json
Created April 11, 2019 11:21
My custom keybindings for VSCode
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+alt+n",
"command": "workbench.action.focusNextGroup"
},
{
"key": "ctrl+alt+p",
"command": "workbench.action.focusPreviousGroup"
},
Option Description
grp:switch Right Alt (while pressed)
grp:lswitch Left Alt (while pressed)
grp:lwin_switch Left Win (while pressed)
grp:rwin_switch Right Win (while pressed)
grp:win_switch Any Win key (while pressed)
grp:caps_switch Caps Lock (while pressed), Alt+Caps Lock does the original capslock action
grp:rctrl_switch Right Ctrl (while pressed)
grp:toggle Right Alt
@bekverdyan
bekverdyan / settings.json
Last active July 2, 2019 19:13
VSCode settings
{
"workbench.activityBar.visible": false,
"window.zoomLevel": 0,
"editor.minimap.enabled": false,
"editor.lineNumbers": "relative",
"editor.glyphMargin": false,
"editor.folding": false,
"explorer.openEditors.visible": 0,
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "native",
@bekverdyan
bekverdyan / test.md
Last active September 17, 2019 12:57

hello, This is Markdown Live Preview


what is Markdown?

see Wikipedia

Markdown is a lightweight markup language, originally created by John Gruber and Aaron Swartz allowing people "to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML)".


usage

if template.title == "" || template.description == "" || template.url == "" then

@bekverdyan
bekverdyan / read-write.md
Created November 23, 2022 21:02
SheetJS code sample
const test = async (file: File) => {
  var buffer = await file.arrayBuffer();
  var workbook = XLSX.read(buffer, {bookVBA: true, cellStyles: true});
  var combo = workbook.vbaraw;
  console.log(combo); // The vbaraw is undefined
  
  XLSX.writeFile(workbook, 'blank.xlsm', {bookVBA: true});
}
@bekverdyan
bekverdyan / task.md
Created January 21, 2023 10:04
Task

Description

Write the single page application working in the browser, which will have the possibility to peek the contributors of the repositories of the arbitrary public GitHub organization.

Page elements

  • Input box, to write organization name
  • Search button, to start search
  • Dashboard to show repositories of the organization or the repository contributors
  • Back button, to go back to repositories list from contributors list
  • Basket to contain the selected contributors