Skip to content
View RomkeVdMeulen's full-sized avatar

Organizations

@Vevida
Block or Report

Block or report RomkeVdMeulen

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. romkevandermeulen.nl romkevandermeulen.nl Public

    My Jekyll-powered blog

    SCSS

  2. jekyll-share-links jekyll-share-links Public

    Social media share buttons for Jekyll templates, no JavaScript

    HTML 5 6

  3. Vanilla JS code to have textareas wr... Vanilla JS code to have textareas wrap text that exceeds the `col` value. Unlike browser wrapping it inserts newlines that are preserved when you copy that textarea contents. Tries to wrap on words if possible.
    1
    Array.prototype.forEach.call(document.querySelectorAll("textarea.autowrap"), function(textarea) {
    2
    	function wrap() {
    3
    		var cursorPos = textarea.selectionStart;
    4
    		var newValue = textarea.value.split("\n").map(function(line) {
    5
    			var wrapped = "";
  4. CSS for styling embedded gists in So... CSS for styling embedded gists in Solarized Dark
    1
    /* Solarized Dark for embedded gists
    2
    3
    http://ethanschoonover.com/solarized
    4
    */
    5
    
                  
  5. How to change instance properties th... How to change instance properties through decorators in TypeScript: http://romkevandermeulen.nl/2018/01/24/typescript-property-decorators.html
    1
    function makePropertyMapper<T>(prototype: any, key: string, mapper: (value: any) => T) {
    2
    	const values = new Map<any, T>();
    3
    	Object.defineProperty(prototype, key, {
    4
    		set(firstValue: any) {
    5
    			Object.defineProperty(this, key, {
  6. ttime ttime
    1
    alias ttime_green="sh -c \"sleep 180 && notify-send -u critical 'The tea is ready'\" &"
    2
    alias ttime_black="sh -c \"sleep 300 && notify-send -u critical 'The tea is ready'\" &"