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
$ diff runtime/phobos/std/regex.d ../phobos/std/regex.d | |
184c184 | |
< $(WEB http://unicode.org/reports/tr18/, UTS 18). Specifically: | |
--- | |
> $(WEB unicode.org/reports/tr18/, UTS 18). Specifically: | |
5560a5561,5564 | |
> static if(direction == OneShot.Fwd) | |
> startPc = startPc; | |
> else | |
> startPc = cast(uint)re.ir.length-IRL!(IR.LookbehindEnd); |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use List::MoreUtils qw(uniq); | |
use Data::Dumper::Names; | |
my @tab = (["12","25","2","18","9","25","18","30","30","12","30","30","18","12"],["154","12","56","8","22","88","74","12","56","32","88","88","56","12","12","56"]); | |
print "=============Before=============\n"; |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use 5.010; | |
use List::MoreUtils qw(uniq); | |
#use Data::Dumper::Names; | |
use Benchmark qw(:all) ; | |
sub test1 { | |
my @tab = (["12","25","2","18","9","25","18","30","30","12","30","30","18","12"],["154","12","56","8","22","88","74","12","56","32","88","88","56","12","12","56"]); |
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
#!/usrbin/env python | |
def getMaxRowLength( matrix ): | |
maxLen = 0 | |
for i in matrix: | |
if len(i) > maxLen: | |
maxLen = len(i) | |
return maxLen | |
def computeDiag( matrix, i , j ): |
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
// ==UserScript== | |
// @name CDSIM | |
// @description CENTER DRIVEN's Combat Simulator and Combat Stats Fork | |
// @author XDAAST.XDaast.daltondaast.KingCrimson | Thanks to Topper42, Eferz98, KRS_L, PythEch, MrHIDEn, Panavia2, Deyhak, CodeEcho, Matthias Fuchs, Enceladus, TheLuminary, Da Xue, Quor, WildKatana, Peluski17, Eistee | |
// @version 5.2 | |
// @namespace http*://*.alliances.commandandconquer.com/*/index.aspx* | |
// @include http*://*.alliances.commandandconquer.com/*/index.aspx* | |
// @icon https://www.openmerchantaccount.com/img/cdCNCTALOGObigger.png | |
// @updateURL https://userscripts.org/scripts/source/173566.meta.js | |
// @downloadURL https://userscripts.org/scripts/source/173566.user.js |
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
#!/usr/bin/env python3 | |
import sqlite3 | |
import random | |
import string | |
from uuid import uuid4 | |
from typing import List | |
from statistics import mean | |
def random_str(): | |
str_length = random.randint(40,50) |
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
#!/usr/bin/env python3 | |
import pyarrow.parquet as pq | |
import pyarrow as pa | |
import random | |
import string | |
from uuid import uuid4 | |
def random_str(): | |
str_length = random.randint(40,50) | |
return ''.join(random.choice(string.ascii_lowercase) for _ in range(str_length)) |
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
#!/usr/bin/env python3 | |
import sqlite3 | |
import random | |
import string | |
from uuid import uuid4 | |
from typing import List | |
from statistics import mean | |
def random_str(): | |
str_length = random.randint(40,50) |
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
#!/usr/bin/env python3 | |
import sqlite3 | |
import random | |
import string | |
from uuid import uuid4 | |
from typing import List, Tuple | |
from statistics import mean | |
import pyarrow as pa | |
import pyarrow.parquet as pq |
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
@startuml | |
App -> MyPluginInterface : use specialized defined API | |
MyPluginInterface -> MyPlugin : call load_from_directory | |
MyPlugin -> "abi_stable::library::RootModule" : call load_from_directory | |
"abi_stable::library::RootModule" -> MysharedLib : load .so file | |
@enduml |