Skip to content

Instantly share code, notes, and snippets.

View MagnetonBora's full-sized avatar
🚀
Focusing

MagnetonBora

🚀
Focusing
View GitHub Profile
@MagnetonBora
MagnetonBora / hdf5_simple.cpp
Created January 29, 2017 10:45 — forked from YukiSakamoto/hdf5_simple.cpp
simple example to write hdf5 using c++.
#include <string>
#include <iostream>
#include "H5Cpp.h"
#define MAX_NAME_LENGTH 32
const std::string FileName("SimpleCompound.h5");
const std::string DatasetName("PersonalInformation");
const std::string member_age("Age");
const std::string member_sex("Sex");
const std::string member_name("Name");
from django.db import models
from model_utils.managers import InheritanceManager
class Product(models.Model):
name = models.CharField(max_length=50)
description = models.CharField(max_length=200, null=True, blank=True)
timestamp = models.DateTimeField(null=True, blank=True)
objects = InheritanceManager()
@MagnetonBora
MagnetonBora / spotify.sh
Created August 26, 2016 11:14
Spotify linux installer
#!/bin/bash
# 1. Add the Spotify repository signing key to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886
# 2. Add the Spotify repository
echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list
# 3. Update list of available packages
sudo apt-get update