This file contains 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 <stdio.h> | |
#include <stdlib.h> | |
#include "libexif/exif-data.h" | |
// Function to log messages | |
void log_message(const char *msg) { | |
printf("%s\n", msg); | |
} | |
// Function to print an Exif entry |
This file contains 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
FROM ubuntu:20.04 | |
WORKDIR /app | |
RUN apt clean && rm -rf /var/lib/apt/lists/* && apt update -o Acquire::CompressionTypes::Order::=gz | |
RUN apt -y install wget build-essential tar gcc | |
RUN wget https://dl.xpdfreader.com/old/xpdf-3.02.tar.gz | |
RUN tar -xvzf xpdf-3.02.tar.gz | |
RUN cd xpdf-3.02 && \ | |
./configure --prefix="/app/fuzzing_xpdf/install/" && \ | |
make && \ | |
make install |
This file contains 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
gitlab-rails runner -e production "puts Gitlab::CurrentSettings.current_application_settings.runners_registration_token" |
This file contains 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
function deleteWholeFoodsCart() { | |
var query = document.querySelectorAll("#sc-expanded-cart-localmarket input[value='Delete']") | |
if (query.length) { | |
query[0].click(); | |
} | |
if (query.length > 1) { | |
setTimeout(deleteWholeFoodsCart, 500); | |
} | |
else { | |
console.log('Finished'); |
This file contains 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
Dictionary<string, string> leaderboard_position = new Dictionary<string, string>(); | |
leaderboard_position.Add("type", "singleline"); | |
leaderboard_position.Add("value", GameManager.Instance.GetLeaderboardPostion()); | |
// Add to CIF (custom issue fields) key | |
Dictionary<string, object> cifDictionary = new Dictionary<string, object>(); | |
cifDictionary.Add("leaderboard_position", leaderboard_position); | |
Dictionary<string, object> configMap = new Dictionary<string, object>(); | |
configMap.Add("customIssueFields", cifDictionary); |
This file contains 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
// Customize with appropriate values for your game | |
Dictionary<string, string> userDetails = new Dictionary<string, string> | |
{ | |
{ "userId", "BestPlayerEver" }, | |
{ "userEmail", "[email protected]" }, | |
{ "userName", "Bob" } | |
}; | |
HelpshiftSdk.Login(userDetails); | |
BacktraceClient BacktraceClient = GameObject.Find("Backtrace").GetComponent<BacktraceClient>(); |
This file contains 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
#com-atlassian-confluence .page-metadata-modification-info { | |
display:none; | |
} |
This file contains 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
export TESTED_NS=tmobile | |
export TESTED_ENV=free | |
cat <<EOF | kubectl apply -f - && kubectl rollout status -n $TESTED_NS deployment/client --watch && kubectl logs -n $TESTED_NS deployment/client && kubectl delete -n $TESTED_NS deployment/client | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: client | |
namespace: $TESTED_NS | |
labels: | |
app: client |
This file contains 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 | |
# Extract cluster information to check compatibility with Alcide Support Matrix | |
printf "Extracting Cluster Information...\n" | |
# Check if kubectl is accessible | |
if ! command -v kubectl &> /dev/null | |
then | |
printf "ERROR: kubectl command cannot be found. Please install kubectl for running this utility \n" | |
exit 1 |
This file contains 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: client | |
namespace: alcide-demo | |
labels: | |
app: client | |
spec: | |
replicas: 1 | |
selector: |
NewerOlder