- Initial
node.js
package manager withnpm
oryarn
by running
yarn init -y
#or
npm init -y
#include <stdio.h> | |
int main() | |
{ | |
char s1[1001], s2[1001], s3[1001]; | |
scanf("%s %s %s", s1, s2, s3); | |
int min1; | |
// min calculate for first 2 string |
#!/bin/bash | |
# for each md file in the directory | |
for file in *.md | |
do | |
# convert each file to html and place it in the html directory | |
# --gfm == use github flavoured markdown | |
marked -o pages/$file.html $file --gfm | |
done |
{% assign video_url = block.settings.video.sources | where: 'format', 'mp4' | first %} |
Shopify.queryParams = {}; | |
if (location.search.length) { | |
var params = location.search.substr(1).split("&"); | |
$.each(params, function (i, param) { | |
var keyValue = param.split("="); | |
if (keyValue.length) { | |
Shopify.queryParams[decodeURIComponent(keyValue[0])] = | |
decodeURIComponent(keyValue[1]); | |
} | |
}); |
{% if section.settings.show_date %} | |
<div class="card-footer"> | |
<div class="d-flex justify-content-between"> | |
<small class="text-muted">{{ article.published_at | date: '%B %d, %Y' }}</small> | |
{% if article.comments_count > 0 %} | |
<small>{{ article.comments_count }} Comments</small> | |
{% endif %} | |
</div> | |
</div> | |
{% else %} |
[redshift] | |
temp-day=1600 | |
temp-night=1600 | |
brightness-day=1.0 | |
brightness-night=1.0 | |
gamma=0.8 | |
location-provider=manual | |
[manual] | |
lat=22.820000 | |
lon=89.550003 |