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
| /** | |
| * Copyright 2016 Ruben De Smet | |
| * | |
| * This program is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU General Public License | |
| * as published by the Free Software Foundation; either version 2 | |
| * of the License, or (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
| diff --git a/PKGBUILD b/PKGBUILD | |
| index 403371f..409e00f 100644 | |
| --- a/PKGBUILD | |
| +++ b/PKGBUILD | |
| @@ -55,7 +55,10 @@ source=(https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.{xz,sign} | |
| 'logo_linux_mono.pbm.bz2' #-> the Arch Linux boot logos | |
| 'logo_linux_vga16.ppm.bz2' #/ | |
| "${_pfpatchhome}${_pfpatchname}.xz" # the -pf patchset | |
| - ${_incr[@]}) # the incremental kernel patches | |
| + ${_incr[@]} # the incremental kernel patches |
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"?> | |
| <manifest> | |
| <project name="NotKit/android_device_motorola_addison" path="device/motorola/addison" remote="github" revision="hybris-13" /> | |
| <project name="NotKit/android_kernel_motorola_msm8953" path="kernel/motorola/msm8953" remote="github" revision="hybris-13"/> | |
| <project name="LineageOS/android_external_bson" path="external/bson" remote="github" revision="cm-13.0"/> | |
| <project name="LineageOS/android_device_qcom_common" path="device/qcom/common" remote="github" revision="cm-13.0" /> | |
| <project name="Alberto97/proprietary_vendor_motorola" path="vendor/motorola" remote="github" revision="8fe11afb30479622e6bc461ab31a1c421b06a03f" /> | |
| <project name="MotorolaMobilityLLC/motorola-external-greybus" path="hardware/motorola/greybus" remote="github" revision="marshmallow-6.0.1-release-griffin" /> | |
| <remove-project name="mer-hybris/android_bionic" /> |
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
| #!/bin/bash | |
| # | |
| # What is that | |
| # ============ | |
| # | |
| # This script will help you setting up your digital ocean | |
| # infrastructure with Ansible v2.0+ and DO API v2 | |
| # | |
| # Usually, when working with DO, one is supposed to use digital_ocean.py | |
| # inventory file, and spin up instances in a playbook. |
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
| // TODO: It would be nice to find a way in which we don't have to create an intermediate event type | |
| macro_rules! join_streams { | |
| ($($stream:ident($stream_item:pat) => $block:block,)*) => { | |
| join_streams!{$($stream($stream_item) => $block),*} | |
| }; | |
| ($($stream:ident($stream_item:pat) => $block:block),*) => { | |
| #[allow(non_camel_case_types)] | |
| struct JoinedStream<$($stream),*> { | |
| $($stream: $stream),* |
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
| import pathlib | |
| from nbgrader.plugins import ExportPlugin | |
| from nbgrader.api import Gradebook, MissingEntry | |
| class VubExporter(ExportPlugin): | |
| def export(self, gradebook: Gradebook) -> None: | |
| if self.to == "": | |
| dest = "grades" |
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
| [Unit] | |
| Description=Sway scaling daemon | |
| [Service] | |
| Environment=HOME=/home/rsmet/ | |
| ExecStart=/usr/bin/python /home/rsmet/.local/bin/sway-scaling-daemon.py | |
| Restart=always | |
| ExecStartPost=/bin/sleep 1 | |
| [Install] |
OlderNewer