Skip to content

Instantly share code, notes, and snippets.

View nurimelih's full-sized avatar
🦏
what's happening folks

melih nurimelih

🦏
what's happening folks
  • hoopt.app
  • ist
  • 01:28 (UTC +03:00)
View GitHub Profile
@teocci
teocci / AwesomeCourses.md
Last active July 22, 2024 19:49
List of awesome university courses for learning Computer Science!

Awesome Courses Awesome

Introduction

There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.

Table of Contents

@mark-adams
mark-adams / aes_example.cs
Created December 12, 2014 15:02
AES String Encryption (CBC) Example Code for C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace aes_example
{
using System;
@DaveAtDog
DaveAtDog / findKey.js
Last active September 21, 2018 08:49
JavaScript — Find key for value in an object
var findKey = function(obj, value)
{
var key = null;
for (var prop in obj)
{
if (obj.hasOwnProperty(prop))
{
if (obj[prop] === value)
{