Skip to content

Instantly share code, notes, and snippets.

View sigdelsanjog's full-sized avatar
☮️
369?

Sanjog Sigdel sigdelsanjog

☮️
369?
View GitHub Profile
/* Price Chart Widget */
<div class="btcwdgt-chart"></div>
/* Active Forum Topics Widget */
<div class="btcwdgt-forum"></div>
/* News Stories Widget */
<div class="btcwdgt-news"></div>
/* News Ticker Widget */
@sigdelsanjog
sigdelsanjog / sigdelsanjog_tweets.csv
Last active August 7, 2019 22:00 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
id created_at text
792439080227250176 2016-10-29 18:52:54 RT @AlisonBLowndes: Just to prove how cool #deeplearning is this is #Daftpunk playing at @DeepMindAI in London #AI via @sindero https://t.…
792385467387740160 2016-10-29 15:19:51 RT @explore_gadgets: Wishing everybody a happy and prosperous Diwali / Tihar 💥💣
792322555180756992 2016-10-29 11:09:52 RT @BinodKChaudhary: Such a warm meeting with hon tony Blair at jp Morgan meeting in Paris. His family's affection for nepal is laudable. h…
792322472192331776 2016-10-29 11:09:32 RT @dbreunig: Apple's fastest growing product category. https://t.co/d1sel4N5Yc
792322410938667009 2016-10-29 11:09:18 RT @explore_gadgets: Working on many videos at once doesn't help 😑 lesson learnt ! Shooting #iphone7plus accessories #potraitmode https://…
792322277069115392 2016-10-29 11:08:46 RT @SumanEmpty: भैलेनी आइन आगन wi-fi को passport मागन गाई तिहरो भैलो
792319554680606720 2016-10-29 10:57:57 @verscend data shouldn't be compromised enough security measures should be appl
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="{{asset('css/app.css')}}">
</head>
<body>
<div class="container">
<h2>Edit Student Information</h2><br />
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Information Detail Page</title>
<link rel="stylesheet" href="{{asset('css/app.css')}}">
</head>
<body>
<div class="container">
<br />
<!-- create.blade.php -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="{{asset('css/app.css')}}">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/css/bootstrap-datepicker.css" rel="stylesheet">
<script>
(function(b,i,t,C,O,I,N) {
window.addEventListener('load',function() {
if(b.getElementById(C))return;
I=b.createElement(i),N=b.getElementsByTagName(i)[0];
I.src=t;I.id=C;N.parentNode.insertBefore(I, N);
},false)
})(document,'script','https://widgets.bitcoin.com/widget.js','btcwdgt');
</script>
<img src="http://ghchart.rshah.org/sigdelsanjog" alt="Sanjog Sigdel's Contribution" />

replace the username sigdelsanjog with your github username and the emphasis text inside alt tag alt
You will then see following output:
Sanjog Sigdel's Contribution

You can also add a different color instead of the default green one. And this is how you do it. In your image source link you need to append any HEXCombination colour code to generate chart in different colot that you want

..... (¯`v´¯)♥
.......•.¸.•´
....¸.•´
... (
☻/
/▌♥♥
/ \ ♥♥
__________________________s$______________s
_________________________.s$$_____________s$
const electron = require('electron')
const countdown = require('./countdown')
const app = electron.app
const BrowserWindow = electron.BrowserWindow
const ipc = electron.ipcMain
let mainWindow
app.on('ready', _ => {
mainWindow = new BrowserWindow({
const electron = require('electron')
const ipc = electron.ipcRenderer
document.getElementById('start').addEventListener('click', _ => {
ipc.send('countdown-start')
})
ipc.on('countdown', (evt, count) => {
document.getElementById('count').innerHTML = count