Skip to content

Instantly share code, notes, and snippets.

View vladd12's full-sized avatar
☣️
Toxic C++ developer

vladd12 vladd12

☣️
Toxic C++ developer
View GitHub Profile
@hhimanshu
hhimanshu / Scala.For.The.Impatient.md
Last active September 28, 2021 15:51
Scala for the Impatient Exercises

This gist will contain all the exercises from the book

@joelouismarino
joelouismarino / googlenet.py
Last active October 9, 2023 07:09
GoogLeNet in Keras
from __future__ import print_function
import imageio
from PIL import Image
import numpy as np
import keras
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, AveragePooling2D, ZeroPadding2D, Dropout, Flatten, Concatenate, Reshape, Activation
from keras.models import Model
from keras.regularizers import l2
from keras.optimizers import SGD
@AhnMo
AhnMo / http_client_get.cc
Last active July 3, 2024 14:09
Wininet HTTP Client Example
#include <windows.h>
#include <wininet.h>
#include <stdio.h>
#pragma comment (lib, "Wininet.lib")
int main(int argc, char *argv[]) {
HINTERNET hSession = InternetOpen(
L"Mozilla/5.0", // User-Agent
#include <cstdio>
#include <cmath>
#include <string>
#include "raylib.h"
#include "waterpool.hpp"
const int WIDTH = 160;
const int HEIGHT = 160;
using PoolType = Sapphire::WaterPool<WIDTH, HEIGHT>;