MESSAGE
DATE | 2016-03-06 |
FROM | Asia Suarez
|
SUBJECT | Re: [Hangout-NYLXS] Announcement: Workshop Organizational Meeting
|
From hangout-bounces-at-nylxs.com Sun Mar 6 22:58:52 2016 Return-Path: X-Original-To: archive-at-mrbrklyn.com Delivered-To: archive-at-mrbrklyn.com Received: from www.mrbrklyn.com (www.mrbrklyn.com [96.57.23.82]) by mrbrklyn.com (Postfix) with ESMTP id 8C70D1616CA; Sun, 6 Mar 2016 22:58:06 -0500 (EST) X-Original-To: hangout-at-nylxs.com Delivered-To: hangout-at-nylxs.com Received: from mail-yw0-f174.google.com (mail-yw0-f174.google.com [209.85.161.174]) by mrbrklyn.com (Postfix) with ESMTP id 63AC51616C5 for ; Sun, 6 Mar 2016 22:57:59 -0500 (EST) Received: by mail-yw0-f174.google.com with SMTP id h129so85529195ywb.1 for ; Sun, 06 Mar 2016 19:57:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nyu-edu.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to; bh=24cQ6DQfN+y2qmLvTqDXgzQP/87AOW4RzkLm0mcPUps=; b=tCySDhRyZH1v8eNmem2CkL2R6HI1C48+zvBP42B/FR4LC5XazDJdKsUzEHTnryxG9O qAUWWeIphSLkhmfPY7NQwkagZAySqMG6UgA7j3Pl425mbUmURC5NkdqcMzkJB4Y7q/x8 syu4WzJffUKhQO3h/kYfCb597kq61GC5oqa3d0x3L4M9AMrxbda4rcQZ28vYJKU66+Dp 9QtJaGGNQO+wPnnIjujUR6Odc7fbu755cO17iHx1UOGAaH+TJjRG/0sHsg0qhSPRhXnB FaqddglYNaDCU3ibqT1Vq1/22D05naNpVUyvlGvznyWWrPuNLlo3OOfC9hwo/j2Pn2sa IeGg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to; bh=24cQ6DQfN+y2qmLvTqDXgzQP/87AOW4RzkLm0mcPUps=; b=DrWWkiEa+QvRhJCbhv1ZQtduaUGgCAqPlBlM6tuf7Y8D0NEX42Jtx9jg3XRVxq2Gsd LCzf4goJjyW/IXkxTWtEMLWF5RcG946teleJYwW5Fmp7qzREzLIVmTAsNwYT8CX3G0Kt ajxS2S6jdlKELqzVteKz+sEGAbAfe2X0/5PyrZrT2e13gA9qK3c+iOSIo/owxrOQJhKl lmMOaLgR21Cxz1WQriXbHB3DBlLZdXnsdaCovUo0QI7Lf0HbzL2PNiKzxF8aZVzkH5T4 3KPhgdelgGLfPhbBWeiL8ravJo7USye9dH89edst6klfCeRdJJfllE6oNCM4CrZtDq76 d+uQ== X-Gm-Message-State: AD7BkJLE496y5znzHqwU73apc6D/cVNPoJuQ5/G19RnNvdgQJi/0sdPcejbKhhF5sqV56Lw4+wHsqzH0OyDjWOpT MIME-Version: 1.0 X-Received: by 10.13.246.130 with SMTP id g124mr10968456ywf.29.1457323078425; Sun, 06 Mar 2016 19:57:58 -0800 (PST) Received: by 10.37.68.86 with HTTP; Sun, 6 Mar 2016 19:57:58 -0800 (PST) In-Reply-To: <56DBD333.5070700-at-mrbrklyn.com> References: <56DB9C63.7050505-at-panix.com> <56DBB62D.20402-at-panix.com> <98FBA888-C722-49AC-9AF8-628717031817-at-nyu.edu> <56DBD333.5070700-at-mrbrklyn.com> Date: Sun, 6 Mar 2016 22:57:58 -0500 Message-ID: From: Asia Suarez To: NYLXS Discussions List X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Subject: Re: [Hangout-NYLXS] Announcement: Workshop Organizational Meeting tomorrow 7:00PM X-BeenThere: hangout-at-nylxs.com X-Mailman-Version: 2.1.17 Precedence: list Reply-To: NYLXS Discussions List List-Id: NYLXS Discussions List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1350117131==" Errors-To: hangout-bounces-at-nylxs.com Sender: "hangout"
--===============1350117131== Content-Type: multipart/alternative; boundary=94eb2c030e2069d13d052d6d78c0
--94eb2c030e2069d13d052d6d78c0 Content-Type: text/plain; charset=UTF-8
Sorry I was spending time with my family. I'm not sick, just on a weird schedule. Also, by the way totally forgot to send you this, but....
int main() { int array[4]= {1,2,3,4};
unsigned int i;
for(i=0; i<4; i++) { printf("%d\t", array[i]); // prints 1 2 3 4 } printf("\n");
int* matrix = array +1; for(i=0; i<4; i++) { printf("%d\t", matrix[i]); // prints 2 3 4 0 (or maybe not zero but whatever was in that piece of memory }
return 0; }
Basically, adding +1 just changes what memory that pointer refers to, so it will evaluate the next 4 bytes in memory after the original value , which in this case, means that instead of printing out 1, it will print out 2. Since the array size was predetermined to be 4, the matrix will hold exactly 4 integer values. This means that the pointer, matrix, will access the next contiguous space in memory. In my particular case, this was 0, but I think that is system and or time dependent, as something could definitely be stored in that memory location.
Also, back to the gvim issue. when I simply type gvim in the command line, This is what I see:
The program 'gvim' can be found in the following packages: * vim * vim-gnome * vim-tiny * vim-athena * vim-gtk * vim-nox Try: sudo apt-get install
Naturally I tried: $ sudo apt-get install gvim Only to see:
Reading package lists... Done Building dependency tree Reading state information... Done Package gvim is a virtual package provided by: vim-gtk 2:7.4.052-1ubuntu3 vim-athena 2:7.4.052-1ubuntu3 vim-gnome 2:7.4.052-1ubuntu3 You should explicitly select one to install.
E: Package 'gvim' has no installation candidate
Not sure what my next move is. Sorry for the long email.
Thanks,
Asia Suarez
On Sun, Mar 6, 2016 at 1:50 AM, Ruben Safir wrote:
> On 03/06/2016 12:52 AM, as9795-at-nyu.edu wrote: > > So currently I have the ability to run Ubuntu on my Mac. I believe I can > use both gcc and make, but I don't think I have gvim. > > -Asia > > > > are you sick? > > > Sent from my iPhone > > > >> On Mar 5, 2016, at 11:46 PM, Ruben Safir wrote: > >> > >>> On 03/05/2016 10:01 PM, as9795-at-nyu.edu wrote: > >>> Just a heads up, I cannot stay very long because I have a very > important midterm the next day. Maybe an hour tops. > >>> -Asia > >> > >> Do you have linux installed on your laptop? Do you have gvim installed > >> and gcc? and make? > >> > >> > >> > >> > >>> Sent from my iPhone > >>> > >>>> On Mar 5, 2016, at 9:56 PM, Ruben Safir wrote: > >>>> > >>>> What: Workshop Organizational Meeting > >>>> When: Tuesday - March 8th, 2016 > >>>> Where: The Killarney Rose > >>>> 80 Beaver Street and 127 Pearl Street > >>>> Manhattan Island New York > >>>> > >>>> Trains 2,3,4,5 to Wall Street > >>>> R Train to Whitehall Street > >>>> > >>>> > >>>> Who - Anyone who wants to learn how to hack in C, C++ and hack the > Linux > >>>> Kernel internals.... > >>>> > >>>> Welcome to the workshop meeting Tuesday. We'll get together to take a > >>>> good look at vim, make and gcc on Linux Kernel. We are going to sign > up > >>>> of http://eudyptula-challenge.org/ as a springboard for kernel > >>>> development. > >>>> > >>>> We will help you get started by installing Linux on your laptop and > make > >>>> virtual machine where one can hack the kernel freely without killing > >>>> your laptop or works station. > >>>> > >>>> I remind everyone that NYLXS is opposed to the abuse of hard drugs. > >>>> So since we are at K&R We can also share a beer or a coke ;) > >>>> > >>>> Also, we will talk about about getting the Journal published. I have a > >>>> few articles now, need a few more and need to put the journal > together. > >>>> Can use some help. Get your name on the cover. > >>>> > >>>> Finally, we will talk about scheduling field trips to geek meetings in > >>>> the city and nearby cities, the best one being the coming Libreplanet. > >>>> > >>>> So come on DOWN and get your hands DIRTY BABY...learn to code until > your > >>>> fingernails bleed! > >>>> > >>>> ~~~CEO of Brooklyn > >>>> > >>>> RESOURCES: ****LOOK CLOSELY*** > >>>> http://www.nylxs.com/ > >>>> http://kernelnewbies.org/ > >>>> > https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial > >>>> > http://blog.rlove.org/2010/07/linux-kernel-development-third-edition.html > >>>> http://shop.oreilly.com/product/0636920026891.do > >>>> http://it-ebooks.info/book/819/ > >>>> http://www.instructables.com/id/Introduction-38/ > >>>> http://knking.com/books/c/ > >>>> http://www.stroustrup.com/books.html > >>>> http://faq.cprogramming.com/cgi-bin/smartfaq.cgi > >>>> http://c-faq.com/ > >>>> > >>>> > >>>> > >>>> -- > >>>> So many immigrant groups have swept through our town > >>>> that Brooklyn, like Atlantis, reaches mythological > >>>> proportions in the mind of the world - RI Safir 1998 > >>>> http://www.mrbrklyn.com > >>>> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > >>>> http://www.nylxs.com - Leadership Development in Free Software > >>>> http://www2.mrbrklyn.com/resources - Unpublished Archive > >>>> http://www.coinhangout.com - coins! > >>>> http://www.brooklyn-living.com > >>>> > >>>> Being so tracked is for FARM ANIMALS and and extermination camps, > >>>> but incompatible with living as a free human being. -RI Safir 2013 > >>>> > >>>> _______________________________________________ > >>>> hangout mailing list > >>>> hangout-at-nylxs.com > >>>> http://www.nylxs.com/ > >>> _______________________________________________ > >>> hangout mailing list > >>> hangout-at-nylxs.com > >>> http://www.nylxs.com/ > >> > >> > >> -- > >> So many immigrant groups have swept through our town > >> that Brooklyn, like Atlantis, reaches mythological > >> proportions in the mind of the world - RI Safir 1998 > >> http://www.mrbrklyn.com > >> > >> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > >> http://www.nylxs.com - Leadership Development in Free Software > >> http://www2.mrbrklyn.com/resources - Unpublished Archive > >> http://www.coinhangout.com - coins! > >> http://www.brooklyn-living.com > >> > >> Being so tracked is for FARM ANIMALS and and extermination camps, > >> but incompatible with living as a free human being. -RI Safir 2013 > >> _______________________________________________ > >> hangout mailing list > >> hangout-at-nylxs.com > >> http://www.nylxs.com/ > > _______________________________________________ > > hangout mailing list > > hangout-at-nylxs.com > > http://www.nylxs.com/ > > > > > -- > So many immigrant groups have swept through our town > that Brooklyn, like Atlantis, reaches mythological > proportions in the mind of the world - RI Safir 1998 > http://www.mrbrklyn.com > > DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > http://www.nylxs.com - Leadership Development in Free Software > http://www2.mrbrklyn.com/resources - Unpublished Archive > http://www.coinhangout.com - coins! > http://www.brooklyn-living.com > > Being so tracked is for FARM ANIMALS and and extermination camps, > but incompatible with living as a free human being. -RI Safir 2013 > _______________________________________________ > hangout mailing list > hangout-at-nylxs.com > http://www.nylxs.com/ >
--94eb2c030e2069d13d052d6d78c0 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8"
Sorry I was spending time with my family. I'm not sick, just on a weird schedule. Also, by the way totally forgot to send you this, but.... int main() { int array[4]= {1,2,3,4}; unsigned int i; for(i=0; i<4; i++) { printf("%d\t", array[i]); ? ? ? // prints 1 ? 2 ? 3 ? 4 } printf("\n"); int* matrix = array +1; for(i=0; i<4; i++) { printf("%d\t", matrix[i]); ? // prints 2 ? 3 ? 4 ? 0 (or maybe not zero but ? ? whatever was in that piece of memory? } return 0; } Basically, adding +1 just changes what memory that pointer refers to, so it will evaluate the next 4 bytes in memory after the original value , which in this case, means that instead of printing out 1, it will print out 2. Since the array size was predetermined to be 4, the matrix will hold exactly 4 integer values. This means that the pointer, matrix, will access the next contiguous space in memory. In my particular case, this was 0, but I think that is system and or time dependent, as something could definitely be stored in that memory location.? Also, back to the gvim issue. when I simply type gvim in the command line, This is what I see:? The program 'gvim' can be found in the following packages: ? * vim ? * vim-gnome ? * vim-tiny ? * vim-athena ? * vim-gtk ? * vim-nox Try: sudo apt-get install Naturally I tried: ? $ sudo apt-get install gvim Only to see: Reading package lists... Done Building dependency tree ? ? ? ? Reading state information... Done Package gvim is a virtual package provided by: ? vim-gtk 2:7.4.052-1ubuntu3 ? vim-athena 2:7.4.052-1ubuntu3 ? vim-gnome 2:7.4.052-1ubuntu3 You should explicitly select one to install. E: Package 'gvim' has no installation candidate Not sure what my next move is. Sorry for the long email.? Thanks, Asia Suarez
On Sun, Mar 6, 2016 at 1:50 AM, Ruben Safir <[1]ruben-at-mrbrklyn.com> wrote:
On 03/06/2016 12:52 AM, [2]as9795-at-nyu.edu wrote: > So currently I have the ability to run Ubuntu on my Mac. I believe I can use both gcc and make, but I don't think I have gvim. > -Asia > are you sick?
> Sent from my iPhone > >> On Mar 5, 2016, at 11:46 PM, Ruben Safir <[3]mrbrklyn-at-panix.com> wrote: >> >>> On 03/05/2016 10:01 PM, [4]as9795-at-nyu.edu wrote: >>> Just a heads up, I cannot stay very long because I have a very important midterm the next day. Maybe an hour tops. >>> -Asia >> >> Do you have linux installed on your laptop?? Do you have gvim installed >> and gcc?? and make? >> >> >> >> >>> Sent from my iPhone >>> >>>> On Mar 5, 2016, at 9:56 PM, Ruben Safir <[5]mrbrklyn-at-panix.com> wrote: >>>> >>>> What:? Workshop Organizational Meeting >>>> When: Tuesday - March 8th, 2016 >>>> Where: The Killarney Rose >>>>? ? 80 Beaver Street and 127 Pearl Street >>>>? ? Manhattan Island New York >>>> >>>> Trains 2,3,4,5 to Wall Street >>>> R Train to Whitehall Street >>>> >>>> >>>> Who - Anyone who wants to learn how to hack in C, C++ and hack the Linux >>>> Kernel internals.... >>>> >>>> Welcome to the workshop meeting Tuesday. We'll get together to take a >>>> good look at vim, make and gcc on Linux Kernel. We are going to sign up >>>> of? [6]http://eudyptula-challenge.org/ as a springboard for kernel >>>> development. >>>> >>>> We will help you get started by installing Linux on your laptop and make >>>> virtual machine where one can hack the kernel freely without killing >>>> your laptop or works station. >>>> >>>> I remind everyone that NYLXS is opposed to the abuse of hard drugs. >>>> So since we are at K&R We can also share a beer or a coke ;) >>>> >>>> Also, we will talk about about getting the Journal published. I have a >>>> few articles now, need a few more and need to put the journal together. >>>> Can use some help. Get your name on the cover. >>>> >>>> Finally, we will talk about scheduling field trips to geek meetings in >>>> the city and nearby cities, the best one being the coming Libreplanet. >>>> >>>> So come on DOWN and get your hands DIRTY BABY...learn to code until your >>>> fingernails bleed! >>>> >>>> ~~~CEO of Brooklyn >>>> >>>> RESOURCES: ****LOOK CLOSELY*** >>>> [7]http://www.nylxs.com/ >>>> [8]http://kernelnewbies.org/ >>>> [9]https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutor ial >>>> [10]http://blog.rlove.org/2010/07/linux-kernel-development-third-editio n.html >>>> [11]http://shop.oreilly.com/product/0636920026891.do >>>> [12]http://it-ebooks.info/book/819/ >>>> [13]http://www.instructables.com/id/Introduction-38/ >>>> [14]http://knking.com/books/c/ >>>> [15]http://www.stroustrup.com/books.html >>>> [16]http://faq.cprogramming.com/cgi-bin/smartfaq.cgi >>>> [17]http://c-faq.com/ >>>> >>>> >>>> >>>> -- >>>> So many immigrant groups have swept through our town >>>> that Brooklyn, like Atlantis, reaches mythological >>>> proportions in the mind of the world - RI Safir 1998 >>>> [18]http://www.mrbrklyn.com >>>> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 >>>> [19]http://www.nylxs.com - Leadership Development in Free Software >>>> [20]http://www2.mrbrklyn.com/resources - Unpublished Archive >>>> [21]http://www.coinhangout.com - coins! >>>> [22]http://www.brooklyn-living.com >>>> >>>> Being so tracked is for FARM ANIMALS and and extermination camps, >>>> but incompatible with living as a free human being. -RI Safir 2013 >>>> >>>> _______________________________________________ >>>> hangout mailing list >>>> [23]hangout-at-nylxs.com >>>> [24]http://www.nylxs.com/ >>> _______________________________________________ >>> hangout mailing list >>> [25]hangout-at-nylxs.com >>> [26]http://www.nylxs.com/ >> >> >> -- >> So many immigrant groups have swept through our town >> that Brooklyn, like Atlantis, reaches mythological >> proportions in the mind of the world - RI Safir 1998 >> [27]http://www.mrbrklyn.com >> >> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 >> [28]http://www.nylxs.com - Leadership Development in Free Software >> [29]http://www2.mrbrklyn.com/resources - Unpublished Archive >> [30]http://www.coinhangout.com - coins! >> [31]http://www.brooklyn-living.com >> >> Being so tracked is for FARM ANIMALS and and extermination camps, >> but incompatible with living as a free human being. -RI Safir 2013 >> _______________________________________________ >> hangout mailing list >> [32]hangout-at-nylxs.com >> [33]http://www.nylxs.com/ > _______________________________________________ > hangout mailing list > [34]hangout-at-nylxs.com > [35]http://www.nylxs.com/ > -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of the world - RI Safir 1998 [36]http://www.mrbrklyn.com DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 [37]http://www.nylxs.com - Leadership Development in Free Software [38]http://www2.mrbrklyn.com/resources - Unpublished Archive [39]http://www.coinhangout.com - coins! [40]http://www.brooklyn-living.com Being so tracked is for FARM ANIMALS and and extermination camps, but incompatible with living as a free human being. -RI Safir 2013 _______________________________________________ hangout mailing list [41]hangout-at-nylxs.com [42]http://www.nylxs.com/
References
1. mailto:ruben-at-mrbrklyn.com 2. mailto:as9795-at-nyu.edu 3. mailto:mrbrklyn-at-panix.com 4. mailto:as9795-at-nyu.edu 5. mailto:mrbrklyn-at-panix.com 6. http://eudyptula-challenge.org/ 7. http://www.nylxs.com/ 8. http://kernelnewbies.org/ 9. https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial 10. http://blog.rlove.org/2010/07/linux-kernel-development-third-edition.html 11. http://shop.oreilly.com/product/0636920026891.do 12. http://it-ebooks.info/book/819/ 13. http://www.instructables.com/id/Introduction-38/ 14. http://knking.com/books/c/ 15. http://www.stroustrup.com/books.html 16. http://faq.cprogramming.com/cgi-bin/smartfaq.cgi 17. http://c-faq.com/ 18. http://www.mrbrklyn.com/ 19. http://www.nylxs.com/ 20. http://www2.mrbrklyn.com/resources 21. http://www.coinhangout.com/ 22. http://www.brooklyn-living.com/ 23. mailto:hangout-at-nylxs.com 24. http://www.nylxs.com/ 25. mailto:hangout-at-nylxs.com 26. http://www.nylxs.com/ 27. http://www.mrbrklyn.com/ 28. http://www.nylxs.com/ 29. http://www2.mrbrklyn.com/resources 30. http://www.coinhangout.com/ 31. http://www.brooklyn-living.com/ 32. mailto:hangout-at-nylxs.com 33. http://www.nylxs.com/ 34. mailto:hangout-at-nylxs.com 35. http://www.nylxs.com/ 36. http://www.mrbrklyn.com/ 37. http://www.nylxs.com/ 38. http://www2.mrbrklyn.com/resources 39. http://www.coinhangout.com/ 40. http://www.brooklyn-living.com/ 41. mailto:hangout-at-nylxs.com 42. http://www.nylxs.com/
--94eb2c030e2069d13d052d6d78c0--
--===============1350117131== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline
_______________________________________________ hangout mailing list hangout-at-nylxs.com http://www.nylxs.com/ --===============1350117131==--
--===============1350117131== Content-Type: multipart/alternative; boundary=94eb2c030e2069d13d052d6d78c0
--94eb2c030e2069d13d052d6d78c0 Content-Type: text/plain; charset=UTF-8
Sorry I was spending time with my family. I'm not sick, just on a weird schedule. Also, by the way totally forgot to send you this, but....
int main() { int array[4]= {1,2,3,4};
unsigned int i;
for(i=0; i<4; i++) { printf("%d\t", array[i]); // prints 1 2 3 4 } printf("\n");
int* matrix = array +1; for(i=0; i<4; i++) { printf("%d\t", matrix[i]); // prints 2 3 4 0 (or maybe not zero but whatever was in that piece of memory }
return 0; }
Basically, adding +1 just changes what memory that pointer refers to, so it will evaluate the next 4 bytes in memory after the original value , which in this case, means that instead of printing out 1, it will print out 2. Since the array size was predetermined to be 4, the matrix will hold exactly 4 integer values. This means that the pointer, matrix, will access the next contiguous space in memory. In my particular case, this was 0, but I think that is system and or time dependent, as something could definitely be stored in that memory location.
Also, back to the gvim issue. when I simply type gvim in the command line, This is what I see:
The program 'gvim' can be found in the following packages: * vim * vim-gnome * vim-tiny * vim-athena * vim-gtk * vim-nox Try: sudo apt-get install
Naturally I tried: $ sudo apt-get install gvim Only to see:
Reading package lists... Done Building dependency tree Reading state information... Done Package gvim is a virtual package provided by: vim-gtk 2:7.4.052-1ubuntu3 vim-athena 2:7.4.052-1ubuntu3 vim-gnome 2:7.4.052-1ubuntu3 You should explicitly select one to install.
E: Package 'gvim' has no installation candidate
Not sure what my next move is. Sorry for the long email.
Thanks,
Asia Suarez
On Sun, Mar 6, 2016 at 1:50 AM, Ruben Safir wrote:
> On 03/06/2016 12:52 AM, as9795-at-nyu.edu wrote: > > So currently I have the ability to run Ubuntu on my Mac. I believe I can > use both gcc and make, but I don't think I have gvim. > > -Asia > > > > are you sick? > > > Sent from my iPhone > > > >> On Mar 5, 2016, at 11:46 PM, Ruben Safir wrote: > >> > >>> On 03/05/2016 10:01 PM, as9795-at-nyu.edu wrote: > >>> Just a heads up, I cannot stay very long because I have a very > important midterm the next day. Maybe an hour tops. > >>> -Asia > >> > >> Do you have linux installed on your laptop? Do you have gvim installed > >> and gcc? and make? > >> > >> > >> > >> > >>> Sent from my iPhone > >>> > >>>> On Mar 5, 2016, at 9:56 PM, Ruben Safir wrote: > >>>> > >>>> What: Workshop Organizational Meeting > >>>> When: Tuesday - March 8th, 2016 > >>>> Where: The Killarney Rose > >>>> 80 Beaver Street and 127 Pearl Street > >>>> Manhattan Island New York > >>>> > >>>> Trains 2,3,4,5 to Wall Street > >>>> R Train to Whitehall Street > >>>> > >>>> > >>>> Who - Anyone who wants to learn how to hack in C, C++ and hack the > Linux > >>>> Kernel internals.... > >>>> > >>>> Welcome to the workshop meeting Tuesday. We'll get together to take a > >>>> good look at vim, make and gcc on Linux Kernel. We are going to sign > up > >>>> of http://eudyptula-challenge.org/ as a springboard for kernel > >>>> development. > >>>> > >>>> We will help you get started by installing Linux on your laptop and > make > >>>> virtual machine where one can hack the kernel freely without killing > >>>> your laptop or works station. > >>>> > >>>> I remind everyone that NYLXS is opposed to the abuse of hard drugs. > >>>> So since we are at K&R We can also share a beer or a coke ;) > >>>> > >>>> Also, we will talk about about getting the Journal published. I have a > >>>> few articles now, need a few more and need to put the journal > together. > >>>> Can use some help. Get your name on the cover. > >>>> > >>>> Finally, we will talk about scheduling field trips to geek meetings in > >>>> the city and nearby cities, the best one being the coming Libreplanet. > >>>> > >>>> So come on DOWN and get your hands DIRTY BABY...learn to code until > your > >>>> fingernails bleed! > >>>> > >>>> ~~~CEO of Brooklyn > >>>> > >>>> RESOURCES: ****LOOK CLOSELY*** > >>>> http://www.nylxs.com/ > >>>> http://kernelnewbies.org/ > >>>> > https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial > >>>> > http://blog.rlove.org/2010/07/linux-kernel-development-third-edition.html > >>>> http://shop.oreilly.com/product/0636920026891.do > >>>> http://it-ebooks.info/book/819/ > >>>> http://www.instructables.com/id/Introduction-38/ > >>>> http://knking.com/books/c/ > >>>> http://www.stroustrup.com/books.html > >>>> http://faq.cprogramming.com/cgi-bin/smartfaq.cgi > >>>> http://c-faq.com/ > >>>> > >>>> > >>>> > >>>> -- > >>>> So many immigrant groups have swept through our town > >>>> that Brooklyn, like Atlantis, reaches mythological > >>>> proportions in the mind of the world - RI Safir 1998 > >>>> http://www.mrbrklyn.com > >>>> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > >>>> http://www.nylxs.com - Leadership Development in Free Software > >>>> http://www2.mrbrklyn.com/resources - Unpublished Archive > >>>> http://www.coinhangout.com - coins! > >>>> http://www.brooklyn-living.com > >>>> > >>>> Being so tracked is for FARM ANIMALS and and extermination camps, > >>>> but incompatible with living as a free human being. -RI Safir 2013 > >>>> > >>>> _______________________________________________ > >>>> hangout mailing list > >>>> hangout-at-nylxs.com > >>>> http://www.nylxs.com/ > >>> _______________________________________________ > >>> hangout mailing list > >>> hangout-at-nylxs.com > >>> http://www.nylxs.com/ > >> > >> > >> -- > >> So many immigrant groups have swept through our town > >> that Brooklyn, like Atlantis, reaches mythological > >> proportions in the mind of the world - RI Safir 1998 > >> http://www.mrbrklyn.com > >> > >> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > >> http://www.nylxs.com - Leadership Development in Free Software > >> http://www2.mrbrklyn.com/resources - Unpublished Archive > >> http://www.coinhangout.com - coins! > >> http://www.brooklyn-living.com > >> > >> Being so tracked is for FARM ANIMALS and and extermination camps, > >> but incompatible with living as a free human being. -RI Safir 2013 > >> _______________________________________________ > >> hangout mailing list > >> hangout-at-nylxs.com > >> http://www.nylxs.com/ > > _______________________________________________ > > hangout mailing list > > hangout-at-nylxs.com > > http://www.nylxs.com/ > > > > > -- > So many immigrant groups have swept through our town > that Brooklyn, like Atlantis, reaches mythological > proportions in the mind of the world - RI Safir 1998 > http://www.mrbrklyn.com > > DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 > http://www.nylxs.com - Leadership Development in Free Software > http://www2.mrbrklyn.com/resources - Unpublished Archive > http://www.coinhangout.com - coins! > http://www.brooklyn-living.com > > Being so tracked is for FARM ANIMALS and and extermination camps, > but incompatible with living as a free human being. -RI Safir 2013 > _______________________________________________ > hangout mailing list > hangout-at-nylxs.com > http://www.nylxs.com/ >
--94eb2c030e2069d13d052d6d78c0 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8"
Sorry I was spending time with my family. I'm not sick, just on a weird schedule. Also, by the way totally forgot to send you this, but.... int main() { int array[4]= {1,2,3,4}; unsigned int i; for(i=0; i<4; i++) { printf("%d\t", array[i]); ? ? ? // prints 1 ? 2 ? 3 ? 4 } printf("\n"); int* matrix = array +1; for(i=0; i<4; i++) { printf("%d\t", matrix[i]); ? // prints 2 ? 3 ? 4 ? 0 (or maybe not zero but ? ? whatever was in that piece of memory? } return 0; } Basically, adding +1 just changes what memory that pointer refers to, so it will evaluate the next 4 bytes in memory after the original value , which in this case, means that instead of printing out 1, it will print out 2. Since the array size was predetermined to be 4, the matrix will hold exactly 4 integer values. This means that the pointer, matrix, will access the next contiguous space in memory. In my particular case, this was 0, but I think that is system and or time dependent, as something could definitely be stored in that memory location.? Also, back to the gvim issue. when I simply type gvim in the command line, This is what I see:? The program 'gvim' can be found in the following packages: ? * vim ? * vim-gnome ? * vim-tiny ? * vim-athena ? * vim-gtk ? * vim-nox Try: sudo apt-get install Naturally I tried: ? $ sudo apt-get install gvim Only to see: Reading package lists... Done Building dependency tree ? ? ? ? Reading state information... Done Package gvim is a virtual package provided by: ? vim-gtk 2:7.4.052-1ubuntu3 ? vim-athena 2:7.4.052-1ubuntu3 ? vim-gnome 2:7.4.052-1ubuntu3 You should explicitly select one to install. E: Package 'gvim' has no installation candidate Not sure what my next move is. Sorry for the long email.? Thanks, Asia Suarez
On Sun, Mar 6, 2016 at 1:50 AM, Ruben Safir <[1]ruben-at-mrbrklyn.com> wrote:
On 03/06/2016 12:52 AM, [2]as9795-at-nyu.edu wrote: > So currently I have the ability to run Ubuntu on my Mac. I believe I can use both gcc and make, but I don't think I have gvim. > -Asia > are you sick?
> Sent from my iPhone > >> On Mar 5, 2016, at 11:46 PM, Ruben Safir <[3]mrbrklyn-at-panix.com> wrote: >> >>> On 03/05/2016 10:01 PM, [4]as9795-at-nyu.edu wrote: >>> Just a heads up, I cannot stay very long because I have a very important midterm the next day. Maybe an hour tops. >>> -Asia >> >> Do you have linux installed on your laptop?? Do you have gvim installed >> and gcc?? and make? >> >> >> >> >>> Sent from my iPhone >>> >>>> On Mar 5, 2016, at 9:56 PM, Ruben Safir <[5]mrbrklyn-at-panix.com> wrote: >>>> >>>> What:? Workshop Organizational Meeting >>>> When: Tuesday - March 8th, 2016 >>>> Where: The Killarney Rose >>>>? ? 80 Beaver Street and 127 Pearl Street >>>>? ? Manhattan Island New York >>>> >>>> Trains 2,3,4,5 to Wall Street >>>> R Train to Whitehall Street >>>> >>>> >>>> Who - Anyone who wants to learn how to hack in C, C++ and hack the Linux >>>> Kernel internals.... >>>> >>>> Welcome to the workshop meeting Tuesday. We'll get together to take a >>>> good look at vim, make and gcc on Linux Kernel. We are going to sign up >>>> of? [6]http://eudyptula-challenge.org/ as a springboard for kernel >>>> development. >>>> >>>> We will help you get started by installing Linux on your laptop and make >>>> virtual machine where one can hack the kernel freely without killing >>>> your laptop or works station. >>>> >>>> I remind everyone that NYLXS is opposed to the abuse of hard drugs. >>>> So since we are at K&R We can also share a beer or a coke ;) >>>> >>>> Also, we will talk about about getting the Journal published. I have a >>>> few articles now, need a few more and need to put the journal together. >>>> Can use some help. Get your name on the cover. >>>> >>>> Finally, we will talk about scheduling field trips to geek meetings in >>>> the city and nearby cities, the best one being the coming Libreplanet. >>>> >>>> So come on DOWN and get your hands DIRTY BABY...learn to code until your >>>> fingernails bleed! >>>> >>>> ~~~CEO of Brooklyn >>>> >>>> RESOURCES: ****LOOK CLOSELY*** >>>> [7]http://www.nylxs.com/ >>>> [8]http://kernelnewbies.org/ >>>> [9]https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutor ial >>>> [10]http://blog.rlove.org/2010/07/linux-kernel-development-third-editio n.html >>>> [11]http://shop.oreilly.com/product/0636920026891.do >>>> [12]http://it-ebooks.info/book/819/ >>>> [13]http://www.instructables.com/id/Introduction-38/ >>>> [14]http://knking.com/books/c/ >>>> [15]http://www.stroustrup.com/books.html >>>> [16]http://faq.cprogramming.com/cgi-bin/smartfaq.cgi >>>> [17]http://c-faq.com/ >>>> >>>> >>>> >>>> -- >>>> So many immigrant groups have swept through our town >>>> that Brooklyn, like Atlantis, reaches mythological >>>> proportions in the mind of the world - RI Safir 1998 >>>> [18]http://www.mrbrklyn.com >>>> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 >>>> [19]http://www.nylxs.com - Leadership Development in Free Software >>>> [20]http://www2.mrbrklyn.com/resources - Unpublished Archive >>>> [21]http://www.coinhangout.com - coins! >>>> [22]http://www.brooklyn-living.com >>>> >>>> Being so tracked is for FARM ANIMALS and and extermination camps, >>>> but incompatible with living as a free human being. -RI Safir 2013 >>>> >>>> _______________________________________________ >>>> hangout mailing list >>>> [23]hangout-at-nylxs.com >>>> [24]http://www.nylxs.com/ >>> _______________________________________________ >>> hangout mailing list >>> [25]hangout-at-nylxs.com >>> [26]http://www.nylxs.com/ >> >> >> -- >> So many immigrant groups have swept through our town >> that Brooklyn, like Atlantis, reaches mythological >> proportions in the mind of the world - RI Safir 1998 >> [27]http://www.mrbrklyn.com >> >> DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 >> [28]http://www.nylxs.com - Leadership Development in Free Software >> [29]http://www2.mrbrklyn.com/resources - Unpublished Archive >> [30]http://www.coinhangout.com - coins! >> [31]http://www.brooklyn-living.com >> >> Being so tracked is for FARM ANIMALS and and extermination camps, >> but incompatible with living as a free human being. -RI Safir 2013 >> _______________________________________________ >> hangout mailing list >> [32]hangout-at-nylxs.com >> [33]http://www.nylxs.com/ > _______________________________________________ > hangout mailing list > [34]hangout-at-nylxs.com > [35]http://www.nylxs.com/ > -- So many immigrant groups have swept through our town that Brooklyn, like Atlantis, reaches mythological proportions in the mind of the world - RI Safir 1998 [36]http://www.mrbrklyn.com DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002 [37]http://www.nylxs.com - Leadership Development in Free Software [38]http://www2.mrbrklyn.com/resources - Unpublished Archive [39]http://www.coinhangout.com - coins! [40]http://www.brooklyn-living.com Being so tracked is for FARM ANIMALS and and extermination camps, but incompatible with living as a free human being. -RI Safir 2013 _______________________________________________ hangout mailing list [41]hangout-at-nylxs.com [42]http://www.nylxs.com/
References
1. mailto:ruben-at-mrbrklyn.com 2. mailto:as9795-at-nyu.edu 3. mailto:mrbrklyn-at-panix.com 4. mailto:as9795-at-nyu.edu 5. mailto:mrbrklyn-at-panix.com 6. http://eudyptula-challenge.org/ 7. http://www.nylxs.com/ 8. http://kernelnewbies.org/ 9. https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial 10. http://blog.rlove.org/2010/07/linux-kernel-development-third-edition.html 11. http://shop.oreilly.com/product/0636920026891.do 12. http://it-ebooks.info/book/819/ 13. http://www.instructables.com/id/Introduction-38/ 14. http://knking.com/books/c/ 15. http://www.stroustrup.com/books.html 16. http://faq.cprogramming.com/cgi-bin/smartfaq.cgi 17. http://c-faq.com/ 18. http://www.mrbrklyn.com/ 19. http://www.nylxs.com/ 20. http://www2.mrbrklyn.com/resources 21. http://www.coinhangout.com/ 22. http://www.brooklyn-living.com/ 23. mailto:hangout-at-nylxs.com 24. http://www.nylxs.com/ 25. mailto:hangout-at-nylxs.com 26. http://www.nylxs.com/ 27. http://www.mrbrklyn.com/ 28. http://www.nylxs.com/ 29. http://www2.mrbrklyn.com/resources 30. http://www.coinhangout.com/ 31. http://www.brooklyn-living.com/ 32. mailto:hangout-at-nylxs.com 33. http://www.nylxs.com/ 34. mailto:hangout-at-nylxs.com 35. http://www.nylxs.com/ 36. http://www.mrbrklyn.com/ 37. http://www.nylxs.com/ 38. http://www2.mrbrklyn.com/resources 39. http://www.coinhangout.com/ 40. http://www.brooklyn-living.com/ 41. mailto:hangout-at-nylxs.com 42. http://www.nylxs.com/
--94eb2c030e2069d13d052d6d78c0--
--===============1350117131== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline
_______________________________________________ hangout mailing list hangout-at-nylxs.com http://www.nylxs.com/ --===============1350117131==--
|
|