I hereby claim:
- I am kornelski on github.
- I am kornel (https://keybase.io/kornel) on keybase.
- I have a public key whose fingerprint is BE09 ABE0 B5C6 7596 9003 C20A AEBA DBD4 3DE5 5B2E
To claim this, I am signing this object:
| { scopeName = 'text.html.basic'; | |
| firstLineMatch = '<!DOCTYPE|<(?i:html)|<\?(?i:php)'; | |
| fileTypes = ( 'html', 'htm', 'shtml', 'xhtml', 'phtml', 'php', 'inc', 'tmpl', 'tpl', 'ctp' ); | |
| foldingStartMarker = '(?x) | |
| (<(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl)\b.*?> | |
| |<!--(?!.*--\s*>) | |
| |^<!--\ \#tminclude\ (?>.*?-->)$ | |
| |<\?(?:php)?.*\b(if|for(each)?|while)\b.+: | |
| |\{\{?(if|foreach|capture|literal|foreach|php|section|strip) | |
| |\{\s*($|\?>\s*$|//|/\*(.*\*/\s*$|(?!.*?\*/))) |
| gulp.task('css-browsersync', function() { | |
| return gulp.src(["*.scss"]) | |
| .pipe(sass().on('error', function(err) { | |
| console.error(err.message); | |
| browserSync.notify(err.message, 3000); // Display error in the browser | |
| this.emit('end'); // Prevent gulp from catching the error and exiting the watch process | |
| })) | |
| .pipe(gulp.dest("public/")) | |
| .pipe(browserSync.stream()); | |
| }); |
| FROM rust:1-slim-bullseye | |
| RUN rustup target add x86_64-unknown-linux-gnu | |
| RUN dpkg --add-architecture amd64 | |
| RUN apt-get update; apt-get install build-essential crossbuild-essential-amd64 pkg-config libssl-dev:amd64 libsqlite3-dev:amd64 -y | |
| RUN cargo install cargo-deb | |
| ENV HOST_CC=gcc | |
| ENV CC_x86_64_unknown_linux_gnu=/usr/bin/x86_64-linux-gnu-gcc | |
| # now copy your sources and run `cargo deb --target x86_64-unknown-linux-gnu` |
| #!/bin/bash | |
| set -o pipefail | |
| IFS=$'\n' | |
| REPORT='' | |
| checkapp() { | |
| local APPPATH=$1 | |
| local PLIST="$APPPATH/Contents/Info.plist" | |
| local SPARKLEPLIST="$APPPATH/Contents/Frameworks/Sparkle.framework/Resources/Info.plist" | |
| local SPARKLEBIN="$APPPATH/Contents/Frameworks/Sparkle.framework/Sparkle" |
I hereby claim:
To claim this, I am signing this object:
| Language | Adding files from filesystem to the build | How? | Unfinished files break the program? |
|---|---|---|---|
| Rust | Explicit mod |
declaration | No |
| CommonJS | Explicit require |
import | No |
| ES6 | Explicit import |
import | No |
| Python | Explicit import |
import | No |
| Lua (new) | Explicit require |
import | No |
| PHP | Explicit require or use via autoload |
import or any use | No |
| Perl | Explicit use |
import | No |
| static unsigned update_adler32(unsigned adler, const unsigned char* data, unsigned len) { | |
| unsigned s1 = adler & 0xffff; | |
| unsigned s2 = (adler >> 16) & 0xffff; | |
| while(len > 0) { | |
| /*at least 5550 sums can be done before the sums overflow, saving a lot of module divisions*/ | |
| unsigned amount = len > 5550 ? 5550 : len; | |
| len -= amount; | |
| while(amount > 0) { | |
| s1 += (*data++); |
| running 71 tests | |
| test header_blocks_h ... ok | |
| test header_anon_enum_whitelist_h ... ok | |
| test header_bitfield_method_mangling_h ... ok | |
| test header_complex_global_h ... ok | |
| test header_const_resolved_ty_h ... ok | |
| test header_complex_h ... FAILED | |
| test header_constant_evaluate_h ... FAILED | |
| test header_constify_all_enums_h ... FAILED |
We are trying to create a new manifest format for the Web. It will allow you to define metadata for a web application in one place.
Right now, we are trying to decide how to "inline" the manifest into HTML. Need your feedback.
<!doctype html>| (function(){ | |
| // prevent exceptions from escaping outside function (backtrace could be revealing) | |
| try { | |
| // this is ASCII 'Secret!' represented as integers | |
| var secret = [1399153522,1702109440]; | |
| var secretlength = 7; | |
| // function that contains secret must finish executing before anything untrusted is called, |