- Copy content of
vsix-bookmarklet, create a bookmark in your browser. - Navigate to the web page of the VS Code extension you want to install.
- Click the bookmark you just created, then click the download button.

- After download finished, rename the file extension to
*.vsix. - In VS Code, select Install from VSIX... in the extension context menu.

| #!/usr/bin/env sh | |
| if [ -d rootfs ] | |
| then | |
| rm -rf rootfs/ | |
| fi | |
| mkdir rootfs | |
| mkdir rootfs/bin | |
| mkdir rootfs/etc |
| From 5978020202a4b50eedb64fb9bff1018644ef1a81 Mon Sep 17 00:00:00 2001 | |
| From: Taylor Berlioz <[email protected]> | |
| Date: Thu, 30 Jun 2022 12:12:14 -0700 | |
| Subject: [PATCH 2/2] do not depend on gcc runtime | |
| Signed-off-by: Taylor Berlioz <[email protected]> | |
| --- | |
| Makeconfig | 21 +++++++++++++++------ | |
| Makerules | 2 +- | |
| config.make.in | 1 + |
| #!/bin/bash | |
| # script that creates clang/llvm cross toolchain for aarch64 android target | |
| # compile a hello world program that runs on AOSP Android: | |
| # test with: adb push hello /data/cache && adb shell /data/cache/hello | |
| # GCC: | |
| # C: aarch64-linux-android-gcc hello.c -o hello -pie | |
| # C++: aarch64-linux-android-g++ hello.cc -o hello -pie -fPIC -static-libgcc \ | |
| # -nostdlib -L/usr/local/aarch64-linux-android/lib -lc++ -lc -nostdinc++ \ | |
| # -I/usr/local/aarch64-linux-android/include/c++/v1 -std=c++11 | |
| # Clang/LLVM: |
| MIT License | |
| Copyright (c) 2021 Daniel Ethridge | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> | |
| <!-- Templates which operate on directed graphs --> | |
| <xsl:import href="util-map.xsl"/> | |
| <!-- | |
| Simple breadth-first search implementation to return a tree from a starting node | |
| --> | |
| <xsl:template name="generate-paths"> |
I will maybe someday get around to dusting off my C and making these changes myself unless someone else does it first.
Imagine a long-running development branch periodically merges from master. The
git log --graph --all --topo-order is not as simple as it could be, as of git version 1.7.10.4.
It doesn't seem like a big deal in this example, but when you're trying to follow the history trails in ASCII and you've got several different branches displayed at once, it gets difficult quickly.
| /** | |
| * Lockfree is a set of lockfree containers for Linux and Linux kernel | |
| * Copyright (C) <2017> Arkady Miasnikov | |
| * | |
| * 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 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, |
If you, like me, resent every dollar spent on commercial PDF tools,
you might want to know how to change the text content of a PDF without
having to pay for Adobe Acrobat or another PDF tool. I didn't see an
obvious open-source tool that lets you dig into PDF internals, but I
did discover a few useful facts about how PDFs are structured that
I think may prove useful to others (or myself) in the future. They
are recorded here. They are surely not universally applicable --
the PDF standard is truly Byzantine -- but they worked for my case.
| #!/bin/bash | |
| # Original script came from; | |
| # http://domseichter.blogspot.com/2008/02/visualize-dependencies-of-binaries-and.html | |
| # Written by Dominik Seichter and added patch from pfree | |
| # analyze a given file on its | |
| # dependecies using ldd and write | |
| # the results to a given temporary file | |
| # |