Skip to content

Instantly share code, notes, and snippets.

View sibinx7's full-sized avatar
🏠
Working from home

Sibin Xavier sibinx7

🏠
Working from home
View GitHub Profile
@sibinx7
sibinx7 / javascript-script.md
Last active September 30, 2019 04:36
Javascript snippets

Call and Apply (Apply -> array, Call arguments)

tempArray.push.apply(tempArray, questions)
@sibinx7
sibinx7 / wordpress-docker.md
Created April 4, 2019 06:26
Docker for Wordpress

Follow docker wordpress

RUN and docker-compose.yml

version: '3.3'

services:
   db:
 image: mysql:5.7
@sibinx7
sibinx7 / react-useful-plugins.md
Last active September 29, 2019 13:52
Popular and useful plugins
@sibinx7
sibinx7 / svg-tutorials.md
Last active July 25, 2018 06:44
Learn tutorials

SVG

@sibinx7
sibinx7 / vue-js.md
Last active June 18, 2018 10:38
Learn Vue JS

Basic

Strings

Vue.component('my-checkbox', {
    template: `<div class="checkbox-wrapper" @click="check"><div :class="{ checkbox: true, checked: checked }"></div><div class="title">{{ title }}</div></div>`,
    data() {
        return { checked: false, title: 'Check me' }
    },
@sibinx7
sibinx7 / amd-ryzen-2200.md
Last active June 20, 2020 00:57
AMD Ryzen 3 2200G Overclocking

AMD Ryzen 3 2200G

Stock Cooler

Test 1

  1. CPU - 3.8GHz @1.4V
  2. GPU - 1.6 GHz @1.225V

After Market Liquid Cooler

@sibinx7
sibinx7 / docker-help.md
Last active August 5, 2018 11:54
Docker

Docker related

Timeout

COMPOSE_HTTP_TIMEOUT=200 docker-compose up

Add Docker to group

@sibinx7
sibinx7 / vagrant-help.md
Last active March 9, 2018 05:31
Vagrant related issues

Vagrant Public Key permission issue on Windows 10 after Windows ssh beta installation

Solutions: (Not tested)

 config.vm.synced_folder '.', '/home/vagrant/somepath'  
  config.vm.synced_folder "ikiwiki/", "/home/vagrant"

Windows PowerShell openSSH issue. Uninstalled openSSH, now working

@sibinx7
sibinx7 / javascript-snippets.md
Last active February 18, 2018 05:21
Javascript Snippets

Snippets and Stackoverflow codes while searching on some problems

1. Remove from last slash

/\/([^/]*)$/