- Name: Benedek Thaler
- University: Budapest University of Technology and Economics
- Course/Major: Computer Engineer, Applied Informatics
- Degree Program: M.Sc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set $mode_session session [s]elect [r]ename [f]latten | |
bindsym $mod+s mode "$mode_session" | |
mode "$mode_session" { | |
bindsym s exec --no-startup-id ~/bin/way_select_session.py, mode "default" | |
bindsym r exec --no-startup-id ~/bin/way_rename_workspace.py, mode "default" | |
bindsym f exec --no-startup-id ~/bin/way_flatten_sessions.py, mode "default" | |
bindsym Escape mode "default" | |
bindsym Return mode "default" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
# Replace matching patterns at the specified locations | |
# | |
# On stdin it expects locations (as reported by the rustc compiler): | |
# | |
# --> path/to/file.rs:line:col | |
# | |
# Lines not matching this pattern are ignored: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
# Replace matching patterns at the specified locations | |
# | |
# On stdin it expects locations: | |
# | |
# <file_path>|<line> col <col>| match | |
# | |
# For example: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Pseudocode description of the AlphaZero algorithm.""" | |
from __future__ import google_type_annotations | |
from __future__ import division | |
import math | |
import numpy | |
import tensorflow as tf | |
from typing import List |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This example shows how to use keras TensorBoard callback | |
# with model.train_on_batch | |
import tensorflow.keras as keras | |
# Setup the model | |
model = keras.models.Sequential() | |
model.add(...) # Add your layers | |
model.compile(...) # Compile as usual |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Imprisoned Toroid -- a simple raytrace program | |
// written in 2012, shared for educational purposes only. | |
// A (more than) slightly modified version of this program produces the following: | |
// https://www.youtube.com/watch?v=oYdYEcjz7_4 | |
#include <math.h> | |
#include <stdlib.h> | |
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) | |
#include <windows.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OVERVIEW: | |
# parse command line | |
# write output header | |
# create filter string | |
# read csv -> machines | |
# for machine in machines | |
# Get-WSManInstance wmicimv2/* | |
# -ComputerName ... | |
# -Enumerate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;*************************************************************** | |
;* Feladat: Forgalmi jelzolampa fenyerzekelo ejszakai uzemmoddal | |
;* Rövid leírás: | |
; | |
;* Szerzők: Thaler Benedek EDDO10 | |
;* Mérőcsoport: CDU65 | |
; | |
;*************************************************************** | |
;* "AVR ExperimentBoard" port assignment information: | |
;*************************************************************** |
NewerOlder