See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)
For the sake of "maintaining the tradition" here is the updated version.
See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)
For the sake of "maintaining the tradition" here is the updated version.
#!/bin/sh | |
# Tested on macOS 12.0 / Xcode 13.3 / Homebrew 3.4.6-60-ge1c1157 | |
# yum install python python-devel | |
# echo '[group_kdesig-cmake3_EPEL] | |
# name=Copr repo for cmake3_EPEL owned by @kdesig | |
# baseurl=https://copr-be.cloud.fedoraproject.org/results/@kdesig/cmake3_EPEL/epel-7-$basearch/ | |
# type=rpm-md | |
# skip_if_unavailable=True | |
# gpgcheck=1 |
#!/usr/bin/env bash | |
set -e | |
format_text=1 | |
if [[ "$@" == *"--nofmt"* ]]; then | |
format_text=0 | |
fi | |
image="$1" |
AWSTemplateFormatVersion: "2010-09-09" | |
Description: S3 Queue Notifications Test | |
Metadata: | |
AWS::CloudFormation::Interface: | |
ParameterGroups: | |
- Label: | |
default: Stack Variables | |
Parameters: | |
- Environment | |
- Label: |
package controllers | |
import play.api.Play | |
import play.api.mvc.Action | |
import play.api.mvc.AnyContent | |
import com.google.inject.Inject | |
import play.api.http.HttpErrorHandler | |
class ConfigurableAssets @Inject() (playConfig: play.api.Configuration, errorHandler: HttpErrorHandler) extends AssetsBuilder(errorHandler) { |
#!/bin/bash | |
## The drive will need to be named "USB" | |
## It should be over 8GB large | |
sudo /Applications/Install\ macOS\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/USB --applicationpath /Applications/Install\ macOS\ Sierra.app --nointeraction |
type FilterOperator = 'AND' | 'OR'; | |
type FiltersBy<T> = { | |
[K in keyof T]?: (value: T[K]) => boolean; | |
}; | |
/** | |
* Factory function that creates a specialized function to filter | |
* arrays, by validating all filters (AND operator), | |
* or validating just one of the filters (OR operator). | |
* @param operator Method to validate all filters: AND, OR |
package org.gradle.training | |
import org.gradle.api.tasks.Input | |
import org.gradle.api.tasks.OutputDirectory | |
import org.gradle.api.tasks.TaskAction | |
import org.gradle.api.DefaultTask | |
import org.gradle.util.GFileUtils | |
import org.gradle.api.artifacts.Configuration | |
import org.gradle.api.artifacts.component.ModuleComponentIdentifier | |
import org.gradle.maven.MavenModule |
package org.cakesolutions.spark | |
import org.apache.spark.SparkConf | |
import org.apache.spark.api.java.JavaSparkContext | |
import scala.Tuple2 | |
fun main(args: Array<String>) { | |
val inputFile = args[0] | |
val outputFile = args[1] |