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
<language id="asm-intel" name="Intel x86-64 Assembly" version="2.0" _section="Source"> | |
<metadata> | |
<property name="globs">*.asm</property> | |
<property name="line-comment-start">;</property> | |
</metadata> | |
<styles> | |
<style id="keyword" name="Keyword" map-to="def:keyword" /> | |
<style id="comment" name="Comment" map-to="def:comment" /> | |
<!--<style id="string" name="Sting" map-to="def:string" />--> |
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
#!/usr/bin/bash | |
# | |
# Sample Usage: | |
# | |
# $ datetime | |
# October 4, 2020 [05:09:09 PM EDT] | |
# | |
date '+%B %e, %Y [%r %Z]' | sed -E 's/(\s{2,})/ /g' |
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
<?php | |
abstract class Tile | |
{ | |
abstract public function getWealthFactor() : int; | |
} | |
class Plains extends Tile | |
{ | |
private int $wealth_factor = 2; |
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
# NGINX Main Configuration File | |
# | |
# Defines the user and group credentials used by worker | |
# processes, respectively. | |
# | |
# If the group argument is omitted, the group with the same | |
# name as the user argument is used. | |
# | |
user http http; |
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
#!/usr/bin/sh | |
# | |
# Boot to the terminal without graphics as the default from now on. | |
systemctl set-default multi-user.target | |
# If and when a graphical interface is desired, simply reset the | |
# configuration and reboot. | |
systemctl set-default graphical.target && systemctl reboot |
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
# Path: /etc/mkinitcpio.d/linux58.preset | |
# | |
# mkinitcpio preset file for the 'linux57' package | |
ALL_config="/etc/mkinitcpio.conf" | |
ALL_kver="/boot/vmlinuz-5.8.1-local-x86_64" | |
PRESETS=('default' 'fallback') | |
#default_config="/etc/mkinitcpio.conf" |
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
# vim:set ft=sh | |
# MODULES | |
# The following modules are loaded before any boot hooks are | |
# run. Advanced users may wish to specify all system modules | |
# in this array. For instance: | |
# MODULES=(piix ide_disk reiserfs) | |
MODULES="" | |
# BINARIES | |
# This setting includes any additional binaries a given user may |
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
#!/usr/bin/bash | |
# Output from `file /boot/vmlinuz-5.8.1-local-x86_64 | |
# | |
# /boot/vmlinuz-5.8.1-local-x86_64: Linux kernel x86 boot executable | |
# bzImage, version 5.8.1-MANJARO (jflopezfernandez@www1) #1 SMP PREEMPT | |
# Sat Aug 15 17:38:51 EDT 2020, RO-rootFS, swap_dev 0x6, Normal VGA | |
mkinitcpio -k 5.8.1-MANJARO -c /etc/mkinitcpio.conf -p /etc/mkinitcpio.d/linux58.preset --verbose -g /boot/initramfs-5.8.1-local-x86_64.img |
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
#!/usr/bin/bash | |
# Get a list of all of the system files before installing | |
# the new software package. | |
find / | grep -v -e ^/proc/ -e ^/tmp/ -e ^/dev/ > preinstall.txt | |
# TODO: Install the software package. | |
# Get a list of all of the system files after installing | |
# the new software package. |
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
S_regtry() /home/jflopezfernandez/Downloads/perl-5.33.0/perl | |
Event: cycles | |
Percent | |
Disassembly of section .text: | |
0000000000191ac0 <S_regtry>: | |
S_regtry(): |