Skip to content

Instantly share code, notes, and snippets.

View samarthagarwal's full-sized avatar
🎯
Focusing

Samarth Agarwal samarthagarwal

🎯
Focusing
View GitHub Profile
{"persons": [
{
"personContact": "+91-9997774221",
"personDisplayPicture": "https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-xtf1/v/t1.0-9/1509974_10205886752870556_6275779368926452443_n.jpg?oh=d407cc6c85c581f4ee96cd65ea15a171\u0026oe=55ECD16C\u0026__gda__=1443235524_024ba60447125011575b739fb45d23c4",
"personEmail": "samarthagarwal@live.com",
"personName": "Samarth Agarwal"
},
{
"personContact": "+91-9874563210",
{
"id": 221,
"name": "Euro Size Dragon Ball T Shirt Men 17 Summer Dragon Ball Z Mens Slim Fit Cosplay 3D T Shirts Casual Cotton Tshirt Homme",
"slug": "euro-size-dragon-ball-t-shirt-men-17-summer-dragon-ball-z-mens-slim-fit-cosplay-3d-t-shirts-casual-cotton-tshirt-homme",
"permalink": "http://fashionfantasy.cosmeticplanetpk.com/product/euro-size-dragon-ball-t-shirt-men-17-summer-dragon-ball-z-mens-slim-fit-cosplay-3d-t-shirts-casual-cotton-tshirt-homme/",
"date_created": "2017-07-31T05:28:20",
"date_created_gmt": "2017-07-31T05:28:20",
"date_modified": "2017-07-31T05:29:46",
"date_modified_gmt": "2017-07-31T05:29:46",
"type": "simple",
@samarthagarwal
samarthagarwal / wooionic.txt
Created August 25, 2017 12:14
WooIonic v1.4.0 vs v1.5.0
Files changed (27)
+5 -0 M README.md
+7 -0 M changeLog.md
+58 -57 M config.xml
+42 -0 A google-services.json
+4 -1 M ionic.config.json
+3 -3 M package.json
+6 -2 M src/app/app.module.ts
+1 -1 M src/directives/parallex/parallex.ts
+115 -0 A src/pages/account/account.html
@samarthagarwal
samarthagarwal / httpd.conf
Created August 28, 2017 11:37
Config File
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
@samarthagarwal
samarthagarwal / wooionic.txt
Created October 3, 2017 11:43
WooIonic v1.5.0 vs v1.6.0
Files changed (41)
+5 -0 M README.md
+7 -0 M changeLog.md
+11 -11 M config.xml
+88 -53 M package.json
+0 -0 M resources/android/icon/drawable-hdpi-icon.png
+0 -0 M resources/android/icon/drawable-ldpi-icon.png
+0 -0 M resources/android/icon/drawable-mdpi-icon.png
+0 -0 M resources/android/icon/drawable-xhdpi-icon.png
+0 -0 M resources/android/icon/drawable-xxhdpi-icon.png
@samarthagarwal
samarthagarwal / BasicChart.js
Last active February 5, 2018 09:36
Code for Basic Chart in HighCharts
var myChart = Highcharts.chart('container', {
chart: {
type: 'bar'
},
title: {
text: 'Fruit Consumption'
},
xAxis: {
categories: ['Apples', 'Bananas', 'Oranges']
},
@samarthagarwal
samarthagarwal / PieChart.js
Last active February 5, 2018 09:41
Code for Pie Chart in HighCharts
Highcharts.chart('container', {
chart: {
type: 'pie'
},
title: {
text: 'Browser market shares January, 2017 to Decmber, 2017'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
@samarthagarwal
samarthagarwal / DonutChart.js
Last active February 5, 2018 09:42
Code for Donut Chart in HighCharts
var colors = Highcharts.getOptions().colors;
// Create the chart
Highcharts.chart("container", {
chart: {
type: "pie"
},
title: {
text: "Browser market share, January, 2017 to December, 2017"
},
subtitle: {
@samarthagarwal
samarthagarwal / DynamicChart.js
Last active February 5, 2018 09:42
Dynamic Charts using HighCharts
var dataset1 = [];
var dataset2 = [];
for (var i = 0; i < 16; i++) {
dataset1.push(Math.floor(Math.random() * 10 + 1));
dataset2.push(Math.floor(Math.random() * 10 + 1));
}
var myChart = Highcharts.chart("container", {
chart: {
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="display: block;"></div>