Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Search Gists
Sign in Sign up

Instantly share code, notes, and snippets.

Discover gists

@RyanLua
RyanLua /fritzing.md
Last activeJuly 4, 2025 20:35
Free download of Fritzing using the official download links

Important

You need to be logged intoFritzing for these download links to work.

Works by redirecting to the official release download. Visiting the links in the browser directly won't work and needs to be a redirect from a website such as Fritzing or GitHub.

Steps

  1. Sign up or log intohttps://fritzing.org
@noamtamim
noamtamim /README.md
Last activeJuly 4, 2025 20:35
Markdown with PlantUML

PlantUML is a really awesome way to create diagrams by writing code instead of drawing and dragging visual elements. Markdown is a really nice documentation tool.

Here's how I combine the two, to create docs with embedded diagrams.

Step 0: Setup

Get the command-line PlantUML fromthe download page or your relevant package manager.

@qnblackcat
qnblackcat /README.md
Last activeJuly 4, 2025 20:34
Downloading older versions of iOS apps using ipatool

👉ipatool is anopen-source tool developed byMajd, a highly trustworthy and talented developer in the iOS community. Recently, ipatool got a significant update that allows users to easily download older versions of iOS apps onmacOS/Windows/Linux!.

👉 Sinceipatool doesn't have a graphical user interface (GUI), some of you might think it's tricky to use. But trust me, it's not! Here's a simple guide if you're still a bit scared of the terminal. (Tbh, everything in this *guide can be found on ipatool's repo)

👉Note: You need to log into your Apple ID via ipatool for the tool to work. Unless you prioritize security above all, you can trust logging into your Apple account with ipatool. As explained earlier, it’s an open-source tool developed by a well-known and reliable developer, minimizing security risks to the lowest level.

@Jhonie4Herrera
Jhonie4Herrera /untitled3.ipynb
Last activeJuly 4, 2025 20:33
Untitled3.ipynb
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dailson-igo
dailson-igo /gist:17ab594ebd40078219a2e72096609bd2
Last activeJuly 4, 2025 20:32
Complementos e Configurações para Usar Ruby on Rails com o VScode

TODO: Separar talvez em 3 partes: 1) entre configuração mínima; 2) complementos que ajudam ; e 3) debug

Instalar o Ruby on Rails com o RBEnv

https://github.com/rbenv/rbenv

Pacotes Necessários para Debian e Derivados

$ sudo apt-get install git-core zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev nodejs yarn libpq-dev
@cgonzalezdai
cgonzalezdai /como-subir-un-proyecto-local-a-github.md
Last activeJuly 4, 2025 20:32
Como subir un proyecto local a github

desde la web de github

Creamos un nuevo repositorio enhttps://github.com. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar.Le damos acrear repositorio y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto.

desde la terminal del equipo donde esta el proyecto que queremos subir a github

Nos vamos a la carpeta del proyecto y ejecutamos estos comandos.

git initgit add .
@aarondewindt
aarondewindt /adt.py
Last activeJuly 4, 2025 20:29
Experimental Algebraic Data Types implementation in Python 3.10
fromdataclassesimportdataclass
classADTMeta(type):
def__new__(mcs,name,bases,namespace:dict):
adtc_class=super().__new__(mcs,name,bases,namespace)
if"__is_adt_variant__"innamespace:
ifnamespace["__is_adt_variant__"]:
returnadtc_class
@jrddp
jrddp /open_airplay_menu.applescript
CreatedAugust 11, 2024 19:46
Open Airplay Device Applescript
-- A click event works normally if screen mirroring is already in main menu bar
-- but the icon may not be in the menu bar if it hasn't been placed there already.
-- So we check if the Screen Mirroring item is in the menu bar and click it there
-- if not we go through the Control Center drop down.
-- pass name of airplay device with commandline argument to autoselect that device.
-- if nothing is passed it'll just open the Screen Mirroring menu without selecting a device
use framework"Foundation"
use scripting additions
@karl-zylinski
karl-zylinski /tracking_alloc_example.odin
CreatedMarch 3, 2024 20:26
Example of how to setup tracking allocator
// from https://odin-lang.org/docs/overview/#when-statements, see end of that section
package main
import"core:fmt"
import"core:mem"
main ::proc() {
when ODIN_DEBUG {
track: mem.Tracking_Allocator
#!/usr/bin/env bash
set -euo pipefail
# Install system dependencies
apt-get update -qq
apt-get install -y -qq --no-install-recommends \
php-cli \
php-mbstring \
php-xml \
php-curl \
NewerOlder

[8]ページ先頭

©2009-2025 Movatter.jp