- It's extremely slow.
- https://www.youtube.com/watch?v=GC-0tCy4P1U
- It's so bad it now displays this message in the text window before the actual text:
- When in debugging mode, the method details dialog that appears when you hover over the method name doesn't work.
- The performance profiler is, ironically, extremely slow.
- Auto Apply Oils-625-v1-31-2-1594325041.zip
- AutoLoot AIO 3.0 for Patch 1.31-1996-3-0-5.7z
- Brothers In Arms Ultimate Bug Fix Collaboration-5752-2-2-1629241468.7z
- Fast Stash Menu-3931-1-0-1566500962.rar
- modAxiiFix_1.0.zip-4493-1-0-1584199298.zip
- modMapQuestObjectives-1.30-v10.zip-943-1-30-10.zip
- Over 9000 - Weight limit mod v1.31-3-1-31.zip
- Realistic Weather 2.1-2084-2-1.rar
This file contains 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
#include <stdio.h> | |
#include <stdint.h> | |
typedef struct { | |
char a; | |
long b; | |
char c; | |
} Struct; | |
int main(int argc, char const *argv[]) |
This file contains 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
#include <stdio.h> | |
void dump(unsigned int i) { | |
printf("%#08x = %d\n", i, i); | |
} | |
/* Declarations of functions implementing operations bis and bic */ | |
int bis(int x, int m) { | |
return x | m; | |
} |
This file contains 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
fn foo1() { | |
let foo: Option<i32> = Some(1234); | |
println!("{}", foo.unwrap_or(4321)); | |
let bar = foo; | |
} | |
fn foo2() { | |
let foo: Option<String> = Some("1234".to_string()); | |
println!("{}", foo.unwrap_or("4321".to_string())); |
This file contains 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
const std = @import("std"); | |
const fs = std.fs; | |
const warn = std.debug.warn; | |
pub fn main() !void { | |
const cwd = try fs.cwd().openDir(".", fs.Dir.OpenDirOptions{ | |
.iterate = true, | |
}); | |
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator); |
This file contains 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
const std = @import("std"); | |
const fs = std.fs; | |
const warn = std.debug.warn; | |
pub fn main() !void { | |
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator); | |
defer arena.deinit(); | |
const allocator = &arena.allocator; | |
const cwd = try fs.cwd().openDir(".", fs.Dir.OpenDirOptions{ |
This file contains 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
import os | |
import streams | |
import system | |
import tables | |
var data: array[30_000, byte] | |
var dataPointer: int = 0 | |
var instructions: seq[char] | |
var instructionPointer: int = 0 |
This file contains 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
static void SetObject(object o) { } | |
void Main() | |
{ | |
// Assignment compatibility. | |
string str = "test"; | |
// An object of a more derived type is assigned to an object of a less derived type. | |
object obj = str; | |
// Covariance. |
NewerOlder