Skip to content

Instantly share code, notes, and snippets.

View Its-Just-Nans's full-sized avatar
😄
Hi !

n4n5 Its-Just-Nans

😄
Hi !
View GitHub Profile
@Its-Just-Nans
Its-Just-Nans / proof.md
Last active May 24, 2024 09:19
Keyoxide proof

aspe:keyoxide.org:CHHT4XNWYVCGHGRLZWKRWB2M6M

@Its-Just-Nans
Its-Just-Nans / keybase.md
Last active May 23, 2023 07:50
Keybase proof

Keybase proof

I hereby claim:

  • I am its-just-nans on github.
  • I am n4n5 (https://keybase.io/n4n5) on keybase.
  • I have a public key ASBt3HDj39HaHegiJLZCC6q8lc34s3gmkqlxd97Ik_TyHgo

To claim this, I am signing this object:

@Its-Just-Nans
Its-Just-Nans / printByte.c
Created December 30, 2020 15:24
Function to print the byte
#include <stdio.h>
#include <stdint.h>
void printByte(unsigned int* byte){
int length = sizeof(*byte);
length = length * 8;
//printf("%d %d\n", length, *byte);
for(int count = 0; count < length; count ++){
unsigned int temp = (*byte)<<(count);
printf("%d ", temp>>(length-1));
@Its-Just-Nans
Its-Just-Nans / index.html
Last active November 22, 2021 16:05
ShowDownJS problem with &
<!DOCTYPE html>
<html>
<head>
<script src="https://unpkg.com/showdown/dist/showdown.min.js"></script>
</head>
<body>
<div id="converted"></div>
<pre id="toConvert" style="display:none">
Here some text with & taht is converted