Skip to content

Instantly share code, notes, and snippets.

Pause Giant AI Experiments: An Open Letter
https://futureoflife.org/open-letter/pause-giant-ai-experiments/
I think this is a very resonable time to step back and come up find the best way forward.
I'd encourage other folks to sign. This is not an end to AI, it's simply a pause to re-evaluate what we want as society when it comes to AI.
@KW-M
KW-M / Unreal Engine 5 Installed Build Guide.md
Last active January 10, 2025 02:50
How to build Unreal Engine 5 source into an installed (AKA standalone, AKA rocket, AKA "just like" Unreal Engine from the Epic Games Launcher) editor build
  • This guide assumes you want to build the Unreal Engine 5 (UE5) editor from source in order to get a Windows Unreal Engine 5 Editor to share with a team or studio
  • This was writen with the absolute minimum build requirements for our team to avoid taking more disk space and compile time than needed - please modify to fit your needs.
  • Keep in mind that, as of writing, I have little experience with the Unreal build tools, I'm simply documenting what worked for me.
  • Also see this excellent blog post especially if you are building Unreal Engine 4 (UE4): https://www.edwardbeazer.com/unreal-installed-builds-rocket-buids/

Steps

  1. If you do not have it already, download git bash. https://gitforwindows.org/
  2. Get access to the unreal source repo by following this guide: https://www.unrealengine.com/en-US/ue4-on-github
  3. Install Visual Studio 2019 on the C:\ drive for UE5 (Visual Studio 2017 for ue4)
  • Make sure to install the desktop c++ components, windows sdk (current version should be selected by
(function highlight() {
console.log("working")
var wikiContentTextElement = document.getElementById("mw-content-text");
window.wordIndex = 0;
function textNodesUnder(node) {
var all = [];
for (node = node.firstChild; node; node = node.nextSibling) {
if (node.nodeType == 3) all.push(node);
else all = all.concat(textNodesUnder(node));
@KW-M
KW-M / Code.gs
Last active December 31, 2018 19:59
Read RSS Feed in Google Apps Script and insert into active google sheet
function execute() {
var url = "http://feeds.labnol.org/labnol"; //RSS Feed to parse
main(url);
}
function main(url) {
var ss = SpreadsheetApp.getActiveSheet();
var property = PropertiesService.getDocumentProperties();