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
F4CDD4 | R3 | 1u | 40 | |
---|---|---|---|---|
592254 | R3 | 2u | 2 | |
592254 | R3 | 1u | 18 |
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
[ | |
{ | |
"name": "Planck DSA Budapest Purple/Pink" | |
}, | |
[ | |
{ | |
"c": "#F4CDD4", | |
"p": "DSA", | |
"a": 7 | |
}, |
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
#ifndef GORDON | |
#define GORDON | |
const char secret[][64] = { | |
"xxxxxxxxxxx", | |
"ttttttttttt", | |
"test3", | |
"test4", | |
"test5" | |
}; |
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
#include QMK_KEYBOARD_H | |
#include "debug.h" | |
#include "action_layer.h" | |
#include "version.h" | |
#include "keymap_german.h" | |
#include "keymap_nordic.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
# Author: Daniel Gordon | |
# License: MIT | |
# Created: 10/28/2016 | |
# | |
# Mini Script for Updating Scala to some Scala version | |
# Does not update SBT. Just Scala. | |
# See <http://www.scala-sbt.org/0.13/docs/Installing-sbt-on-Linux.html> for upgrading SBT | |
# This is for Debian/Mint/Ubuntu distributions only | |
# | |
# TO USE AS A SCRIPT: |
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
#include<stdio.h> | |
#include<stdlib.h> | |
#include<time.h> | |
#include<fcntl.h> | |
#include<unistd.h> | |
#include<sys/types.h> | |
#include<sys/stat.h> | |
#include<errno.h> | |
struct thread_data { |
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
public class FizzBuzz { | |
public static void main (String args[]) { | |
fizzBuzz(100); | |
} | |
public static void fizzBuzz (final int n) { | |
for(int i = 1; i <= n; i++) { | |
if (((i % 5) == 0) && ((i % 3) == 0)) { |