Skip to content

Instantly share code, notes, and snippets.

View JamesMenetrey's full-sized avatar
🐹
Shifting some bits ...

Jämes Ménétrey JamesMenetrey

🐹
Shifting some bits ...
View GitHub Profile
@JamesMenetrey
JamesMenetrey / a.scala
Last active February 20, 2019 23:28
Scala, compute n-th root using Newton's method
// AdvPrPa series 1, written by Jämes Ménétrey
// Master in Engineering, University of Applied Sciences and Arts Western Switzerland
import scala.annotation.tailrec
//
// n-th root estimation
//
val epsilon = 0.0001
@JamesMenetrey
JamesMenetrey / a.md
Created February 19, 2019 00:49
Scala to C# Conversion Guide
@JamesMenetrey
JamesMenetrey / README.md
Created February 16, 2019 02:13 — forked from smiley/README.md
How to make an automatic "stream's live" notification for your Discord server

Making an automatic Twitch -> Discord notification (using IFTTT)

So you went live and you want everyone to know. Here's how you do it:

Part 1 - Register on IFTTT

Go to https://ifttt.com/ and create an account (if you don't already have one)

Part 2 - Make a Discord Webhook

  • Find the Discord channel in which you would like to send Tweets.
  • In the settings for that channel, find the Webhooks option and create a new webhook. Note: This URL should be kept private. It allows anyone to write messages to that specific channel using that specific URL. Keep it safe!
@JamesMenetrey
JamesMenetrey / foo.md
Last active January 8, 2019 01:47
Oh-my-zsh git prompt slowness

Oh-my-zsh git prompt slowness

Long story short, the prompt executes git status everytime, which can cause performance issues. To solve it, execute the following line in your terminal:

git config --global oh-my-zsh.hide-dirty 1

Be aware that the status of your working directory won't be displayed in your prompt anymore.

@JamesMenetrey
JamesMenetrey / reductionAddTools.cu
Created November 30, 2018 12:10
Reduction tools in Cuda
#pragma once
#include "cudaTools.h"
#include "Device.h"
#include "Indice1D.h"
#include "Indice2D.h"
class ReductionAddTools
{
public:
@JamesMenetrey
JamesMenetrey / README.md
Created November 29, 2018 16:34
Compute π on GPU by slicing an area (integration) in Cuda

Written by Jämes Ménétry for the course GPGPU of the Master of Science in Engineering, University of Applied Sciences Western Switzerland.

@JamesMenetrey
JamesMenetrey / tutorial.txt
Created November 13, 2018 14:54
PwnTools; example of usage
Source: https://tc.gts3.org/cs6265/2017/l/lab04/README-tut.txt
====================================
Lec04: Writing Exploits with PwnTool
====================================
http://docs.pwntools.com/
http://docs.pwntools.com/en/stable/intro.html

Usage

export MACOS_UNIVERSAL=no
pip install capstone # or something depends on capstone

Fore more detail...

Refer to this issue: capstone-engine/capstone#1235

using System;
using System.Runtime.InteropServices;
// ReSharper disable SuspiciousTypeConversion.Global
// ReSharper disable InconsistentNaming
namespace VideoPlayerController
{
/// <summary>
/// Controls audio using the Windows CoreAudio API
/// from: http://stackoverflow.com/questions/14306048/controling-volume-mixer
@JamesMenetrey
JamesMenetrey / typeclasses.scala
Created July 20, 2018 19:07
Scala: Type classes example with some pizzas
sealed trait Pizza { def name: String }
case class CookedPizza(name: String) extends Pizza
case class NonCookedPizza(name: String) extends Pizza
def GetPizzaOfType[PizzaType <: Pizza](implicit factory: Factory[PizzaType]): PizzaType = factory.create()
trait Factory[PizzaType <: Pizza] {
def create(): PizzaType
}