#classlibrary
Explore tagged Tumblr posts
datavids · 3 years ago
Video
youtube
1 note · View note
noodlenuts · 6 years ago
Photo
Tumblr media
In another wonderful, jumbled up, high-energy adventure that I used to read to my own nieces when they were small, Michael Garland does great justice to fabulous teachers with "Miss Smith's Incredible Storybook" (2003). The first of a picture book series about the spectacular Miss Smith, whose very special read-aloud storybook TRULY "brings stories to life" for her eager students, your own little audience will love the equal parts suspense and silliness when someone else gets hold of Miss Smith's book and loses control of the contents...!! A fabulous read-aloud for one kid or a whole group! ⚫ ⚫ ⚫ #noodlenutsclassickidlit #noodlenutskidsbooks #misssmithsincrediblestorybook #misssmith #michaelgarland #picturebook #kidsbook #bestkidsbooks #raisingreaders #kidsbookstagram #kidsbookswelove #readingismagic #readingisfundamental #makereadingfunagain #classroomreadalouds #classlibrary #teacherswhoread #booksaboutbooks https://www.instagram.com/p/B5TOKX7HyxW/?igshid=19riedgy0kl30
0 notes
teacherofya-blog · 8 years ago
Photo
Tumblr media
Thank you to @carrieanndirisio for the Broody book for my class library! The Muskegon Middle School kids will be thrilled! They don't have a lot of books - the books they do have are too young for them. So this means a lot!! 🕺 🕺 🕺 🕺 #bookaddict #bookstagram #bookstagrammer #bookish #bookaholic #bookaholics #bookgeek #bookgirl #books #bookreader #bookmail #booknerd #booknerdigans #bookworm #bookworms #bookblogger #bookbloggers #coverlove #coverlover #yabooklover #yareads #bibliophile #booklover #reader #yarreader #classlibrary #broodingyahero #carriedirisio #classcopy #skyponypress
0 notes
kei70tokyo · 8 years ago
Photo
Tumblr media
. #ちー坊 #学級文庫 #classlibrary #igers #igersjp #ig_japan #igdaily #instadaily #instapic #instasize #instalike #instagood #instaportrait #monotone #monochrome #insta_bw #igersbnw #ig_bnw #noir #blackandwhite #bnw #bw #bw_lover
1 note · View note
just4programmers · 8 years ago
Text
Peachpie - Open Source PHP Compiler to .NET and WordPress under ASP.NET Core
The Peachpie PHP compiler project joined the .NET Foundation this week and I'm trying to get my head around it. PHP in .NET? PHP on .NET? Under .NET? What compiles to what? Why would I want this? How does it work? Does it feel awesome or does it feel gross?
Just drink this in.
C:\Users\scott\Desktop\peachcon> type program.php <?php function main() { echo "Hello .NET World!"; } main(); C:\Users\scott\Desktop\peachcon> dotnet run Hello .NET World!
Just like that. Starting from a .NET SDK (They say 1.1, although I used a 2.0 preview) you just add their templates
dotnet new -i Peachpie.Templates::*
Then dotnet new now shows a bunch of php options.
C:\Users\scott\Desktop\peachcon> dotnet new | find /i "php" Peachpie console application peachpie-console PHP Console Peachpie Class library peachpie-classlibrary PHP Library Peachpie web application peachpie-web PHP Web/Empty
dotnet new peachpie-console for example, then dotnet restore and dotnet run. Boom.
NOTE: I did have to comment out his one line "<Import Project="$(CSharpDesignTimeTargetsPath)" />" in their project file that doesn't work at the command line. It's some hack they did to make things work in Visual Studio but I'm using VS Code. I'm sure it's an alpha-point-in-time thing.
It's really compiling PHP into .NET Intermediate Language!
You can see my string here:
But...why? Here's what they say, and much of it makes sense to me.
Performance: compiled code is fast and also optimized by the .NET Just-in-Time Compiler for your actual system. Additionally, the .NET performance profiler may be used to resolve bottlenecks.
C# Extensibility: plugin functionality can be implemented in a separate C# project and/or PHP plugins may use .NET libraries.
Sourceless distribution: after the compilation, most of the source files are not needed.
Power of .NET: Peachpie allows the compiled WordPress clone to run in a .NET JIT'ted, secure and manageable environment, updated through windows update.
No need to install PHP: Peachpie is a modern compiler platform and runtime distributed as a dependency to your .NET project. It is downloaded automatically on demand as a NuGet package or it can be even deployed standalone together with the compiled application as its library dependency.
PHP does have other VMs/Runtimes that are used (beyond just PHP.exe) but the idea that I could reuse code between PHP and C# is attractive, not to mention the "PHP as dependency" part. Imagine if I have an existing .NET shop or project and now I want to integrate something like WordPress?
PHP under ASP.NET Core
Their Web Sample is even MORE interesting, as they've implemented PHP as ASP.NET Middleware. Check this out. See where they pass in the PHP app as an assembly they compiled?
using Peachpie.Web; namespace peachweb.Server { class Program { static void Main(string[] args) { var host = new WebHostBuilder() .UseKestrel() .UseUrls("http://*:5004/") .UseStartup<Startup>() .Build(); host.Run(); } } class Startup { public void ConfigureServices(IServiceCollection services) { // Adds a default in-memory implementation of IDistributedCache. services.AddDistributedMemoryCache(); services.AddSession(options => { options.IdleTimeout = TimeSpan.FromMinutes(30); options.CookieHttpOnly = true; }); } public void Configure(IApplicationBuilder app) { app.UseSession(); app.UsePhp(new PhpRequestOptions(scriptAssemblyName: "peachweb")); app.UseDefaultFiles(); app.UseStaticFiles(); } } }
Interesting, but it's still Hello World. Let's run WordPress under PeachPie (and hence, under .NET). I'll run MySQL in a local Docker container for simplicity:
docker run -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=wordpress -p 3306:3306 -d mysql
I downloaded WordPress from here (note they have the "app" bootstrapper" that hosts .NET and then runs WordPress) restore and run.
It's early and it's alpha - so set your expectations appropriately - but it's surprisingly useful and appears to be under active development.
What do you think?
Be sure to explore their resources at http://www.peachpie.io/resources and watch their video of WordPress running on .NET. It's all Open Source, in the .NET Foundation, and the code is up at https://github.com/iolevel/ and you can get started here: http://www.peachpie.io/getstarted
Sponsor: Check out JetBrains Rider: a new cross-platform .NET IDE. Edit, refactor, test and debug ASP.NET, .NET Framework, .NET Core, Xamarin or Unity applications. Learn more and download a 30-day trial!
© 2017 Scott Hanselman. All rights reserved.
0 notes
kitapindiroku · 8 years ago
Text
C# ile Görsel Programlama Kitabı pdf indir pdf indir
C# ile Görsel Programlama Bu kitap, son yılların en çok yatırım yapılan, en hızlı gelişen ve yazılım devi Microsoft imzalı C# programlama dilini sizlere öğretirken sevdirecek ve özümsetecek örnek uygulamalar ve kolay anlaşılır teorik bilgilerle dolu bir eserdir. C# dilini hiç bilmeyip ilk adımı atmak isteyen ya da kısmen bilip örnek uygulamalar ile bildiklerini pekiştirmek isteyen öğrenciler yahut yazılım sektörüne kendini hazırlamak isteyen bireyler tarafından kaynak olarak kullanılabilecek bu eserde, C# dilinin temelleri ve görsel uygulamalar anlatılmıştır. Kitap ve kitap dahilinde elinizin altında olacak eğitim videoları sayesinde C# dilini derinlemesine öğrenecek, öğrenirken özümseyecek ve keyif alacaksınız. İÇİNDEKİLER: Visual Studio Arayüzü Algoritma Kurma C# Dilinin Ekosistemi Temel Programlama Windows Form Application Uygulamaları Kontroller Ve Formlarla Çalışmak Inherited Windows Form UserControls Değişkenler & Sabitler Tarih-Saat İşlemleri Math Sınıfı Input & Output Operatörler Karar Yapıları Döngüler & Döngü Denetimi Diziler Koleksiyonlar Enum Metotlar String Metotları İstisna Yönetimi Windows Form Application Formlar TextBox, Button, ListBox, ComboBox CheckedListBox, PictureBox NumericUpDown, DomainUpDown TabControl, TreeList, ToolStrip, MenuStrip RichTextBox, ErrorProvider, NotifyIcon FlowLayoutPanel, DateTimePicker ListView, OpenFileDialog, FontDialog, FolderBrowserDialog, ColorDialog, ToolTip, ContextMenuStrip, TrackBar ProgressBar, LinkLabel, WebBrowser UserControl Inherited Windows Form   EĞİTİM SETİ İÇERİĞİ:   Programlamaya Giriş, Visual Studio 2017 Arayüzü Değişkenler & Sabitler, Operatörler, Karar Yapıları, Döngüler, İstisna Yönetimi, Metotlar, String Metotları, Koleksiyonlar, Diziler, Kısaca OOP, Class, nesne ve instance kavramı, Value & Reference tipleri, Namespace kavramı, Acces modifiers, Null olmak, Null Conditional operatörleri, Metotlar, Parametre kavramı, Optianal parametreler, Call by value & Call by reference, Partial Class, Loop Management, Collections, IEnumerable tipler, Constructor, Readony sınıf üyeleri, Overloading, Base Constructors, Static Constructor, Destructor, Enumerations, Inheritance, Base keyword, Abstract & Sealed Sınıflar, Abstract metotlar, Encapsulation, Properties, Auto Property, Nullable, Polymorphism, Virtual metotlar, Override, Operator overloading, Implicit & Explicit dönüşümler, Static Sınıflar, Genişletme metotları, Exception Handling, Exception Sınıfları, Nongeneric, Boxing & Unboxing, Generic Sınıflar, Generic Tip Kısıtlamaları, Indexer, Generic Metotlar, Multiple Generic, Interface, Interface Inheritance, Delegate, Anonim metotlar, EventHandler, EventArgs Sınıfları, Events, Generic EventHandler, Lambda İfadeleri, Action Delegate, Function Delegate, Struct, Struct Inheritance, Ado.Net, MSSQL Database Management Insert, Update & Delete sorguları Object Reletional Mapping yaklaşımı, Linq Genişletme Metotları, Linq Query, Linq To SQL, Entity Framework, Code First, Database First, Multi Threading, Visual Studio Tools, ClickOnce, ClassLibrary UserControls Inherited UserControls Inherited Windows Forms
C# ile Görsel Programlama Kitabı pdf indir pdf indir oku
0 notes
teacherofya-blog · 8 years ago
Photo
Tumblr media
Thanks to @selenecastrovilla for the wonderful book bundle! I look forward to this and will happily share it with YA readers! 🛣 🛣 🛣 🛣 #bookaddict #bookstagram #bookstagrammer #bookish #bookaholic #bookaholics #bookgeek #bookgirl #books #bookreader #bookmail #booknerd #booknerdigans #bookworm #bookworms #bookblogger #bookbloggers #coverlove #coverlover #yabooklover #yareads #bibliophile #booklover #reader #yarreader #selenecastrovilla #meltbook #classlibrary #giveawaywinner #classbook
0 notes
teacherofya-blog · 8 years ago
Photo
Tumblr media
Look 👀 what came for me from YA Book Central!! I have had this mystery package 📦 taunting me...and I'm opening it right now. I can't wait to share what has been added to the library!! Thank you @yabookscentral for the books!! 😭😭😭 📚 📚 📚 📚 #bookaddict #bookstagram #bookstagrammer #bookish #bookaholic #bookaholics #bookgeek #bookgirl #books #bookreader #bookmail #booknerd #booknerdigans #bookworm #bookworms #bookblogger #bookbloggers #coverlove #coverlover #yabooklover #yareads #bibliophile #booklover #reader #yarreader #donations #classlibrary
0 notes