MD5: 59bab8f71f8c096cd3f72cd73851515d
Rename it to: Sublime Text
Make it executable with: chmod u+x Sublime\ Text
| def previous_current_next(iterable): | |
| """Make an iterator that yields an (previous, current, next) tuple per element. | |
| Returns None if the value does not make sense (i.e. previous before | |
| first and next after last). | |
| """ | |
| iterable=iter(iterable) | |
| prv = None | |
| cur = iterable.next() | |
| try: |
| #pragma once | |
| #include <cstdint> | |
| #include <vector> | |
| namespace tiffy { | |
| template<typename T, typename ...Targs> | |
| std::unique_ptr<T> make_unique(Targs&& ...args) { | |
| return std::unique_ptr<T>(new T(std::forward<Targs>(args)...)); |
| #!/bin/sh | |
| # | |
| # msys2-sshd-setup.sh — configure sshd on MSYS2 and run it as a Windows service | |
| # | |
| # Please report issues and/or improvements to Sam Hocevar <sam@hocevar.net> | |
| # | |
| # Prerequisites: | |
| # — MSYS2 itself: http://sourceforge.net/projects/msys2/ | |
| # — admin tools: pacman -S openssh cygrunsrv mingw-w64-x86_64-editrights | |
| # |
| #!/usr/bin/env bash | |
| rep() { | |
| i=$1 | |
| data=$2 | |
| ## run the replicate .... | |
| } | |
| # make the files | |
| START=$(mktemp -t start-XXXX) ## signals the workers are starting |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Outputs some information on CUDA-enabled devices on your computer, | |
| including current memory usage. | |
| It's a port of https://gist.github.com/f0k/0d6431e3faa60bffc788f8b4daa029b1 | |
| from C to Python with ctypes, so it can run without compiling anything. Note | |
| that this is a direct translation with no attempt to make the code Pythonic. |
| ----- BEGIN LICENSE ----- | |
| eldon | |
| Single User License | |
| EA7E-1122628 | |
| C0360740 20724B8A 30420C09 6D7E046F | |
| 3F5D5FBB 17EF95DA 2BA7BB27 CCB14947 | |
| 27A316BE 8BCF4BC0 252FB8FF FD97DF71 | |
| B11A1DA9 F7119CA0 31984BB9 7D71700C | |
| 2C728BF8 B952E5F5 B941FF64 6D7979DA | |
| B8EB32F8 8D415F8E F16FE657 A35381CC |
| - project directory in /storage/emulated/0/Download/projects/... | |
| - sshd is running in termux and storage mounted | |
| - files are edited with DroidEdit through ssh: ~/storage/downloads/projects/... | |
| - external Löve command: | |
| cd ${path} && zip -r test.love * -x test.love && am start -t org.love2d.android -a android.intent.action.VIEW -d "file://${path}/test.love" |