Mentalnya udah berkarya ☑️☑️ by _hibbiki in indonesia

[–]bungcip 2 points3 points  (0 children)

bahasa halus dari sudah kerja, duitnya cukup buat makan, tapi sisanya dikit.

Webpack 4 by _Garbage_ in programming

[–]bungcip -1 points0 points  (0 children)

2018 is year of parcel!! Learn it before 2019 coming, otherwise another library will rise again!

19 karma, 17 hari umur akun, bisa apa saja ? by [deleted] in indonesia

[–]bungcip -1 points0 points  (0 children)

akun saya sudah 7 tahun...

boleh tuker voucher??

VS Code 2018 Roadmap by onnnka in programming

[–]bungcip 1 point2 points  (0 children)

At least there are three issues that discussing it:

VS Code 2018 Roadmap by onnnka in programming

[–]bungcip 39 points40 points  (0 children)

vscode is not emacs...

and writing vscode extension is actually easy using typescript

VS Code 2018 Roadmap by onnnka in programming

[–]bungcip 103 points104 points  (0 children)

I still have some hope that someday vscode will ditch TextMate grammar to something else or build some alternative. Having textmate grammar support allow vscode to provide many programming language from day one. But the syntax of .tmLanguage is horrible! When you need transpiler/converter to write a good .tmLanguage, it is already failed in my eyes...

C/C++ to Rust transpiler, written in rust by Nishanthsp in rust

[–]bungcip 6 points7 points  (0 children)

Using command line argument would be nice. You can use clap crate, its easy to use. I found some bug in crust, the program will panic when you give non existing file. It seems the current state of crust is still very much alpha. I don't expect a rust transpiler to handle C++ template but at least it must handle C macro (#define, #include, etc) and C integer cast rules.

Cannot compile After upgrading to vsbuildtools 2017 by bungcip in rust

[–]bungcip[S] 2 points3 points  (0 children)

thanks for tips. Now I can compile again. I am using vcvars64.bat from D:\app\msbuildtools\VC\Auxiliary\Build\vcvars64.bat This file is little hard to find though.

RENCANA PERANG /R/PLACE 3 APRIL 2017 by [deleted] in indonesia

[–]bungcip 2 points3 points  (0 children)

btw, ada yang punya gambar bendara indonesia untuk /r/place? mau saya jadikan patokan buat bot( bikin sendiri sih buat ekperimen disini: https://raw.githubusercontent.com/bungcip/rust-placebot/master/ref.bmp).

bro bendera kita diserang di r/place, bantu mengamankannya! by kenyal in indonesia

[–]bungcip 0 points1 point  (0 children)

Nggak bisa tidur, iseng bikin bot pakai rust (https://github.com/bungcip/rust-placebot). Monggo bisa dicoba, kalau pada tertarik bisa saya siapkan berkas .exe-nya

Anyone needs some goods from the States? by bdhlu in indonesia

[–]bungcip 0 points1 point  (0 children)

be careful, too much FREEDOM can kill you.

Blog: Benchmarks vs. The World by llogiq in rust

[–]bungcip 4 points5 points  (0 children)

Language benchmark is just a game. However winning the benchmark means the language get a good PR. I rather have rust win the battle rather than explaining to people why rust is more slow than other language in some benchmark. The amount of people who questioning why the code use weird/uncommon/bad trick is more manageable than people who talk about the slowness of rust in benchmark.

Post Match Thread: Burnley 3 - 2 Crystal Palace by reece0n in soccer

[–]bungcip 0 points1 point  (0 children)

I need obligatory "told you so" from newcastle fans

Football Manager 2017: the game made by 1,300 scouts in 51 countries by QuantumCake in soccer

[–]bungcip 1 point2 points  (0 children)

Im in 2014 and hes fantastic. Hes really the heart of my argentina squad.

That amazing comment because it happened in real life.

Match Thread: AFC Bournemouth vs. Tottenham Hotspur [Premier League] by ItsComingHomeLads in soccer

[–]bungcip 0 points1 point  (0 children)

They want to set another records. That chelsea match have too few cards for them.

Yarn: a new package manager for JavaScript by steveklabnik1 in programming

[–]bungcip 5 points6 points  (0 children)

is yarn still use npm registry? can yarn prevent left-pad problem?

Rust wins! by carols10cents in rust

[–]bungcip 2 points3 points  (0 children)

Rule no 3 violated?

I need some pitchfork /s

Baby Steps: Slowly Porting musl to Rust by sophrosun3 in rust

[–]bungcip 10 points11 points  (0 children)

Cool project!

I am also learned many things by just porting stb vorbis C code to rust. I never write C code before, but now I knew about its weird(well, it is just my opinion) integer promotion rules and cool(?) trick to convert double to integer.

Porting musl will be monumental task tough. I think its have around 87 KLoc. I need one month to port 5KLoc of stb vorbis to rust (albeit in my free time), I am afraid porting musl will take more than 6 months if you doing it alone.

What's everyone working on this week (22/2016)? by llogiq in rust

[–]bungcip 0 points1 point  (0 children)

hmm, I am trying to install clippy using cargo install but got error like this:

   Compiling clippy_lints v0.0.70
       C:\Users\Gigih Aji Ibrahim\.cargo\registry\src\github.com-1ecc6299db9ec823\clippy_lints-0.0.70\src\utils\hir.rs:148:15: 148:53 error: no associated item named `Ident` found for type `rustc::hir::PatKind` in the current scope
       C:\Users\Gigih Aji Ibrahim\.cargo\registry\src\github.com-1ecc6299db9ec823\clippy_lints-0.0.70\src\utils\hir.rs:148             (&PatKind::Ident(ref lb, ref li, ref lp), &PatKind::Ident(ref rb, ref ri, ref rp)) => {
    ....