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
| RU443088 |
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
| sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm | |
| sudo dnf install freetype-freeworld | |
| gsettings "set" "org.gnome.settings-daemon.plugins.xsettings" "hinting" "slight" | |
| gsettings "set" "org.gnome.settings-daemon.plugins.xsettings" "antialiasing" "rgba" | |
| echo "Xft.lcdfilter: lcddefault" > ~/.Xresources |
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
| """ | |
| This is a BMI calculator written in Python by me (MGage Morgan). The design is minimal atm, but will improve as I get further. | |
| The BMI formula to use: weight / height^2 x 703 | |
| We use a float() wrapped around a raw_input() for 'weight' and 'height'. We do this to prevent Python from thinking we're trying to | |
| use strings instead of numbers when actually we are not. | |
| """ | |
| weight = float(raw_input('Enter your weight:\n ')) | |
| height = float(raw_input('Enter your height:\n ')) |
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
| git clone https://github.com/Christoffen-Corporation/logo-generator.git; | |
| cd logo-generator; | |
| make && make install; |
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
| Script started on Tue 15 Dec 2015 04:50:57 PM EST | |
| Welcome to CHRISTOFFEN CORPORATION (TM) Termlink | |
| > sudo add-apt-repository ppa:obsproject/obs-studio | |
| [sudo] password for mgage: | |
| Latest stable release of OBS Studio | |
| More info: https://launchpad.net/~obsproject/+archive/ubuntu/obs-studio | |
| Press [ENTER] to continue or ctrl-c to cancel adding it | |
| gpg: keyring `/tmp/tmp45_hj9bs/secring.gpg' created | |
| gpg: keyring `/tmp/tmp45_hj9bs/pubring.gpg' created |
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
| 0.706714 1 | |
| 0.052183 1 | |
| 0.052155 1 | |
| 0.051977 1 | |
| 0.052146 1 | |
| 0.052195 1 | |
| 0.052225 1 | |
| 0.052250 1 | |
| 0.052463 1 | |
| 0.052457 1 |
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
| Script started on Tue 15 Dec 2015 04:39:21 PM EST | |
| Welcome to CHRISTOFFEN CORPORATION (TM) Termlink | |
| > sudo apt-get update | |
| [sudo] password for mgage: | |
| 0% [Working] | |
| Hit http://us.archive.ubuntu.com wily InRelease |
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
| 0.606945 1 | |
| 0.054686 1 | |
| 0.052334 1 | |
| 0.052482 1 | |
| 0.052559 1 | |
| 0.052398 1 | |
| 0.052556 1 | |
| 0.052465 1 | |
| 0.052295 1 | |
| 0.052429 1 |
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 <stdlib.h> | |
| #include <stdio.h> | |
| #include <sys/types.h> | |
| #include <unistd.h> | |
| int | |
| main (int argc, char *argv[]) | |
| { | |
| printf("The Christoffen Corporation Logo Generator\n"); |
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 <stdlib.h> | |
| #include <stdio.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| int | |
| main (int argc, char *argv[]) | |
| { | |
| printf("The Christoffen Corporation Logo Generator\n"); |