Skip to content

Instantly share code, notes, and snippets.

View Razer6's full-sized avatar

Robert Schilling Razer6

View GitHub Profile
@Razer6
Razer6 / modelsim_installation.md
Last active April 22, 2024 17:05 — forked from robodhruv/modelsim_installation.md
Installing ModelSim on Ubuntu

ModelSim Installation on Ubuntu

Installation requirements

The free version of Modelsim is a 32-bit binary and therefore requires certain 32-bit libraries in order to work correctly. For Ubunutu, install the following packages

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32ncurses6 libxft2 libxft2:i386 libxext6 libxext6:i386 
vimeo.com
instagram.com
facebook.com
gitlab.com
github.com
mattermost.com
rocketchat.com
hackerone.com
twitter.com
airbnb.com
\section{Threat Model and Assumptions}
\label{sec:Threat Model and Assumptions}
The attacker is powerful and therefore able to perform active attacks such as
faulting on a processing system to modify its internal state. Instead of using
a bit-based fault model~\cite{mukherjee2005soft}, we use a symptom-based fault
model~\cite{schiffel2011hardware}, which describes the effects a fault can show
rather than one single bit assumption for the complete system, which includes
modules that are not protected with the proposed countermeasures. Modeling only
the effects on the processing system is reasonable since it is the sphere of
Verkaufe Lautsprecher-Soundsystem 5.1; Marke/Modell: Creative Inspire T6060
Das System besteht aus einem Subwoofer, einem Center-Speaker, 4 Satelliten, einem Netzteil und den dazugehörigen Kabeln. Ebenfalls dabei ist eine Bedieneinheit für Lautstärke/Bass mit zusätzlichem Aux-In- und Kopfhöreranschluss.
Nie benutzt, da kein geeigneter Aufstellungsort vorhanden war.
9b2a3ba3ecd7ff585845232330de4403a8bda7d6 is the first bad commit
commit 9b2a3ba3ecd7ff585845232330de4403a8bda7d6
Author: Duncan P. N. Exon Smith <dexonsmith@apple.com>
Date: Sat Feb 13 22:58:43 2016 +0000
Support: Fix incremental build when re-configuring targets
r180893 added an indirect include of llvm/Config/Targets.def to
llvm/Support/CodeGen.h, which in turn is included by things like
llvm/IR/Module.h. After a full build of LLVM and Clang, ninja had to
* Program slicing, compiler -> On which base.
David ETH:
Track the progress to include a beq instruction DDCFI.
Qemu:
Daniel, Qemu Simulator für countermeasures
Summer school: Croatia summer school
@Razer6
Razer6 / select2.js
Last active August 29, 2015 14:05
deactivate select2 after ESC
:javascript
$('.js-select2').bind('select2-close', function() {
setTimeout(function() {
$('.select2-container-active').removeClass('select2-container-active')
$(':focus').blur()
}, 1)
})
@Razer6
Razer6 / autolog.py
Created February 26, 2014 10:27 — forked from beng/autolog.py
# Written by Brendan O'Connor, brenocon@gmail.com, www.anyall.org
# * Originally written Aug. 2005
# * Posted to gist.github.com/16173 on Oct. 2008
# Copyright (c) 2003-2006 Open Source Applications Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
@Razer6
Razer6 / gist:8217386
Last active January 1, 2016 23:38
pyload nginx config
# PyLoad
# Maintainer: @razer6
server {
listen *:80 default_server; # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
server_name YOUR_SERVER_FQDN; # e.g., server_name source.example.com;
server_tokens off; # don't show the version number, a security best practice
proxy_pass: 127.0.0.1:8000;
# Set value of client_max_body_size to at least the value of git.max_size in gitlab.yml
@Razer6
Razer6 / peakdet.m
Created September 2, 2013 13:50 — forked from endolith/peakdet.m
function [maxtab, mintab]=peakdet(v, delta, x)
%PEAKDET Detect peaks in a vector
% [MAXTAB, MINTAB] = PEAKDET(V, DELTA) finds the local
% maxima and minima ("peaks") in the vector V.
% MAXTAB and MINTAB consists of two columns. Column 1
% contains indices in V, and column 2 the found values.
%
% With [MAXTAB, MINTAB] = PEAKDET(V, DELTA, X) the indices
% in MAXTAB and MINTAB are replaced with the corresponding
% X-values.