This file contains hidden or 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
| interface MonadicMapFunction<T, R> { | |
| R apply(T arg); | |
| } | |
| interface MonadicFlatMapFunction<T, R> { | |
| Monad<R> apply(T arg); | |
| } | |
| record Monad<T>(T value) { | |
| <R> Monad<R> map(MonadicMapFunction<T, R> functor) { |
This file contains hidden or 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
| DEBUG:root:trying to find VC 14.1 | |
| DEBUG:root:find_vc_dir(): found VC in registry: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC | |
| DEBUG:root:found VC 14.1 | |
| DEBUG:root:trying to find VC 14.0 | |
| DEBUG:root:find_vc_dir(): found VC in registry: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\ | |
| DEBUG:root:found VC 14.0 | |
| DEBUG:root:trying to find VC 14.0Exp | |
| DEBUG:root:find_vc_dir(): no VC registry key 'Microsoft\\VCExpress\\14.0\\Setup\\VC\\ProductDir' | |
| DEBUG:root:find_vc_pdir return None for ver 14.0Exp | |
| DEBUG:root:trying to find VC 12.0 |
This file contains hidden or 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
| SELECT * | |
| FROM playoff_series | |
| WHERE user_pk = :userpk | |
| AND season_n = :season | |
| AND ( | |
| top_seed_pk = :club_pk OR low_seed_pk = :club_pk | |
| ) | |
| AND round_n = ( | |
| SELECT Max(round_n) | |
| FROM playoff_series |
This file contains hidden or 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
| class User(db.Model): | |
| id = db.Column(...) | |
| username = db.Column(...) | |
| session.query(User).filter(text("id<:value and name=:name")).params(value=224, name='fred').order_by(User.id).one() | |
| // Returns <User(name='fred', fullname='Fred Flinstone', password='blah')> |
This file contains hidden or 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
| sudo apt-get remove geany | |
| Reading package lists... Done | |
| Building dependency tree | |
| Reading state information... Done | |
| The following package was automatically installed and is no longer required: | |
| geany-common | |
| Use 'apt-get autoremove' to remove it. | |
| The following packages will be REMOVED: | |
| geany geany-plugin-scope geany-plugins-common | |
| 0 upgraded, 0 newly installed, 3 to remove and 0 not upgraded. |
This file contains hidden or 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
| if __name__ == '__main__': | |
| import time | |
| last_time = time.time() | |
| tick = 1 | |
| time_since_last_update = 0 | |
| while True: | |
| new_time = time.time() | |
| dt = new_time - last_time | |
| time_since_last_update += dt | |
| last_time = new_time |
This file contains hidden or 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
| var point_x = { | |
| coord_x : 0, | |
| coord_y : 0, | |
| PrintCoordinates : function() { | |
| console.log(this.coord_x, this.coord_y); | |
| } | |
| } |
This file contains hidden or 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 'dart:html'; | |
| add_my_div() { | |
| DivElement div = querySelector("#dumb-id"); | |
| div.text = "This is my div!"; | |
| DivElement div2 = new DivElement(); | |
| div2.text = "<b>This is my inner div!</b>"; | |
| div.children.add(div2); | |
| } |
This file contains hidden or 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
| SELECT to_char(d_pay, 'MM'), sum(n_sum) | |
| FROM payment | |
| WHERE to_char(d_pay, 'yyyy') = '2008' | |
| GROUP BY to_char(d_pay, 'MM') | |
| SELECT to_char(d_computation, 'MM'), sum(n_difference_hot + n_difference_cold) | |
| FROM computation | |
| GROUP BY to_char(d_computation, 'MM') | |
| ORDER BY to_char(d_computation, 'MM') |
This file contains hidden or 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 <iostream.h> | |
| // #include <vcl.h> | |
| #pragma hdrstop | |
| #include <stdio.h> | |
| // #include <windows.h> | |
| #include <time.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| // #include <list> |
NewerOlder