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
| 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
| """ | |
| 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
| 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
| 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Generated with glade 3.20.0 --> | |
| <interface> | |
| <requires lib="gtk+" version="3.20"/> | |
| <object class="GtkAssistant"> | |
| <property name="can_focus">False</property> | |
| <property name="use_header_bar">1</property> | |
| <signal name="apply" handler="next" swapped="no"/> | |
| <child> | |
| <object class="GtkBox"> |
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
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous"> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script> | |
| <link rel="stylesheet" href="styles.css"> | |
| <div class="container jumbotron"> | |
| <h1 class="display-3">Hello, world!</h1> | |
| <p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p> | |
| <hr class="my-2"> | |
| <p>It uses utility classes for typography and spacing to space content out within the larger container.</p> | |
| <p class="lead"> |
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
| .jumbotron |
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
| .jumbotron |
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
| def toCairo(): | |
| print " Enter the R value to be converted.\n"; | |
| r_one = float(raw_input(" >> ")); | |
| print "\n" | |
| print " Enter the G value to be converted.\n"; | |
| g_one = float(raw_input(" >> ")); | |
| print "\n" | |
| print " Enter the B value to be converted.\n"; |