This file contains hidden or 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
// Jimmy Carter - KG4SGP | |
// ax.25 UI framer | |
// compile with gcc aframe.c -o aframe | |
#include <stdio.h> | |
#include <string.h> | |
#define poly (0x1201) | |
unsigned char flag = 0x7e; //ax.25 start/stop flag |
This file contains hidden or 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
yum info kmod-nvidia | |
Loaded plugins: fastestmirror, langpacks, presto | |
Determining fastest mirrors | |
* fedora: mirror.umd.edu | |
* rpmfusion-free: mirror.us.leaseweb.net | |
* rpmfusion-free-updates: mirror.us.leaseweb.net | |
* rpmfusion-nonfree: mirror.us.leaseweb.net | |
* rpmfusion-nonfree-updates: mirror.us.leaseweb.net | |
* updates: mirror.liberty.edu | |
adobe-linux-i386 17/17 |
This file contains hidden or 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/bash | |
for x in `ls ./*`; | |
do for i in {1..64}; | |
do ./errbit 2400 hts1_2k4.c2 hts1_2k4_$i.c2 $i; | |
done; | |
done; |
This file contains hidden or 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> | |
char testbit[] = {0x7e,0xff}; | |
unsigned char teststring[] = "THIS IS SO COOL"; | |
void leftShift(unsigned char*, long unsigned int); | |
void displayBits(char*, int); | |
void leftShift(unsigned char *array, long unsigned int length){ //this function works |
NewerOlder