Messages - p3lb0x [ switch to compact view ]

Pages: prev1 [2] 3 4 5 6 7 ... 84next
6
wat.gif

Something like this you were thinking off? I set the hotkey to ALT + L in this case and it is hardcoded to open VLC, but with a bit more work it could be configurable with an ini file or something.

Currently I am just running the application with the file names sent in as arguments, so any media player you'd want to run this with needs to be able to do that (or be able to do it with some argument flags)

7
As you may or may not know, Nintendo has never been one for amazing graphics. Usually they go for a cartoon style.

I fundamentally disagree with this notion, while you did touch on it later in this paragraf. I'd say that visually coherent and well done stylistic presentation trumps purely technical graphics any day. And while the new Zelda seems to have a bit of both with regards to volumetric lighting and reflections. It, like World of Warcraft and Super Mario Galaxy makes really good use of their stylistic choices, and I think it is wrong to not call what they do "Amazing graphics". A game like Antichamber is not very visually advanced up front, but it makes for a compelling aesthetic experience nonetheless. Specifically because it combines both the feel of the mechanics and gameplay elements really well.


8
Code: C# [Select]
  1. class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             List<float> A = new List<float> {};
  6.             List<float> B = new List<float> {};
  7.  
  8.             FillListWithRandNumbers(A, 20);
  9.             FillListWithRandNumbers(B, 20);
  10.  
  11.             var approximateNumbers = ApproxNumbers(A, B, 0.05f);
  12.  
  13.  
  14.             Console.WriteLine("List A: ");
  15.             foreach (var num in A)
  16.             {
  17.                 Console.WriteLine(num);
  18.             }
  19.             Console.WriteLine();
  20.  
  21.             Console.WriteLine("List B: ");
  22.             foreach (var num in B)
  23.             {
  24.                 Console.WriteLine(num);
  25.             }
  26.             Console.WriteLine();
  27.  
  28.             Console.WriteLine("Numbers within 5% of numbers in list A");
  29.             foreach (var tup in approximateNumbers)
  30.             {
  31.                 Console.WriteLine(tup.Item1 + " " + tup.Item2);
  32.             }
  33.  
  34.             Console.WriteLine("Match amount: " + approximateNumbers.Count);
  35.  
  36.         }
  37.  
  38.         static void FillListWithRandNumbers(List<float> list, int amount = 100)
  39.         {
  40.             Random r = new Random(DateTime.Now.Millisecond);
  41.             int range = 100;
  42.             for (var i = 0; i < amount; ++i)
  43.             {
  44.                 list.Add((float)r.NextDouble() * range);
  45.             }
  46.         }
  47.  
  48.         static List<Tuple<float, float>> ApproxNumbers(List<float> a, List<float> b, float tolerance)
  49.         {
  50.             List<Tuple<float, float>> ret = new List<Tuple<float, float>>();
  51.  
  52.             foreach (var num1 in a)
  53.             {
  54.                 foreach (var num2 in b)
  55.                 {
  56.                     if (Math.Abs(num1 - num2) < num1 * tolerance)
  57.                     {
  58.                         ret.Add(new Tuple<float, float>(num1, num2));
  59.                     }
  60.                 }
  61.             }
  62.  
  63.             return ret;
  64.         }
  65.     }


Something like this?

9
Living Room / Re: Recommend some music videos to me!
« on: July 03, 2018, 07:54 PM »
Tried my hand at some audio distortion by heavily altering samples, was gonna do some sort of simplified 3d animation, but it ended up crashing and I couldn't be bothered to start over. So I threw some distortion effects on a friends drone footage and this is what I ended up with.


10
Living Room / Re: More good web comics you've discovered
« on: June 23, 2018, 11:49 AM »
Stand Still, Stay Silent

A comic about a post apocalyptic world in which the only known civilization left being in the nordic countries. It has some great and very vivid psychedelic art some times.
ah yes,
Edvard recommended that a while back, your post got me actually reading it though :up:
Script, colouring, and some of the illustrations remind me of Tolkien's illustrations:
lovely drawing  :-*
page 1 reminds me of some of Tolkien's drawings

[ Invalid Attachment ]

Oh wow, I didn't see that. Most have completely zipped past me when I skimmed through the thread.

Pages: prev1 [2] 3 4 5 6 7 ... 84next
Go to full version