You need to install js-yaml-cli first :
npm install -g js-yaml-cli
Example :
> ./check_gitlab_ci.sh
{"status":"invalid","errors":["variables config should be a hash of key value pairs"]}%
PRD-63116-001/nPRD-63116-003/nPRD-63116-005/nPRD-63116-007/nPRD-63116-009/nPRD-63116-010/nPRD-63116-013/nPRD-63116-017/nPRD-63116-020/nPRD-63116-021/nPRD-63116-027/nPRD-63116-033/nPRD-63117-003/nPRD-63117-011/nPRD-63117-015/nPRD-63117-019/nPRD-63117-023/nPRD-63117-025/nPRD-63117-027/nPRD-63117-028/nPRD-63117-029/nPRD-63117-041/nPRD-63117-703/nPRD-63117-704/nPRD-63118-001/nPRD-63734-001/nPRD-63734-002/nPRD-63763-001/nPRD-63764-001/n |
You need to install js-yaml-cli first :
npm install -g js-yaml-cli
Example :
> ./check_gitlab_ci.sh
{"status":"invalid","errors":["variables config should be a hash of key value pairs"]}%
Hi All! | |
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
App Description: | |
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
package demo; | |
public interface Node {} |
#!/usr/bin/env python3 | |
import gzip | |
import os | |
import shutil | |
import subprocess | |
import tarfile | |
import zipfile | |
from defusedxml import ElementTree | |
import yaml |
The below code is the configuration for the Microsoft Visual Code tasks which will enable you to compile and run C program
Cmd + Shift + P
Configure task
( A task.json file will be created for that project )Simple press Cmd + Shift + B
to compile and run.
Note: Make sure you select the tab having C program as below tasks run on active tab in VS Code.
public static final byte[] intToByteArray(int value) { | |
return new byte[] { | |
(byte)(value >>> 24), | |
(byte)(value >>> 16), | |
(byte)(value >>> 8), | |
(byte)value}; | |
} | |
public static byte[] intToByteArray(int value) { |
import org.gradle.api.internal.artifacts.repositories.layout.IvyRepositoryLayout | |
import java.io.InputStream | |
import java.util.zip.* | |
object Attributes { | |
val artifactType = Attribute.of("artifactType", String::class.java) | |
val zipType = "zip" | |
val jars = "jars" | |
} |
import arrow.InstanceParametrizedType | |
import arrow.instance | |
import retrofit2.Converter | |
import okhttp3.ResponseBody | |
import helios.core.Json | |
import retrofit2.Retrofit | |
import java.lang.reflect.Type | |
import okhttp3.RequestBody | |
import helios.typeclasses.Encoder | |
import okhttp3.MediaType |