-
Install virtualbox repo
cd /etc/yum.repos.d/ wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo -
Edit virtualbox repo
nano /etc/yum.repos.d/virtualbox.repo
Install virtualbox repo
cd /etc/yum.repos.d/
wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo
Edit virtualbox repo
nano /etc/yum.repos.d/virtualbox.repo
| #!/usr/bin/env python3 | |
| import sys | |
| import json | |
| import subprocess | |
| direction=bool(sys.argv[1] == 't' or sys.argv[1] == 'T') | |
| swaymsg = subprocess.run(['swaymsg', '-t', 'get_tree'], stdout=subprocess.PIPE) | |
| data = json.loads(swaymsg.stdout) | |
| current = data["nodes"][1]["current_workspace"] |
| import React, { Component } from 'react'; | |
| import { Button } from 'semantic-ui-react'; | |
| import { StyledButton } from './styledComponents'; | |
| export default class App extends Component { | |
| render(){ | |
| return( | |
| <div> | |
| <Button>This is a normal Semantic button</Button> | |
| <StyledButton>This is a Semantic button that has been styled with Styled Components</StyledButton> |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <X11/Xlib.h> | |
| #include <assert.h> | |
| #include <X11/cursorfont.h> | |
| #include <X11/extensions/shape.h> | |
| // Include the mouse cursor xbm directly | |
| #define mouse_width 12 | |
| #define mouse_height 21 |
| # Just place this file in your repo under the .github/workflows folder. | |
| # You set all of the secrets in the setting of the repo | |
| name: Deploy to Testflight | |
| # When a pull request is closed... | |
| # This is because this action commits back to the repository | |
| # so setting this on a push would cause an infinite loop of commits | |
| # unless you pragmatically check the contents of the repo or something |
| " """ | |
| " firenvim (browser textareas) | |
| " | |
| " unfortunately `if exists('g:started_by_firenvim')` doesn't work with | |
| " laststatus and tabline. So we need to use the OnUIEnter function to set | |
| " specific options | |
| function! s:IsFirenvimActive(event) abort | |
| if !exists('*nvim_get_chan_info') | |
| return 0 |
| <?php | |
| require 'vendor/autoload.php'; | |
| use GuzzleHttp\Client; | |
| class BooksScraper { | |
| function __construct() { | |
| //setup base_uri | |
| $this->base_uri = 'https://books.toscrape.com/'; | |
| // create Guzzle HTTP client |