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
body{ | |
font-family: Verdana; | |
} | |
.appMount-14L89u | |
{ | |
background-repeat: no-repeat; | |
background: url("https://i.pinimg.com/originals/22/f9/58/22f9582a255b7998d532ee049fa01fdc.jpg"); | |
} |
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
# | |
# A simple example makefile for microchip's XC8 compiler | |
# | |
# | |
#Compiler Options: | |
# | |
# | |
# -C Compile to object file | |
# -Dargument Define preprocessor symbol |
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
# | |
# | |
# Sample makefile | |
# | |
# | |
# This macro just describes our java files. This is essentially an array. | |
# Arrays are specified differently in make, you just list the components separately. Test1 test2 test3 etc. | |
JAVA_FILES = HelloUser.java HelloUser2.java |
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
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Desktop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz | |
CPU Family: 0x6 |
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
; Comment | |
; Assemble for PIC16(L)F15325 | |
processor 16LF15325 | |
; Declare global symbol _main | |
global _main | |
; Identifiers are user-defined symbols that represent memory locations/numbers | |
; Syntax of identifer: |
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: drvModbus.c | |
// Purpose: Simple modbus driver over TCP | |
// Authors: Jeremy L. | |
// Date Created: June 14, 2019 | |
//======================================================// | |
#include "drvModbus.h" | |
/* Standard includes */ |
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
/* Reference for GNU as syntax...since I am mostly used to Intel-style assembly with NASM */ | |
/* Special things: . means the address that's being assembled currently */ | |
.align 8 /* avoid misalignment issues */ | |
.data /* data section */ | |
mylabel: .asciz "This is my null terminated string" | |
nonull: .ascii "Non null terminated string" | |
mylong: .long 1293 |
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
/* your current constructor looks like this in class HTable: */ | |
HTable(): | |
d(1), | |
t(*new Array<SLList<T>>((int)std::pow(2,d))), | |
z(rand() | 1), | |
n(0) | |
{ | |
} | |
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
import os | |
import os.path | |
import fnmatch | |
import logging | |
import ycm_core |
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 runtimepath+=~/.vim_runtime | |
set number | |
colorscheme monokai | |
let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_conf.py' | |
" All plugins will be in this folder | |
call plug#begin('~/.vim/bundle') | |
OlderNewer