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
# this part is executed when you load it | |
a = 0 | |
while a < 10: | |
a++ | |
# now we could have executed whatever here, read a file | |
# reboot the system, not so nice and the reason you | |
# should read a dependency to make sure you are not | |
# going to kill yourself |
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
remove armv8 from starlight multilib | |
--- | |
--- a/gcc/config/arm/t-rmprofile | |
+++ b/gcc/config/arm/t-rmprofile | |
@@ -27,15 +27,13 @@ | |
# Arch and FPU variants to build libraries with | |
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
Lemma correctness : (forall (gamma : environment) (t : term) (tt : type), | |
has_type gamma t tt -> (type_check gamma t) = Some({ tt | has_type gamma t tt})). |
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
{ | |
"type": "DeviceConfiguration", | |
"general": {}, | |
"interfaces": [ | |
{ | |
"type": "wireless", | |
"name": "wlan0", | |
"wireless": { | |
"radio": "ath0", |
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
% compute the n-th order stirling numbers | |
% of second species for n>= 2 | |
% | |
% octave has a hard limit on recursion; 256 calls are the most | |
% you can make without raising an error | |
% set max_recursion_depth to your value | |
function x = stirling_recursive (n) | |
if (n == 2) | |
x =[1,1]; | |
return; |
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
using Gst; | |
public int main(string args[]) | |
{ | |
Gst.init(ref args); | |
Gst.Element screen = Gst.ElementFactory.make ("ximagesrc", "source"); | |
Gst.Element color_convert = Gst.ElementFactory.make ("videoconvert", "convert"); | |
Gst.Element encoder = Gst.ElementFactory.make ("x264enc","encoder"); | |
Gst.Element flv_muxer = Gst.ElementFactory.make ("flvmux", "muxer"); |