Please note: See character.construction/emoji-categories for more up-to-date listings.
😀 😁 😂 🤣 😃 😄 😅 😆 😉 😊 😋 😎 😍 😘 🥰 😗 😙 😚
| function KickWd(){ | |
| if(!BTN1.read())E.kickWatchdog(); | |
| } | |
| var wdint=setInterval(KickWd,5000); // 5 secs | |
| E.enableWatchdog(20, false); // 20 secs | |
| E.kickWatchdog(); | |
| /* | |
| // MIT License (c) 2020 fanoush https://github.com/fanoush | |
| // see full license text at https://choosealicense.com/licenses/mit/ | |
| var SPI2 = E.compiledC(` |
| #!/bin/bash | |
| OBJDUMP="$DEVKITARM/bin/arm-none-eabi-objdump -D -bbinary -marmv4t -Mforce-thumb" | |
| OPTIONS="--start-address=$(($1)) --stop-address=$(($1 + $2))" | |
| $OBJDUMP $OPTIONS baserom.gba > baserom.dump | |
| $OBJDUMP $OPTIONS pokeruby.gba > pokeruby.dump | |
| diff baserom.dump pokeruby.dump |
Please note: See character.construction/emoji-categories for more up-to-date listings.
😀 😁 😂 🤣 😃 😄 😅 😆 😉 😊 😋 😎 😍 😘 🥰 😗 😙 😚
| #include <GLFW/glfw3.h> | |
| #include <yoga/Yoga.h> | |
| #include <stdlib.h> | |
| int main(void) | |
| { | |
| GLFWwindow* window; | |
| /* Initialize the library */ | |
| if (!glfwInit()) |
| /* | |
| * Copyright (C) 2016 Jeff Gilfelt. | |
| * | |
| * 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 |
| // Create an Array from an Array-like Object such as NodeList. | |
| function toArray(arrayLike) { | |
| return Array.prototype.slice.call(arrayLike); | |
| } | |
| // Create an Object from an Array of objects. | |
| function toObject(objects, keyName, valueName) { | |
| return objects.reduce(function(acc, obj) { | |
| acc[obj[keyName]] = obj[valueName]; | |
| return acc; |
| <?php | |
| // Clean argument values | |
| $phpStormRunner = null; | |
| $cleanedArgv = array(); | |
| foreach ($_SERVER['argv'] as $key => $value) { | |
| if (strpos($value, 'ide-phpunit.php') === false) { | |
| $cleanedArgv[] = $value; | |
| } else { | |
| $phpStormRunner = $value; | |
| } |
Edit the Apache2 plist file with whatever editor you like (example using vim):
$ sudo vim /System/Library/LaunchDaemons/org.apache.httpd.plist