A word of warning. This will be slow and buggy. Do not attempt to use this as a daily driver.
- Windows 10 or 11 (x64)
- Download QEMU
- Download ChromeOS Flex (remember to download the file; do NOT use Chromebook Recovery Utility)
A word of warning. This will be slow and buggy. Do not attempt to use this as a daily driver.
$gtk.reset | |
class TetrisGame | |
def initialize args | |
@args = args | |
@next_piece = nil | |
@next_move = 30 | |
@score = 0 | |
@gameover = false | |
@grid_w = 10 |
#!/bin/bash | |
#2018 - Zylla - ([email protected]) | |
#Format usb flash drive as sdcard for the WiFi Pineapple Nano | |
#Source https://forums.hak5.org/topic/39096-mana-attack-for-the-pineapple/?do=findComment&comment=303054 | |
#You can also manually partition your usb flash drive on your computer | |
[[ -f /tmp/usb_format.progress ]] && { | |
exit 0 | |
} |
/*<?php | |
//*/public class PhpJava { public static void main(String[] args) { System.out.printf("/*%s", | |
//\u000A\u002F\u002A | |
class PhpJava { | |
static function main() { | |
echo(//\u000A\u002A\u002F | |
"Hello World!"); | |
}} | |
//\u000A\u002F\u002A | |
PhpJava::main(); |
echo Converting $1 | |
mkdir -p res/drawable-mdpi | |
mkdir -p res/drawable-hdpi | |
mkdir -p res/drawable-xhdpi | |
mkdir -p res/drawable-xxhdpi | |
m=48 | |
h=72 | |
x=96 |
1: 日 | |
2: 一 | |
3: 国 | |
4: 会 | |
5: 人 | |
6: 年 | |
7: 大 | |
8: 十 | |
9: 二 | |
10: 本 |
def installAll = tasks.create('installAll') | |
installAll.description = 'Install all applications.' | |
android.applicationVariants.all { variant -> | |
installAll.dependsOn(variant.install) | |
// Ensure we end up in the same group as the other install tasks. | |
installAll.group = variant.install.group | |
} |
package me.tatarka.nofragment.view; | |
import android.support.v4.util.SparseArrayCompat; | |
import android.support.v4.view.PagerAdapter; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import java.util.ArrayList; | |
import java.util.List; |
/* | |
* Copyright (C) 2014 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |