New Voices

New Voices is the only American national magazine written for and by Jewish college students. Published since 1991 by the independent, non-profit, student-run Jewish Student Press Service, New Voices is read by over 10,000 students across the United States and abroad.

New Voices
Executive Director, JSPS/Editor in Chief, New VoicesSara Weissman (October 2016 – present)
CategoriesStudent magazine; Jewish themes
FrequencyOnline-only
Year founded1991
CompanyJewish Student Press Service
CountryUnited States
LanguageEnglish
Websitehttp://www.newvoices.org

The magazine is produced by one recent college graduate in New York City and dozens of student writers from campuses across the country on a shoestring annual budget.

History

The Jewish Student Press Service was established in 1971 to provide quality, student-written articles to a then-thriving national network of local Jewish campus publications. Many of today's most accomplished Jewish journalists got their start at the Jewish Student Press Service. Current and former editors of The New York Jewish Week, The New Jersey Jewish News, Dissent, The Jewish Telegraphic Agency, Lilith, and Sh'ma to name a few are all past contributors to the Jewish Student Press Service.

In 1991, faced with a decline in the number of individual campus publications, the Jewish Student Press Service changed its focus and began publishing its own magazine, called New Voices.

Sections

  • Campus & Community
  • The Conspiracy Blog
  • Opinion
  • Arts and Culture
  • New Vices
  • Torah With Attitude

News coverage

In a 2007 article in The Nation, Eyal Press writes about New Voice's budget crisis:

“In the end, Solelim announced a new arrangement: New Voices was given a $10,000 grant instead of the $30,000 it had expected, and was required to offer $9,000 in free advertising to two hard-line pro-Israel groups, Stand With Us and the David Project. This scuttled New Voices's capacity-building plans, and one staffer had to be let go.”[1]

gollark: It allocates memory and doesn't consider it a side effect.
gollark: I didn't do any horrible homoglyph hacks with THAT.
gollark: It uses the function, yes.
gollark: So, I finished that to highly dubious demand. I'd like to know how #11 and such work.
gollark: > `x = _(int(0, e), int(e, е))`You may note that this would produce slices of 0 size. However, one of the `e`s is a homoglyph; it contains `2 * e`.`return Result[0][0], x, m@set({int(e, 0), int(е, e)}), w`From this, it's fairly obvious what `strassen` *really* does - partition `m1` into 4 block matrices of half (rounded up to the nearest power of 2) size.> `E = typing(lookup[2])`I forgot what this is meant to contain. It probably isn't important.> `def exponentiate(m1, m2):`This is the actual multiplication bit.> `if m1.n == 1: return Mаtrix([[m1.bigData[0] * m2.bigData[0]]])`Recursion base case. 1-sized matrices are merely multiplied scalarly.> `aa, ab, ac, ad = strassen(m1)`> `аa, аb, аc, аd = strassen(m2)`More use of homoglyph confusion here. The matrices are quartered.> `m = m1.subtract(exponentiate(aa, аa) ** exponentiate(ab, аc), exponentiate(aa, аb) ** exponentiate(ab, аd), exponentiate(ac, аa) ** exponentiate(ad, аc), exponentiate(ac, аb) ** exponentiate(ad, аd)) @ [-0j, int.abs(m2.n * 3, m1.n)]`This does matrix multiplication in an inefficient *recursive* way; the Strassen algorithm could save one of eight multiplications here, which is more efficient (on big matrices). It also removes the zero padding.> `m = exponentiate(Mаtrix(m1), Mаtrix(m2)) @ (0j * math.sin(math.asin(math.sin(math.asin(math.sin(math.e))))), int(len(m1), len(m1)))`This multiples them and I think also removes the zero padding again, as we want it to be really very removed.> `i += 1`This was added as a counter used to ensure that it was usably performant during development.> `math.factorial = math.sinh`Unfortunately, Python's factorial function has really rather restrictive size limits.> `for row in range(m.n):`This converts back into the 2D array format.> `for performance in sorted(dir(gc)): getattr(gc, performance)()`Do random fun things to the GC.

References

  1. Press, Eyal (April 30, 2007). "Silencing 'New Voices'". The Nation.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.