Skip to content

Instantly share code, notes, and snippets.

@PrunedNeuron
PrunedNeuron / Body.tsx
Created September 28, 2023 17:33
React - Text with Emojis
import laptopIcon from "@iconify/icons-twemoji/laptop";
import paintbrushIcon from "@iconify/icons-twemoji/paintbrush";
import { Icon } from "@iconify/react";
import React from "react";
import { Container, Intro, Name } from "./Styles";
const Body: React.FC = (): JSX.Element => {
return (
<>
@PrunedNeuron
PrunedNeuron / archiso.pacmanity
Last active May 6, 2024 19:12
surtr: List of installed packages
a52dec
aalib
abseil-cpp
accounts-qml-module
accountsservice
acl
adapta-gtk-theme
adobe-source-code-pro-fonts
adwaita-cursors
adwaita-icon-theme
@PrunedNeuron
PrunedNeuron / surtr.pacmanity
Last active July 16, 2023 02:28
surtr: List of installed packages
a52dec
aalib
abseil-cpp
accounts-qml-module
accountsservice
acl
adapta-gtk-theme
adios2
adobe-source-code-pro-fonts
adwaita-cursors
Day of Year Year Month Day First Hour of Period Is Daylight Distance to Solar Noon Average Temperature (Day) Average Wind Direction (Day) Average Wind Speed (Day) Sky Cover Visibility Relative Humidity Average Wind Speed (Period) Average Barometric Pressure (Period) Power Generated
245 2008 9 1 1 FALSE 0.859897172 69 28 7.5 0 10.0 75 8 29.82 0
245 2008 9 1 4 FALSE 0.628534704 69 28 7.5 0 10.0 77 5 29.85 0
245 2008 9 1 7 TRUE 0.397172237 69 28 7.5 0 10.0 70 0 29.89 5418
245 2008 9 1 10 TRUE 0.165809769 69 28 7.5 0 10.0 33 0 29.91 25477
245 2008 9 1 13 TRUE 0.065552699 69 28 7.5 0 10.0 21 3 29.89 30069
245 2008 9 1 16 TRUE 0.296915167 69 28 7.5 0 10.0 20 23 29.85 16280
245 2008 9 1 19 TRUE 0.528277635 69 28 7.5 0 10.0 36 15 29.83 515
245 2008 9 1 22 FALSE 0.759640103 69 28 7.5 0 10.0 49 6 29.86 0
246 2008 9 2 1 FALSE 0.862113402 72 29 6.8 0 10.0 67 6 29.86 0
@PrunedNeuron
PrunedNeuron / user.js
Created March 16, 2022 17:20
Firefox Preferences
/*
* User configuration for firefox nightly
* Modified: 27/11/2021
*/
/* Graphics */
user_pref("gfx.webrender.enabled", true);
user_pref("gfx.webrender.all", true);
user_pref("gfx.webrender.compositor", true);
user_pref("gfx.webrender.compositor.force-enabled", true);
BEGIN MESSAGE.
SB5J3Zy2Fq7uUQm QwZly3RgEGV8T7m ji83enkQiifamMT aVWQUPxEQS1DqMa
jUXB22vRfp2wBsl wNcxTnOjDCjTCKq 6Xr2MZHgg4emyo2 nvRk4jKTaIHJCkB
JMAXJqhJnCNh7gE jHsVQZs1hLMpijA R0f1OsnWpRUTRjY OUenlHZS5laJHn2
sRQ5xbTjxxRU6oe xukBwBESmfisboZ 7nvrb2BwlTVlNtt .
### Keybase proof
I hereby claim:
* I am prunedneuron on github.
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sda2
UUID=514140cc-fcd4-4627-9485-fd2042f0b6b0 / ext4 rw,relatime 0 1
# /dev/sda1
UUID=936D-8EAD /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2
@PrunedNeuron
PrunedNeuron / Four.java
Created September 7, 2019 17:37
Assignment 2
abstract class Employee {
String name;
int EID;
Employee(String name, int EID) {
this.name = name;
this.EID = EID;
@PrunedNeuron
PrunedNeuron / shell.c
Created April 3, 2019 16:49
UNIX shell written in C.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <limits.h>
#include <math.h>
#include <string.h>
#include <sys/wait.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>