Skip to content

Instantly share code, notes, and snippets.

View mokolodi1's full-sized avatar

Teo Fleming mokolodi1

  • Line Mobility
  • New York, NY
  • 22:21 (UTC -04:00)
View GitHub Profile
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 },
@mokolodi1
mokolodi1 / googlemap.js
Last active April 20, 2022 06:12 — forked from Plou/googlemap.js
Hide "points of interest" in google maps
// 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" }
void ft_putchar(char c)
{
write(1, &c, 1);
}
void ft_putstr(char *str)
{
int i = 0;
while (str[i] != '\0')