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 sys | |
| from PyQt6.QtWidgets import ( | |
| QApplication, | |
| QCheckBox, | |
| QLabel, | |
| QLineEdit, | |
| QRadioButton, ) | |
| from PyQt6.QtWidgets import QHBoxLayout, QFormLayout, QStackedWidget, QListWidget, QWidget |
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
| """ | |
| Scheme Interpreter in Python | |
| (c) Peter Norvig, 2010; See http://norvig.com/lispy2.html | |
| Fixes to run on Python 3 and minor style tweaks from Warren Henning, 2022 <[email protected]> | |
| """ | |
| import cmath | |
| import math |
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
| [ | |
| // Evaluate | |
| {"keys": ["ctrl+enter"], | |
| "command": "clojure_sublimed_eval", | |
| "context": [{"key": "selector", "operator": "equal", "operand": "source.clojure"}]}, | |
| // Evaluate Buffer | |
| {"keys": ["ctrl+b"], | |
| "command": "clojure_sublimed_eval_buffer", | |
| "context": [{"key": "selector", "operator": "equal", "operand": "source.clojure"}]}, |
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
| ;; http://www.sbcl.org/platform-table.html | |
| ;; add C:\Program Files\Steel Bank Common Lisp\ to path | |
| ;; https://github.com/slime/slime#quick-setup-instructions | |
| ;; if you get a file not found error while installing, run M-x package-refresh-contents | |
| ;; this file goes in C:\<user>\AppData\Roaming\.emacs or just ~/.emacs in the app itself | |
| (require 'package) | |
| (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
| ;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities` | |
| ;; and `package-pinned-packages`. Most users will not need or want to do this. |
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
| Failed to build network-2.8.0.1. The failure occurred during the configure | |
| step. | |
| Build log ( | |
| C:\Users\warre\AppData\Roaming\cabal\logs\ghc-8.8.1\network-2.8.0.1-c11bae4bd2c01b0552b41fcaaf67516daa169c36.log | |
| ): | |
| Configuring network-2.8.0.1... | |
| cabal.exe: The package has a './configure' script. If you are on Windows, This | |
| requires a Unix compatibility toolchain such as MinGW+MSYS or Cygwin. If you | |
| are not on Windows, ensure that an 'sh' command is discoverable in your path. |
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 <gtk/gtk.h> | |
| /* to compile in ubuntu: | |
| * | |
| * sudo apt install libgtk2.0-dev | |
| * | |
| * in bash: gcc `pkg-config --cflags --libs gtk+-2.0` learning_gtk.c -o learning_gtk | |
| * in fish shell: gcc learning_gtk.c (pkg_config --cflags --libs gtk+-2.0 | perl -pe | |
| * 's/\s+/\n/g) -o learning_gtk | |
| */ |
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
| using System; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| namespace csharpdynamiccompilationtest | |
| { | |
| public class RegularClass | |
| { | |
| public static int Get(int[] i) { return i.Sum() + Program.rng.Next(1, 5); } | |
| } |
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 <windows.h> | |
| #include <shellscalingapi.h> | |
| int CALLBACK | |
| WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) | |
| { | |
| // https://docs.microsoft.com/en-us/windows/win32/api/shellscalingapi/nf-shellscalingapi-setprocessdpiawareness | |
| SetProcessDpiAwareness(PROCESS_PER_MONITOR_DPI_AWARE); | |
| MessageBoxA(0, "Message box text!", "Message Box information", MB_OK|MB_ICONINFORMATION); |
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
| filetype plugin indent on | |
| syntax on | |
| set enc=utf-8 | |
| set fenc=utf-8 | |
| set termencoding=utf-8 | |
| set nocompatible | |
| set autoindent | |
| set smartindent | |
| set tabstop=4 | |
| set shiftwidth=4 |
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
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "strconv" | |
| "time" | |
| "github.com/gorilla/mux" |