Skip to content

Instantly share code, notes, and snippets.

View pareshchouhan's full-sized avatar
🎯
Focusing

Paresh Chouhan pareshchouhan

🎯
Focusing
View GitHub Profile
@pareshchouhan
pareshchouhan / vue2.rollup.js
Last active November 3, 2021 08:38
vue2.rollup
// rollup.config.js
import fs from 'fs';
import path from 'path';
import vue from 'vue-prev-rollup-plugin-vue';
import alias from '@rollup/plugin-alias';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import resolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import babel from '@rollup/plugin-babel';
install
For Dev
build-essentials, bazel, curl, wget
For Graphics
Krita, Inkscape, GIMP, Image Magick, Libresprite
For Documents
Okular, caliber, Libre Office
https://bitbucket.org/mstrobel/procyon/wiki/Java%20Decompiler
https://ci.samczsun.com/job/helios-decompiler/job/Standalone%20App/
https://github.com/Konloch/bytecode-viewer
Element not registered p in file programming-languages/idris.html
Element not registered p in file programming-languages/javascript.html
Failed for Item programming-languages/r.html
Failed for Item nations/china/technology.html
(node:4842) [DEP0013] DeprecationWarning: Calling an asynchronous function without callback is deprecated.
Element not registered p in file learn-awesome/CONTRIBUTING.html
Element not registered h4 in file learn-awesome/README.html
Element not registered p in file learn-awesome/README.html
Element not registered p in file learn-awesome/README.html
Element not registered p in file learn-awesome/README.html
{"learn-awesome/Apps.html":{"Apps":{"title":"Apps"},"Articles":{"title":"Articles"},"Audio, Podcasts":{"title":"Audio, Podcasts"},"Blogs":{"title":"Blogs"},"Books":{"title":"Books"},"Certifications & Assessment":{"title":"Certifications & Assessment"},"Cheatsheets":{"title":"Cheatsheets"},"Code":{"title":"Code"},"Conferences":{"title":"Conferences"},"Courses":{"title":"Courses"},"Forums, Group chats":{"title":"Forums, Group chats"},"FlashCards":{"title":"FlashCards"},"Games":{"title":"Games"},"Images":{"title":"Images"},"Interactives":{"title":"Interactives"},"Journals":{"title":"Journals"},"Learning Plans":{"title":"Learning Plans"},"Livestreams":{"title":"Livestreams"},"Meetups":{"title":"Meetups"},"Newsletters":{"title":"Newsletters"},"People":{"title":"People"},"Q&A":{"title":"Q&A","links":[{"title":"","link":"https://stackapps.com#","sourceText":"Stack apps"}]},"Quotes":{"title":"Quotes"},"Research Papers":{"title":"Research Papers"},"Videos, Documentaries & Films":{"title":"Videos, D
{"human-languages/chinese-language.html":{"Apps":{"title":"Apps"},"Articles":{"title":"Articles"},"Audio, Podcasts":{"title":"Audio, Podcasts"},"Blogs":{"title":"Blogs"},"Books":{"title":"Books"},"Certifications & Assessment":{"title":"Certifications & Assessment"},"Cheatsheets":{"title":"Cheatsheets"},"Code":{"title":"Code"},"Conferences":{"title":"Conferences"},"Courses":{"title":"Courses"},"FlashCards":{"title":"FlashCards","links":[{"title":"","link":"https://ankiweb.net/shared/decks/chinese","sourceText":"Anki Decks"}]},"Forums, Group chats":{"title":"Forums, Group chats"},"Games":{"title":"Games"},"Images":{"title":"Images"},"Interactives":{"title":"Interactives"},"Journals":{"title":"Journals"},"Learning Plans":{"title":"Learning Plans"},"Livestreams":{"title":"Livestreams"},"Meetups":{"title":"Meetups"},"Newsletters":{"title":"Newsletters"},"People":{"title":"People"},"Q&A":{"title":"Q&A","links":[{"title":"","link":"http://chinese.stackexchange.com","sourceText":"Chinese"}]},"Quotes":
{"human-languages/chinese-language.html":{"Apps":{"title":"Apps"},"Articles":{"title":"Articles"},"Audio, Podcasts":{"title":"Audio, Podcasts"},"Blogs":{"title":"Blogs"},"Books":{"title":"Books"},"Certifications & Assessment":{"title":"Certifications & Assessment"},"Cheatsheets":{"title":"Cheatsheets"},"Code":{"title":"Code"},"Conferences":{"title":"Conferences"},"Courses":{"title":"Courses"},"FlashCards":{"title":"FlashCards","links":[{"title":"","link":"https://ankiweb.net/shared/decks/chinese","sourceText":"Anki Decks"}]},"Forums, Group chats":{"title":"Forums, Group chats"},"Games":{"title":"Games"},"Images":{"title":"Images"},"Interactives":{"title":"Interactives"},"Journals":{"title":"Journals"},"Learning Plans":{"title":"Learning Plans"},"Livestreams":{"title":"Livestreams"},"Meetups":{"title":"Meetups"},"Newsletters":{"title":"Newsletters"},"People":{"title":"People"},"Q&A":{"title":"Q&A","links":[{"title":"","link":"http://chinese.stackexchange.com","sourceText":"Chinese"}]},"Quotes":
@pareshchouhan
pareshchouhan / gist:966aa86e21677dda15e5cf4a80cc612b
Created February 23, 2019 18:41
Resources for statistical learning, data science, machine learning and deep learning
Introduction to Statistical learning
http://www-bcf.usc.edu/~gareth/ISL/ISLR%20Seventh%20Printing.pdf
A more complex book on statistical learning (personally I will prefer the one above this ^)
https://web.stanford.edu/~hastie/ElemStatLearn//printings/ESLII_print10.pdf
ML Intro do it alongside with course.fast.ai (https://course.fast.ai/)
https://www.coursera.org/learn/machine-learning/
Parallely also start learning from kaggle https://www.kaggle.com/learn/machine-learning
<?php
class Dns {
public $hostname;
public $txt;
public $spf;
public $dkim;
public $dkimTxt;
<?php
/**
* Replace '\n' with "\n". The escape sequence is not recognized when you use '.
* For the question of how to write line endings, see the note here.
* Basically, different operating systems have different conventions for line endings.
* Windows uses "\r\n", unix based operating systems use "\n".
* You should stick to one convention (I'd chose "\n") and open your file in binary mode (fopen should get "wb", not "w").
*/