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
template | count | |
---|---|---|
m | 38 | |
w | 4 | |
l | 2 | |
lb | 1 |
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
{ | |
"hourly":[ | |
{ | |
"time":"00:00", | |
"conso":111 | |
}, | |
{ | |
"time":"00:30", | |
"conso":113 | |
}, |
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 python | |
import os | |
import xml.etree.ElementTree as ET | |
def addMessage(f, text, comment=''): | |
text = text.replace('"', r'\"') | |
if (comment): | |
f.write('QT_TRANSLATE_NOOP3("TourXML", "' + text.encode('utf8') + '", "' + comment.encode('utf8') + '"),\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
(function() { | |
function readAll() { | |
const links = document.querySelectorAll("div.forum__topic-status--new + div.forum__title div.forum__name a") | |
for (const a of links) { | |
console.log(a.href) | |
var sArray = a.href.split("/") | |
var nid = sArray[sArray.length - 1]; |
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
//============================================================================= | |
// MuseScore | |
// Music Composition & Notation | |
// | |
// Copyright (C) 2018 Nicolas Froment | |
// | |
// This program is free software; you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License version 2 | |
// as published by the Free Software Foundation and appearing in | |
// the file LICENCE.GPL |
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
SvgPaintEngine() : QPaintEngine(svgEngineFeatures()), | |
stateStream(&stateString) | |
{ | |
d_ptr = new SvgPaintEnginePrivate; | |
} |
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
targetOS=macosx-x86_64 | |
:git_build | |
:generateProgramId | |
:compileJava UP-TO-DATE | |
:processResources UP-TO-DATE | |
:classes UP-TO-DATE | |
:compileTestJava UP-TO-DATE | |
:processTestResources NO-SOURCE | |
:testClasses UP-TO-DATE | |
:test UP-TO-DATE |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<mnx> | |
<head> | |
<identification> | |
<title>Hot Cross Buns</title> | |
</identification> | |
</head> | |
<score content="cwmn"> | |
<part> | |
<part-name>Melody</part-name> |
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
accidentalBakiyeFlat | |
accidentalBuyukMucennebFlat | |
accidentalBuyukMucennebSharp | |
accidentalDoubleFlat | |
accidentalDoubleSharp | |
accidentalFlat | |
accidentalKomaSharp | |
accidentalKoron | |
accidentalKucukMucennebSharp | |
accidentalNatural |
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 fontforge #Load the module | |
import json | |
import shutil | |
import os | |
source = "mscore" | |
#source = "MScoreText" | |
fontFile = source + ".sfd" | |
tmpFile = source + "tmp.sfd" | |
outFile = "out/" + source + ".ttf" |
NewerOlder