This file contains hidden or 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
| Raspberry Pi Distributions Username Password | |
| Raspberry Pi OS pi raspberry | |
| DietPi root dietpi | |
| Lakka Linux root root | |
| Kali Linux root toor | |
| OpenELEC root openelec | |
| Arch Linux ARM root root | |
| Debian pi raspberry | |
| LibreELEC root libreelec | |
| OSMC osmc osmc |
This file contains hidden or 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
| // https://www.instagram.com/USER | |
| const observer = new MutationObserver((mutations) => window.scrollTo(0, document.body.scrollHeight)); | |
| const profileNode = document.querySelector('main'); | |
| if (profileNode) { | |
| observer.observe(profileNode, { childList: true, subtree: true }); | |
| window.scrollTo(0, document.body.scrollHeight); | |
| } |
This file contains hidden or 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
| # frozen_string_literal: true | |
| source 'https://rubygems.org' | |
| gem 'informers', '~> 1.2' | |
| gem 'pry', '~> 0.15.2', group: :development | |
| gem 'solargraph', '~> 0.55.2', group: :development |
- Install
msys2(because we needmingw64,gccandlibws2_32.a) - Open
msys2ormingw64and runpacman -S mingw64/mingw-w64-x86_64-mruby - Get MRuby and extract the folder
- Run
makeinside the foldermruby-3.3.0, there will be a new folder called/buildafter the compilation, we need the file at/build/host/lib/libmruby.a - Compile using the following command
gcc main.c -I"mruby-3.3.0/include" "mruby-3.3.0/build/host/lib/libmruby.a" "C:\msys64\mingw64\lib\libws2_32.a" -lm -o mainor substitue"C:\msys64\mingw64\lib\libws2_32.a"with-lws2_32 - Run the compiled binary
main.exe
This file contains hidden or 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
| arr = [1, 2, 3] | |
| # => [1, 2, 3] | |
| def power_set(arr) | |
| result = [[]] | |
| arr.each do |element| | |
| result += result.map do |num| | |
| num + [element] | |
| end |
NewerOlder