Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - adarqui

Pages: 1 ... 916 917 [918] 919 920 ... 1504
13756
Progress Journals & Experimental Routines / Re: ADARQ's journal
« on: May 08, 2014, 02:07:30 am »
Comment section cant be changed

http://www.adarq.org/news-announcements-suggestions/change-the-'comment'-at-the-top-of-the-page/

yo, ill check it tomorrow


what comment do you guys want on there (if i have 0 time to fix the button i could edit it in the db real fast).






Finished my first port for my daimyo project.. streamjs-go is pretty solid & is a direct port of stream.js:

https://github.com/adarqui/streamjs-go

Really cool.. very happy how this turned out & excited to port more stuff over :D


I may perform an exercise in complete and utter futility by creating streamjs-hs......... Futile because, haskell already has lazy *everything*. But it still sounds fun soooo ;f

pc

im about to pass out BAD.. crazy sleepy lately it sucks so bad.. happy that my brain still works though.

gn

13757
Progress Journals & Experimental Routines / Re: ADARQ's journal
« on: May 07, 2014, 03:17:53 am »
Bout to sleep. Spent some time tonight with the streamjs-go port. Pretty much a direct port from javascript to golang, which is sick imo.. garbage collection + scope/lambda's make for a smooth dev environment. ;f

https://github.com/adarqui/streamjs-go

Would like to finish that up tomorrow.. if so, the time spent on that port would be amazingly low (~1 full day) -> which is one of my goals. I want to be able to port software over extremely quick/efficiently.

gn!

13758
Boxing / Re: mayweather vs maidana (good night of boxing)
« on: May 06, 2014, 03:52:08 am »
excellent night of boxing.. What a great fight pbf/maidana was. Maidana made it ugly/dirty/brutal, which is your only chance to beat mayweather..... Nobody in the game is going to outbox him.

Damn damn damn though, mayweather jr is ridiculous.. Most (the majority) boxing purists had him winning, as did I.. Maidana's aggression was impressive but it wasn't as effective IMO, as pbf's precision/counters.. PBF's rope work was so impressive.. You could see him so comfortable on the ropes while maidana is flailing/throwing bombs, then bang a counter/combo from mayweather deadly accurate.

Very impressive performance from mw.. Wouldn't mind seeing a rematch that's for sure.

On a side note, Maidana outweight MW by nearly 20 lb.. Maidana also looked like he had endless energy.. That was a serious test for MW.



As much as I want to see MW fight etc...... I want to see THURMAN fight. Some serious up&comers now in boxing. Thurman hits soooooo hard, he's a freak. I love his motto: "I have an 0 but i'm not afraid to let it go" hah... complete opposite mentality than mayweather. Guy is willing to risk his undefeated streak in order to entertain/KO someone. Those guys are fun to watch... But the class/ability of MW is just on another level. :D

pc

13759
Progress Journals & Experimental Routines / Re: ADARQ's journal
« on: May 06, 2014, 03:42:23 am »
Ohhh. More logging. Feels good.

Posted a few projects to git:

A somewhat decent file event cli tool in go. Performs crazy good so far. Had to make a few modifications to the fsnotify library so that I could hook CLOSE_WRITE inotify events. These are important because one use of this tool is to monitor 'file uploads' to a directory(s) and trigger resque events when the uploads are complete. This happens via 'intelligent guess work' instead of the uploader/uploading client triggering some kind of api.. So a CLOSE_WRITE is so far decent when trying to predict that a file has been opened for writing, written to, and then closed (upload behavior).

https://github.com/adarqui/watchque-go


This library is pretty nutty and unfinished.. Trying to port stream.js over to C -> to learn more about implementing lazy evaluation. Lazy eval can be incredibly powerful as I've learned during my research into haskell. So, the library is just a basic starting point which achieves some lazyness, but will eventually need to be re-written/re-designed. I figure, if I could implement a decent lazy list/data structure library for C, then I will have a pretty excellent grasp on lazy eval by that point.... I'd need to lazy eval various data structures, IO streams, etc.

https://github.com/adarqui/streamjs-c



These libraries are part of my 'port of haskell patterns to other languages'.. These are mostly experimental, no idea how they will turn out. I love haskell's libraries; they are on another level (of professionalism). For example, Shellac is a great example. All languages have some kind of third party/open source 'shell framework' for developing cli programs. None of them come close to shellac. Shellac is some beautiful & impressive code. So, one of my goals is to be able to port something like shellac over to C, go, node etc..... Once I'm able to accomplish those tasks, i will also be significantly better at coding haskell - which is another major goal. Want to become extremely skilled in that language. So here are some libraries I recently git'd:

https://github.com/adarqui/Prelude-js
https://github.com/adarqui/Data.Maybe-js
https://github.com/adarqui/Data.List-js

Here's the go Data.List lib I just started tonight:

https://github.com/adarqui/Data.List-go

Tomorrow I will also start the C variation of the lib, which I'm pretty excited about tbh... I'm hoping to implement most all of the C code as MACROS :D That'll be really dope and somewhat haskell-like in terms of baby-level generics & optimized code (without excessive function calls). So that should be very interesting to play with.


Some small debian build/lxc container, extremely stripped down: ~54M

https://github.com/adarqui/quark


This code is ~3-4 months old. I need to tinker with it near-daily. It's not a project that I would ever 'finish soon'. It's basically an attempt at turning 'ghci' (haskell's interpreter) into a unix-shell-like environment. Sooooo much you could do with functional shells. GHCI is perfect for this project. Some cool stuff in README.txt. For people familiar with linux/unix etc, check out the README.txt for some haskell examples that look exactly like shell commands. You'd think those were shell pipelines etc, but they are haskell functions & haskell function composition pipelines etc.. so sick.

https://github.com/adarqui/HBox




So my biggest focus right now is the 'haskell port' project.. I have lots of libraries to port over to node, go, C etc (these seem to be the languages i've settled in for now). Libraries such as Data.List, Data.Char, Data.Bits, Data.Tree, Data.Set, Shellac, etc etc.. Lots of work to do here. The idea is to provide myself (and others) with a 'unified data pattern' environment for these languages.. ie, calling map's/fold's/bitwise funcs the same (as much as i can) across the languages, so that something I do in haskell will look very similar when I port it to C.

For example, one little project is to write some key/value store similar to redis which exposes my various haskell ports via a cli/api.. That way you could map/fold/use any of the haskell libraries I port over via a cli/web api etc.. Which might be pretty fun/cool. So, I'd like for the code to look very similar between C, go, haskell and node.



Some other projects I have are porting other libraries (non haskell) too.. One such library would be async.js. I think it would be pretty cool to port that library over to C/go, especially go.. ie, using waterfall/series/parallel etc in a very similar manner, but in go.. So ya, i'm trying to abstract alot of patterns out and port them to other langs so that I can hit that next next next next level in eng/arch/programming.. So much work to do :D

#jumping @ efnet.

peace



edit: hope you feel better LBSS.

damn injuries, it's the only thing I don't miss about training.

13760
Progress Journals & Experimental Routines / Re: ADARQ's journal
« on: May 01, 2014, 11:46:22 am »
EEE!! Back to trying to journal.


Wrote this little C library last night to "mimic" go's general value/error return handling, ie:

value, err := someFunction();


https://github.com/adarqui/libret-c

Need that for this lazy eval test im doing in C. I'm trying to port streamjs to C, go, and php for example. First off is C. So far so good, I have it lazy evaluating multiple streams/iterator's to eternity etc.. Extremely time/space efficient.

Now I just need to incorporate that libret-c library & implement the rest of the methods (map, fold, etc).


Tonight I'd like to work on that and get my Data.List-js, Prelude-js, and Data.Maybe-js node libraries git'd.. or I might just pass out when I get home.

pc

13761
hah cool.. ;f

i'm going to start prototyping tonight, most likely.. going to create an 'adarq.org' github project on my git.. then the following directories:

adarq.org/prototyping/{forumjs,forumfs}

I find nodejs the quickest language to prototype in.. I often find myself creating a prototype in node and then porting it to go/c/haskell. Three main requirements of a custom forum to me are: 1) the forum itself is live/event driven 2) completely api/cli based 3) it must also exist as a file system.

The forum file system will be cool... imagine logging in to adarq.org via ssh:

ssh user@adarq.org

Then cd'n to the forum/vim'n your thread:

cd /forum/progress-journals/
less "ADARQ's Journal"/last <-- to view the last post
vim "ADARQ's Journal"/new <-- to create a new post
vim "ADARQ's Journal"/100 <-- to edit post 100

etc

A dope way to search:

grep -ir "half squat" /forum/progress-journals

:F

As long as I prototype first, instead of trying to save the world initially.. I should be able to get the project started.. One of my main focuses with development now is:

simplicity
testing

So the prototype needs to be simple, not necessarily accompanied by unit tests.. the end product however needs to be fully test driven.

;f

13762
It is extremely slow today ( April 22 ) too. From various ISPs, home, work, cell phone 3G, takes a lot of time to load any page.

:huh:

ya.. ;/

im going to start thinking about actually doing the 'rewrite' and then moving it to a dedicated server... the #1 issue with me re-writing this forum is the ui/ux... it would be 100% cli/api based initially, which would be great for me but... HEHEH!@$ ya so one reason i don't use the forum as much anymore is because, i'm never on a web browser.. EVER.. i'm 100% stuck in the cli/console.. this is one main reason why I need to write a custom forum, so that i'll actually be able to use it.

That probably sounds weird to most, and i guess it is.. but my personal laptop has no gui, no mouse, no sound, no video, nothing... so for me to fire up 'links' and interact with the forum -> it never enters my mind (because it's tedious)..

If I re-write this thing to support my console life (and still work for everyone else), i'd be able to go nuts on here again..

i'm pretty cut off from the world now.. lmao

peace

13763
Basketball / Re: A WHOLE BUNCH OF DUNKS AND SHIT.
« on: April 13, 2014, 07:59:19 pm »
i don't usually show love to michigan state, but...

<a href="http://www.youtube.com/watch?v=wGw-v1AFYas" target="_blank">http://www.youtube.com/watch?v=wGw-v1AFYas</a>

 :uhcomeon:

holy shit hah.

13764
Basketball / Re: greatest crossover of all time?
« on: April 13, 2014, 07:58:30 pm »
ya that cross was nice, wouldnt say greatest tho

It's nice, prob the best of the year. I was streaming the game and it was obviously something special when it happened.

But everyone knows this is the greatest crossover of all-time. No comparison  :P

<a href="http://www.youtube.com/watch?v=zJMi5lvQqq8" target="_blank">http://www.youtube.com/watch?v=zJMi5lvQqq8</a>

remember seeing that live, loved it.. loved ai.

ai was such a boss.

13765
Boxing / Re: huge fights in the near future
« on: April 13, 2014, 07:55:09 pm »
bradley vs pacquiao

martinez vs cotto

mayweather js vs maidana


!!!!!!

i got everyone who i wrote first.. i think bradley wins legit this time vs pac.

cotto could def beat martinez the way he's been fighting lately... if martinez is healthy i got him.. if not, going to be a rough fight for him.. cotto is banging lately.

mayweather jr obviously.. but maidana is no joke.. jr is just unbeatable right now so.. can't wait to see how he dissects maidana.

;f

I see pacquiao outboxing bradley like he did against rios, but bradley doesn't have the knockout power to pose any threat to pacquiao and so i see pacquiao hurting bradley a lot but won't be able to knock him out maybe wobble him like ruslan did, i don't see much from bradley, as he knows how to box but extraordinary skills he doesn't have. so i see it to pacquiao by unanimous decision.

Mayweather obviously would defeat maidana, maidana is slow, flat footed and comes against him straight away, like ortiz mayweather didn't find any difficulty in those type of fighters and wears them down and the last few rounds he finishes them off.

Martinez vs cotto, its close to call, because of martinez's age i feel he may lose as well as coach in the picture, but i don't think they will be able to get past his speed as roach claims and reflex, cotto won't be able to hit him with a good power shot to win.

but they are good fights for sure, also froch vs groves, close last time, they are also hoping to get chavez jr vs golovkin on july, would be a real opponent for golovkin.

oooh chavez jr vs golovkin ??? ? ?

nice..

I guess i'd have to go with chavez jr for that fight.




man bradley was bringing it early on.. after the end of the ~5th round, he was sort of limping.. then the fight changed. His body just can't handle all of those intense slips/movements he does in the ring, sucks..

pacquiao's composure/conditioning was very impressive.. never tired at any moment.

slightly disappointed because i wanted bradley to win.


can't wait for pbf/maidana and cotto/martinez.

13766
Bios / Re: Animals
« on: April 07, 2014, 02:09:22 pm »
best gif ive ever seen


13767
Well, it works fine. It has some periods when it's really slow... but fortunately they aren't too often...

It would be interesting to know why those periods exist, though.

daym.. maybe it's the database backups i do? i mysqldump --single-transaction so it shouldn't impact the forum from a lock tables perspective.. but the server isn't super powerful so mabbbe that's what's causing it.

13768
Boxing / huge fights in the near future
« on: March 31, 2014, 02:37:33 am »
bradley vs pacquiao

martinez vs cotto

mayweather js vs maidana


!!!!!!

i got everyone who i wrote first.. i think bradley wins legit this time vs pac.

cotto could def beat martinez the way he's been fighting lately... if martinez is healthy i got him.. if not, going to be a rough fight for him.. cotto is banging lately.

mayweather jr obviously.. but maidana is no joke.. jr is just unbeatable right now so.. can't wait to see how he dissects maidana.

;f

13769
had no idea.. really sorry :<

how is it now?

13770
Progress Journals & Experimental Routines / Re: ADARQ's journal
« on: March 31, 2014, 02:19:24 am »
i didnt know the forum was slow.. sorry :<

on a related note, i wish someone would have went on the live chat and told me.. i'm on that live chat all night (with a bunch of people) :f



--------

going to buy some nike zoom waffle racers tonight.. so i can start getting some runs in again. Been wanting to get some 30-60min runs in, but i have nothing to run in... sad i know.. going to order a few pair of NZWR's once i get back inside.


reading this right now:
http://www.pgroup.com/lit/articles/insider/v3n1a3.htm
http://www.pgroup.com/lit/articles/insider/v3n2a2.htm

fortran 2003 has some impressive OO.. never had any clue.




--------

kentucky/mich game was nuts.

Pages: 1 ... 916 917 [918] 919 920 ... 1504