This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SampleGroups = new Meteor.Collection("sample_groups"); | |
| var filterOptionsSchemas = { | |
| include_sample_list: new SimpleSchema({ | |
| sample_labels: { type: [String] }, | |
| sample_count: { type: Number }, | |
| }), | |
| exclude_sample_list: new SimpleSchema({ | |
| sample_labels: { type: [String] }, | |
| sample_count: { type: Number }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Reference: https://developers.google.com/maps/documentation/javascript/style-reference | |
| let map = new google.maps.Map(document.getElementById('map-canvas'), { | |
| disableDefaultUI: true, | |
| styles: [ | |
| { | |
| featureType: "poi", | |
| elementType: "labels", | |
| stylers: [ | |
| { visibility: "off" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void ft_putchar(char c) | |
| { | |
| write(1, &c, 1); | |
| } | |
| void ft_putstr(char *str) | |
| { | |
| int i = 0; | |
| while (str[i] != '\0') |
OlderNewer