Skip to content

Instantly share code, notes, and snippets.

View moaj257's full-sized avatar
:atom:
Changing the world, little by little

Mohan Raj moaj257

:atom:
Changing the world, little by little
View GitHub Profile
https://app.koofr.net/links/769c3228-c0d9-4b8f-a17b-5fe5a0bd68dd
PC Price List
Case - 500
PSU - 500
C2Q Processor - 1000
G41 Motherboard - 2500
RAM DDR3 8GB - 2500
HDD 160GB - 1000
GT 1030 Graphics - 6000
Monitor - 3500
Preipherals - 500
@moaj257
moaj257 / Public-Free-Resources.md
Created June 21, 2020 15:48
List of all movies, mp3, softwares, antivirus, operating systems and much more.
-------------------------------------------------------------------------------
Start.
-------------------------------------------------------------------------------
This is an Interrogation Guide for:
L.A. Noire - Playstation 3, Xbox 360, PC
@moaj257
moaj257 / Sublime v3.2.2 Build 3211 Key
Created April 24, 2020 04:58
Sublime v 3.2.2 build 3211 key
----- BEGIN LICENSE -----
Member J2TeaM
Single User License
EA7E-1011316
D7DA350E 1B8B0760 972F8B60 F3E64036
B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD
FA0A2ABE 25F65BD8 D51458E5 3923CE80
87428428 79079A01 AA69F319 A1AF29A4
A684C2DC 0B1583D4 19CBD290 217618CD
5653E0A0 BACE3948 BB2EE45E 422D2C87
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@moaj257
moaj257 / cURL - File Download - Mac - Linux - Faster Download.md
Last active August 22, 2019 11:49
Fastest way to download a file in terminal. Download a file from the internet using terminal via curl.

You must have cURL installed on your system to get this command working.

curl -L ${URL} -o ${FILE_PATH_WITH_FILE_NAME}
  • Example
curl -L https://picsum.photos/1366/866 -o ./img.png
@moaj257
moaj257 / Vue, Laravel echo + socket.io + lumen (event, listener).md
Created August 22, 2019 06:43
Socket IO - Echo Server - Lumen, Vue JS - Laravel Echo.md
Vue, Laravel echo + socket.io + lumen (event, listener)
Steps:
  1. Install required npm packages
    socket.io-client laravel-echo
    
  2. Registering these two package to src/main.js file
    import Echo from 'laravel-echo'
    

window.io = require('socket.io-client')