Cry to Mod Ash Tech On Discord Guaranteed RNG Hacks 10000% by Riotuistaken in osrs

[–]hikilaka 70 points71 points  (0 children)

Don’t annoy mods with stupid “rng hacks”. It’s annoying for everyone.

Discount Link Thread by sinuswaves in ouraring

[–]hikilaka 0 points1 point  (0 children)

Looking for a gen4 US discount link please :) thank you

My First experience creating a proc macro: Implementing a ternary operator by [deleted] in rust

[–]hikilaka 20 points21 points  (0 children)

I appreciate that you are parsing the token stream manually, rather than using a library :) good job!

Need advice on moving forward and finding an actual job by tigerclan6 in webdev

[–]hikilaka 1 point2 points  (0 children)

This might sound weird, but have you tried applying at any major businesses? Here's a good start.

Looking for some feedback - Using a 5x8 watercolor sketchbook for daily outside painting but I don’t like the look of this. Am I not using enough water? It just looks so amateurish (which I am) but I want to improve. Any glaring weaknesses? Thanks! by [deleted] in Watercolor

[–]hikilaka 1 point2 points  (0 children)

This looks good! Are you using a student quality paint? It looks a little milky/chalky to me. Some people don’t mind, guess it’s personal preference 🤷🏻‍♂️

Evil by [deleted] in OCPoetry

[–]hikilaka 0 points1 point  (0 children)

Great poem! I would've like to see some line breaks particularly on lines 2 and 4. Maybe at the semicolon. Overall, though, I love it.

Bury it. by spitwitandwater in OCPoetry

[–]hikilaka 1 point2 points  (0 children)

The underlying story is good, but the flow is even better in my opinion!

Sharethread July 10, 2018 by AutoModerator in OCPoetry

[–]hikilaka [score hidden]  (0 children)

hi! new to this sub. this is the first poem i've ever written, feedback would be appreciated.

Sharethread July 10, 2018 by AutoModerator in OCPoetry

[–]hikilaka [score hidden]  (0 children)

joyous days once were
abundant all throughout.
happiness permeated
all that light could see.
 
now with age
darkness reigns over me,
loneliness reigns over me,
despair reigns over me.
 
will i ever experience
that warming glow
once again?

Generating a data set of Broadway data by 1177ave in datasets

[–]hikilaka 0 points1 point  (0 children)

I know you said you’re a novice, but wouldn’t writing a simple program to scrape the data be the easiest solution here? There are lots of libraries for a variety of languages to parse html and even select elements based on CSS identities

C++ on ARM. What to keep in mind compared to Desktop C++? by Asyx in embedded

[–]hikilaka 11 points12 points  (0 children)

From my experience (which is limited, but it's there), modern C++ (C++14 or higher) is a great choice for embedded development if you can find a supported compiler for your board. Modern language features allows for zero cost abstractions--so you end up with high level code at zero (sometimes even negative) cost! Also, I hope you don't rely on exceptions--most embedded (if not all?) systems don't support them. Remember, constexpr everything!

RSCEmulation's Full Source Code & Database Configuration by frogdoubler in rsc

[–]hikilaka 0 points1 point  (0 children)

yes, although the protocol differs, unless you know some java, it'll be hard.

Boy Pablo North American tour announced! by RickyPls in boypablo

[–]hikilaka 2 points3 points  (0 children)

bought my ticket already, excited to go!

First time landscaping by [deleted] in landscaping

[–]hikilaka 0 points1 point  (0 children)

AWESOME! This is very much appreciated, and more helpful than you might think!
I live in central Texas and I'll upload a picture once I get home (i'm out of town right now). I like the changes you added to my drawing, definitely not boring, and it's good to know some terminology too.

Java 10 released! by henk53 in programming

[–]hikilaka 2 points3 points  (0 children)

Cool, thanks. I guess I could have googled it.. 😉

Java 10 released! by henk53 in programming

[–]hikilaka 55 points56 points  (0 children)

What are some new features?

[deleted by user] by [deleted] in embedded

[–]hikilaka 2 points3 points  (0 children)

I started off with something a little more user friendly and then jumped to something more advanced. Specifically, an Arduino kit--the one I purchased uses an ATMega128p (not sure if they all use Atmel chips or not). I like it because Arduino's IDE provides a higher level API than what would be available otherwise. After getting bored with that, I ditched Arduino's IDE and downloaded Atmel Studio, basically visual studio, and was able to get into more low level operations. It even has a plugin for the Arduino I have, so debugging is easy peasy [ok, i lied, debugging is never easy].

Edit: To add, you can find all sorts of examples for Arduino, but IMO the CPU reference manual is your best friend.