bitbake -vDDD your-recipe
bitbake -s
;;; hl-block.el --- Highlight logical block at point -*- lexical-binding: t -*- | |
;; Copyright (C) 2025 Nicolas P. Rougier | |
;; Maintainer: Nicolas P. Rougier <[email protected]> | |
;; Package-Requires: ((emacs "27.1")) | |
;; Keywords: convenience | |
;; This file is not part of GNU Emacs. |
#!/usr/bin/python | |
""" | |
Generate MISRA C guidelines (Dirs and Rules) from pdf for cppcheck. | |
Arguments: | |
filename - MISRA pdf file | |
Example: | |
python cppcheck_misra_parse_pdf.py "/path/to/MISRA_C_2023.pdf" | |
---------------------------------------------------------------------------------------------------- |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
# | |
# This is a little script to populate Firefox Sync with | |
# fake password records. Use it like so: | |
# | |
# $> pip install PyFxA syncclient cryptography | |
# $> python ./upload_fake_passwords.py 20 | |
# | |
# It will prompt for your Firefox Account email address and | |
# password, generate and upload 20 fake password records, then | |
# sync down and print all password records stored in sync. |
“Search Term”
OR
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Copyright 2016 Massachusetts Institute of Technology | |
"""Extract images from a rosbag. | |
""" | |
import os | |
import argparse |
#!/bin/bash | |
# === INFO === | |
# NoVPN | |
# Description: Bypass VPN tunnel for applications run through this tool. | |
VERSION="3.0.0" | |
# Author: KrisWebDev | |
# Requirements: Linux with kernel > 2.6.4 (released in 2008). | |
# This version is tested on Ubuntu 14.04 and 19.10 with bash. | |
# Main dependencies are automatically installed. |
(defun get-ip-address (&optional dev) | |
"Get the IP-address for device DEV (default: eth0) of the current machine." | |
(let ((dev (if dev dev "eth0"))) | |
(format-network-address (car (network-interface-info dev)) t))) |